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.cc49 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 …]
Dtfprof_stats.h52 class TFStats {
54 TFStats(std::unique_ptr<GraphDef> graph,
59 TFStats(const string& filename,
62 ~TFStats() {} in ~TFStats()
Dprint_model_analysis.cc36 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()
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_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_;
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_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_;
/external/tensorflow/tensorflow/core/profiler/internal/advisor/
Dexpensive_operation_checker.h30 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()
Dinternal_checker_runner.h26 class TFStats; variable
29 const TFStats* stats);
Dchecker.h40 const TFStats* stats) { in Run()
47 const TFStats* stats) = 0;
Dtfprof_advisor.h32 Advisor(const TFStats* stats) : stats_(stats) {} in Advisor()
75 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.h31 const TFStats* stats) override { in Check()
Daccelerator_utilization_checker.h40 const TFStats* stats) override { in Check()
/external/tensorflow/tensorflow/core/profiler/
Dprofiler.cc200 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/
Dprofiler.h90 std::unique_ptr<TFStats> stats_;
Dprofiler.cc23 stats_.reset(new TFStats(std::move(graph_ptr), nullptr, nullptr, nullptr)); in Profiler()