Home
last modified time | relevance | path

Searched refs:profiled_graph_ (Results 1 – 5 of 5) sorted by relevance

/external/pytorch/torch/csrc/jit/runtime/
Djit_trace.cpp287 for (auto inp : pr->profiled_graph_->inputs()) { in TraceGraph()
304 ProfilingRecord::removeProfileCounter(pr->profiled_graph_->block()); in TraceGraph()
305 ProfilingRecord::removeProfilingNodes(pr->profiled_graph_->block()); in TraceGraph()
306 insertTracingNodes(pr->profiled_graph_->block(), pr.get(), td); in TraceGraph()
307 GRAPH_DUMP("Profiling Graph:", pr->profiled_graph_); in TraceGraph()
308 Code cd(pr->profiled_graph_, ""); in TraceGraph()
311 for (auto out : pr->profiled_graph_->outputs()) { in TraceGraph()
Dprofiling_record.h183 std::shared_ptr<Graph> profiled_graph_; member
190 return profiled_graph_; in graph()
Dprofiling_record.cpp83 : profiled_graph_(std::move(g)), profiling_count_(getNumProfiledRuns()) {} in ProfilingRecord()
88 auto pn = new ProfileOp(profiled_graph_.get(), fp); in createProfileNode()
97 auto pn = new ProfileIValueOp(this->profiled_graph_.get(), nullptr); in createProfileIValueNode()
106 auto pn = new ProfileIValueOp(this->profiled_graph_.get(), nullptr); in createProfileIValueNode()
/external/pytorch/test/cpp/jit/
Dtest_misc.cpp1922 Code cd(pr->profiled_graph_, ""); in TEST()
1925 auto copy = pr->profiled_graph_->copy(); in TEST()
1973 Code cd(pr->profiled_graph_, ""); in TEST()
1976 auto copy = pr->profiled_graph_->copy(); in TEST()
2017 Code cd(pr->profiled_graph_, ""); in TEST()
2027 ->run(*pr->profiled_graph_); in TEST()
2029 auto begin = pr->profiled_graph_->block()->nodes().begin(); in TEST()
2030 auto end = pr->profiled_graph_->block()->nodes().end(); in TEST()
2067 Code cd(pr->profiled_graph_, ""); in TEST()
2073 ->run(*pr->profiled_graph_); in TEST()
[all …]
/external/pytorch/torch/csrc/jit/passes/
Dspecialize_autogradzero.cpp78 insertProfileNodesForSpecializeAutogradZero(pr->profiled_graph_->block(), pr); in InsertProfileNodesForSpecializeAutogradZero()