/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_stats.cc | 52 TFStats::TFStats(std::unique_ptr<GraphDef> graph, in TFStats() function in tensorflow::tfprof::TFStats 77 TFStats::TFStats(const string& filename, in TFStats() function in tensorflow::tfprof::TFStats 109 void TFStats::BuildView(const string& cmd) { in BuildView() 140 void TFStats::BuildAllViews() { in BuildAllViews() 147 const GraphNodeProto& TFStats::ShowGraphNode(const string& cmd, in ShowGraphNode() 173 const MultiGraphNodeProto& TFStats::ShowMultiGraphNode( in ShowMultiGraphNode() 195 void TFStats::AddGraph(std::unique_ptr<GraphDef> graph) { in AddGraph() 241 void TFStats::AddOpLogProto(std::unique_ptr<OpLogProto> op_log) { in AddOpLogProto() 266 void TFStats::AddRunMeta(int64 step, std::unique_ptr<RunMetadata> run_meta) { in AddRunMeta() 315 string TFStats::MaybeReportMissingTrace() const { in MaybeReportMissingTrace() [all …]
|
D | tfprof_stats.h | 51 class TFStats { 53 TFStats(std::unique_ptr<GraphDef> graph, 58 TFStats(const string& filename, 61 ~TFStats() {} in ~TFStats()
|
D | print_model_analysis.cc | 38 TFStats* tf_stat = nullptr; 41 TFStats* tf_stats) { in RunProfile() 110 tf_stat = new TFStats(std::move(graph_ptr), nullptr, std::move(op_log_ptr), in NewProfiler() 118 tf_stat = new TFStats(*filename, nullptr); in ProfilerFromFile() 202 TFStats tf_stats(std::move(graph_ptr), std::move(run_meta_ptr), in PrintModelAnalysis()
|
D | tfprof_show_test.cc | 73 tf_stats_.reset(new TFStats(std::move(graph_pb), std::move(run_meta_pb), in TFProfShowTest() 82 TFStats new_stats(profile_file, nullptr); in TestToFromProto() 95 std::unique_ptr<TFStats> tf_stats_;
|
D | tfprof_timeline_test.cc | 53 tf_stats_.reset(new TFStats(std::move(graph_pb), std::move(run_meta_pb), in TFProfTimelineTest() 58 std::unique_ptr<TFStats> tf_stats_;
|
D | tfprof_tensor_test.cc | 51 tf_stats_.reset(new TFStats(std::move(graph_pb), std::move(run_meta_pb), in TFProfTensorTest() 56 std::unique_ptr<TFStats> tf_stats_;
|
D | tfprof_stats_test.cc | 67 tf_stats_.reset(new TFStats(std::move(graph_pb), std::move(run_meta_pb), in TFProfStatsTest() 75 TFStats new_stats(profile_file, nullptr); in TestToFromProto() 80 std::unique_ptr<TFStats> tf_stats_;
|
/external/tensorflow/tensorflow/core/profiler/internal/advisor/ |
D | expensive_operation_checker.h | 32 const TFStats* stats) override { in Check() 47 void CheckOpView(const TFStats* stats) { in CheckOpView() 73 void CheckCodeView(const TFStats* stats) { in CheckCodeView() 96 void CheckScopeView(const TFStats* stats) { in CheckScopeView()
|
D | internal_checker_runner.h | 26 class TFStats; variable 29 const TFStats* stats);
|
D | checker.h | 39 const TFStats* stats) { in Run() 46 const TFStats* stats) = 0;
|
D | tfprof_advisor.h | 33 Advisor(const TFStats* stats) : stats_(stats) {} in Advisor() 76 const TFStats* stats_;
|
D | tfprof_advisor_test.cc | 28 stats_.reset(new TFStats(std::unique_ptr<GraphDef>(new GraphDef()), nullptr, in TFProfAdvisorTest() 67 std::unique_ptr<TFStats> stats_;
|
D | internal_checker_runner_dummy.cc | 21 const TFStats* stats) { in RunInternalCheckers()
|
D | operation_checker.h | 32 const TFStats* stats) override { in Check()
|
D | accelerator_utilization_checker.h | 41 const TFStats* stats) override { in Check()
|
/external/tensorflow/tensorflow/cc/profiler/ |
D | profiler.h | 93 std::unique_ptr<TFStats> stats_;
|
D | profiler.cc | 23 stats_.reset(new TFStats(std::move(graph_ptr), nullptr, nullptr, nullptr)); in Profiler()
|
/external/tensorflow/tensorflow/core/profiler/ |
D | profiler.cc | 202 std::unique_ptr<TFStats> tf_stat; in Run() 204 tf_stat.reset(new TFStats(FLAGS_profile_path, std::move(ckpt_reader))); in Run() 231 tf_stat.reset(new TFStats(std::move(graph), nullptr, std::move(op_log), in Run()
|