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.cc30 std::vector<const ProfileEvent*> GetProfileEvents(const ProfileBuffer& buffer) { in GetProfileEvents()
31 std::vector<const ProfileEvent*> events; in GetProfileEvents()
47 buffer.BeginEvent("hello", ProfileEvent::EventType::DEFAULT, in TEST()
56 EXPECT_EQ(event->event_type, ProfileEvent::EventType::DEFAULT); in TEST()
68 buffer.BeginEvent("hello", ProfileEvent::EventType::DEFAULT, in TEST()
79 EXPECT_EQ(event->event_type, ProfileEvent::EventType::DEFAULT); in TEST()
92 ProfileEvent::EventType::DEFAULT, i, 0); in TEST()
100 EXPECT_EQ(ProfileEvent::EventType::DEFAULT, event->event_type); in TEST()
112 ProfileEvent::EventType::DEFAULT, i, 0); in TEST()
120 EXPECT_EQ(ProfileEvent::EventType::DEFAULT, event->event_type); in TEST()
[all …]
Dprofile_buffer.h35 struct ProfileEvent { struct
80 uint32_t BeginEvent(const char* tag, ProfileEvent::EventType event_type, in BeginEvent() argument
138 void AddEvent(const char* tag, ProfileEvent::EventType event_type, in AddEvent()
173 const struct ProfileEvent* At(size_t index) const { in At()
207 std::vector<ProfileEvent> event_buffer_;
Dbuffered_profiler.h116 std::vector<const ProfileEvent*> GetProfileEvents() { in GetProfileEvents()
117 std::vector<const ProfileEvent*> profile_events; in GetProfileEvents()
Dnoop_profiler.h40 std::vector<const ProfileEvent*> GetProfileEvents() { return {}; } in GetProfileEvents()
Dprofile_summarizer.h41 void ProcessProfiles(const std::vector<const ProfileEvent*>& profile_stats,
Dprofiler_test.cc30 double GetDurationOfEventMs(const ProfileEvent* event) { in GetDurationOfEventMs()
Dprofile_summarizer.cc106 const std::vector<const ProfileEvent*>& profile_stats, in ProcessProfiles()
/external/tensorflow/tensorflow/lite/delegates/
Dtelemetry_test.cc97 std::vector<profiling::ProfileEvent> event_buffer_;
/external/tensorflow/tensorflow/lite/examples/label_image/
Dlabel_image.cc182 void PrintProfilingInfo(const profiling::ProfileEvent* e, in PrintProfilingInfo()