Home
last modified time | relevance | path

Searched refs:TFStats (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_stats.cc52 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 …]
Dtfprof_stats.h51 class TFStats {
53 TFStats(std::unique_ptr<GraphDef> graph,
58 TFStats(const string& filename,
61 ~TFStats() {} in ~TFStats()
Dprint_model_analysis.cc38 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()
Dtfprof_show_test.cc73 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_;
Dtfprof_timeline_test.cc53 tf_stats_.reset(new TFStats(std::move(graph_pb), std::move(run_meta_pb), in TFProfTimelineTest()
58 std::unique_ptr<TFStats> tf_stats_;
Dtfprof_tensor_test.cc51 tf_stats_.reset(new TFStats(std::move(graph_pb), std::move(run_meta_pb), in TFProfTensorTest()
56 std::unique_ptr<TFStats> tf_stats_;
Dtfprof_stats_test.cc67 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/
Dexpensive_operation_checker.h32 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()
Dinternal_checker_runner.h26 class TFStats; variable
29 const TFStats* stats);
Dchecker.h39 const TFStats* stats) { in Run()
46 const TFStats* stats) = 0;
Dtfprof_advisor.h33 Advisor(const TFStats* stats) : stats_(stats) {} in Advisor()
76 const TFStats* stats_;
Dtfprof_advisor_test.cc28 stats_.reset(new TFStats(std::unique_ptr<GraphDef>(new GraphDef()), nullptr, in TFProfAdvisorTest()
67 std::unique_ptr<TFStats> stats_;
Dinternal_checker_runner_dummy.cc21 const TFStats* stats) { in RunInternalCheckers()
Doperation_checker.h32 const TFStats* stats) override { in Check()
Daccelerator_utilization_checker.h41 const TFStats* stats) override { in Check()
/external/tensorflow/tensorflow/cc/profiler/
Dprofiler.h93 std::unique_ptr<TFStats> stats_;
Dprofiler.cc23 stats_.reset(new TFStats(std::move(graph_ptr), nullptr, nullptr, nullptr)); in Profiler()
/external/tensorflow/tensorflow/core/profiler/
Dprofiler.cc202 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()