Home
last modified time | relevance | path

Searched refs:profile_events (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/lite/profiling/
Dprofiler_test.cc54 auto profile_events = profiler.GetProfileEvents(); in TEST() local
55 EXPECT_EQ(0, profile_events.size()); in TEST()
68 auto profile_events = profiler.GetProfileEvents(); in TEST() local
69 EXPECT_EQ(0, profile_events.size()); in TEST()
77 auto profile_events = profiler.GetProfileEvents(); in TEST() local
89 ASSERT_EQ(5, profile_events.size()); in TEST()
90 EXPECT_EQ("Parent", profile_events[0]->tag); in TEST()
91 EXPECT_EQ("Child", profile_events[1]->tag); in TEST()
92 EXPECT_EQ("SleepForQuarter", profile_events[2]->tag); in TEST()
93 EXPECT_EQ("Child", profile_events[3]->tag); in TEST()
[all …]
Dbuffered_profiler.h112 std::vector<const ProfileEvent*> profile_events; in GetProfileEvents() local
113 profile_events.reserve(buffer_.Size()); in GetProfileEvents()
115 profile_events.push_back(buffer_.At(i)); in GetProfileEvents()
117 return profile_events; in GetProfileEvents()
/external/tensorflow/tensorflow/lite/tools/benchmark/
Dprofiling_listener.cc49 auto profile_events = profiler_.GetProfileEvents(); in OnBenchmarkStart() local
50 init_summarizer_.ProcessProfiles(profile_events, *interpreter_); in OnBenchmarkStart()
63 auto profile_events = profiler_.GetProfileEvents(); in OnSingleRunEnd() local
64 run_summarizer_.ProcessProfiles(profile_events, *interpreter_); in OnSingleRunEnd()
/external/tensorflow/tensorflow/lite/examples/label_image/
Dlabel_image.cc376 auto profile_events = profiler->GetProfileEvents(); in RunInference() local
377 for (int i = 0; i < profile_events.size(); i++) { in RunInference()
378 auto subgraph_index = profile_events[i]->extra_event_metadata; in RunInference()
379 auto op_index = profile_events[i]->event_metadata; in RunInference()
384 PrintProfilingInfo(profile_events[i], subgraph_index, op_index, in RunInference()