forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiling_record.h
46 lines (39 loc) · 1.22 KB
/
profiling_record.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#pragma once
#include <torch/csrc/WindowsTorchApiMacro.h>
#include <ATen/ATen.h>
#include <ATen/core/ivalue.h>
#include <ATen/core/jit_type.h>
#include <ATen/core/stack.h>
#include <torch/csrc/jit/ir.h>
#include <list>
#include <vector>
namespace torch {
namespace jit {
using ::c10::TensorTypePtr;
struct ProfilingRecord {
// N.B. ProfilingRecord's copy and move c-tor are disabled, so we won't
// end up accidentally copying or moving ProfilingRecords whose addresses
// are captured in callbacks_
ProfilingRecord(const ProfilingRecord&) = delete;
ProfilingRecord(ProfilingRecord&&) noexcept = delete;
TORCH_API static std::unique_ptr<ProfilingRecord> instrumentGraph(
const std::shared_ptr<Graph>& graph);
std::shared_ptr<Graph> profiled_graph_;
std::mutex mutex_;
size_t profiling_count_;
bool ready() const {
return profiling_count_ == 0;
}
std::shared_ptr<Graph> graph() const {
return profiled_graph_;
}
private:
ProfileOp* createProfileNode(
const std::function<void(Stack&)>& fp,
at::ArrayRef<Value*> inputs);
void instrumentBlock(Block* block);
void insertShapeProfile(Node *n, Value *i);
ProfilingRecord(std::shared_ptr<Graph> g);
};
} // namespace jit
} // namespace torch