Home
last modified time | relevance | path

Searched refs:ProfileEvent (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/lite/profiling/
Dprofile_buffer_test.cc29 std::vector<const ProfileEvent*> GetProfileEvents(const ProfileBuffer& buffer) { in GetProfileEvents()
30 std::vector<const ProfileEvent*> events; in GetProfileEvents()
46 buffer.BeginEvent("hello", ProfileEvent::EventType::DEFAULT, in TEST()
55 EXPECT_EQ(event->event_type, ProfileEvent::EventType::DEFAULT); in TEST()
67 buffer.BeginEvent("hello", ProfileEvent::EventType::DEFAULT, in TEST()
78 EXPECT_EQ(event->event_type, ProfileEvent::EventType::DEFAULT); in TEST()
91 ProfileEvent::EventType::DEFAULT, i, 0); in TEST()
99 EXPECT_EQ(ProfileEvent::EventType::DEFAULT, event->event_type); in TEST()
108 buffer.BeginEvent("hello", ProfileEvent::EventType::DEFAULT, in TEST()
114 buffer.BeginEvent("hello", ProfileEvent::EventType::DEFAULT, in TEST()
Dprofile_buffer.h33 struct ProfileEvent { struct
72 uint32_t BeginEvent(const char* tag, ProfileEvent::EventType event_type, in BeginEvent() argument
129 void AddEvent(const char* tag, ProfileEvent::EventType event_type, in AddEvent()
164 const struct ProfileEvent* At(size_t index) const { in At()
179 std::vector<ProfileEvent> event_buffer_;
Dprofile_summarizer.cc105 const std::vector<const ProfileEvent*>& profile_stats, in ProcessProfiles()
109 std::vector<const ProfileEvent*> events; in ProcessProfiles()
111 std::back_inserter(events), [](const ProfileEvent* e) { in ProcessProfiles()
116 [](const ProfileEvent* const& a, const ProfileEvent* const& b) { in ProcessProfiles()
Dbuffered_profiler.h111 std::vector<const ProfileEvent*> GetProfileEvents() { in GetProfileEvents()
112 std::vector<const ProfileEvent*> profile_events; in GetProfileEvents()
Dnoop_profiler.h40 std::vector<const ProfileEvent*> GetProfileEvents() { return {}; } in GetProfileEvents()
Dprofile_summarizer.h40 void ProcessProfiles(const std::vector<const ProfileEvent*>& profile_stats,
Dprofiler_test.cc30 double GetDurationOfEventMs(const ProfileEvent* event) { in GetDurationOfEventMs()
/external/tensorflow/tensorflow/lite/delegates/
Dtelemetry_test.cc96 std::vector<profiling::ProfileEvent> event_buffer_;
/external/tensorflow/tensorflow/lite/examples/label_image/
Dlabel_image.cc214 void PrintProfilingInfo(const profiling::ProfileEvent* e, in PrintProfilingInfo()