/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_stats.cc | 49 TFStats::TFStats(std::unique_ptr<GraphDef> graph, in TFStats() function in tensorflow::tfprof::TFStats 75 TFStats::TFStats(const string& filename, in TFStats() function in tensorflow::tfprof::TFStats 107 void TFStats::BuildView(const string& cmd) { in BuildView() 138 void TFStats::BuildAllViews() { in BuildAllViews() 145 const GraphNodeProto& TFStats::ShowGraphNode(const string& cmd, in ShowGraphNode() 171 const MultiGraphNodeProto& TFStats::ShowMultiGraphNode( in ShowMultiGraphNode() 193 void TFStats::AddGraph(std::unique_ptr<GraphDef> graph) { in AddGraph() 238 void TFStats::AddOpLogProto(std::unique_ptr<OpLogProto> op_log) { in AddOpLogProto() 263 void TFStats::AddRunMeta(int64 step, std::unique_ptr<RunMetadata> run_meta) { in AddRunMeta() 311 string TFStats::MaybeReportMissingTrace() const { in MaybeReportMissingTrace() [all …]
|
D | tfprof_stats.h | 52 class TFStats { 54 TFStats(std::unique_ptr<GraphDef> graph, 59 TFStats(const string& filename, 62 ~TFStats() {} in ~TFStats()
|
D | print_model_analysis.cc | 36 TFStats* tf_stat = nullptr; 39 TFStats* tf_stats) { in RunProfile() 105 tf_stat = new TFStats(std::move(graph_ptr), nullptr, std::move(op_log_ptr), in NewProfiler() 113 tf_stat = new TFStats(*filename, nullptr); in ProfilerFromFile() 197 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_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_;
|
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_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_;
|
/external/tensorflow/tensorflow/core/profiler/internal/advisor/ |
D | expensive_operation_checker.h | 30 const TFStats* stats) override { in Check() 45 void CheckOpView(const TFStats* stats) { in CheckOpView() 72 void CheckCodeView(const TFStats* stats) { in CheckCodeView() 95 void CheckScopeView(const TFStats* stats) { in CheckScopeView()
|
D | internal_checker_runner.h | 26 class TFStats; variable 29 const TFStats* stats);
|
D | checker.h | 40 const TFStats* stats) { in Run() 47 const TFStats* stats) = 0;
|
D | tfprof_advisor.h | 32 Advisor(const TFStats* stats) : stats_(stats) {} in Advisor() 75 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 | 31 const TFStats* stats) override { in Check()
|
D | accelerator_utilization_checker.h | 40 const TFStats* stats) override { in Check()
|
/external/tensorflow/tensorflow/core/profiler/ |
D | profiler.cc | 200 std::unique_ptr<TFStats> tf_stat; in Run() 202 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()
|
/external/tensorflow/tensorflow/cc/profiler/ |
D | profiler.h | 90 std::unique_ptr<TFStats> stats_;
|
D | profiler.cc | 23 stats_.reset(new TFStats(std::move(graph_ptr), nullptr, nullptr, nullptr)); in Profiler()
|