Searched refs:ProfileEvent (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/lite/profiling/ |
D | profile_buffer_test.cc | 28 std::vector<const ProfileEvent*> GetProfileEvents(const ProfileBuffer& buffer) { in GetProfileEvents() 29 std::vector<const ProfileEvent*> events; in GetProfileEvents() 45 "hello", ProfileEvent::EventType::DEFAULT, /* event_metadata */ 42); in TEST() 53 EXPECT_EQ(event->event_type, ProfileEvent::EventType::DEFAULT); in TEST() 67 ProfileEvent::EventType::DEFAULT, i); in TEST() 75 EXPECT_EQ(ProfileEvent::EventType::DEFAULT, event->event_type); in TEST() 84 "hello", ProfileEvent::EventType::DEFAULT, /* event_metadata */ 42); in TEST() 88 event_handle = buffer.BeginEvent("hello", ProfileEvent::EventType::DEFAULT, in TEST()
|
D | profiler.h | 85 std::vector<const ProfileEvent*> GetProfileEvents() { in GetProfileEvents() 86 std::vector<const ProfileEvent*> profile_events; in GetProfileEvents() 112 buffer_->BeginEvent(tag, ProfileEvent::EventType::DEFAULT, 0); in ScopedProfile() 136 tag, ProfileEvent::EventType::OPERATOR_INVOKE_EVENT, node_index); in ScopedOperatorProfile() 172 std::vector<const ProfileEvent*> GetProfileEvents() { return {}; } in GetProfileEvents()
|
D | profile_summarizer.cc | 105 const std::vector<const ProfileEvent*>& profile_stats, in ProcessProfiles() 107 std::vector<const ProfileEvent*> events; in ProcessProfiles() 109 std::back_inserter(events), [](const ProfileEvent* e) { in ProcessProfiles() 111 ProfileEvent::EventType::OPERATOR_INVOKE_EVENT && in ProcessProfiles() 116 [](const ProfileEvent* const& a, const ProfileEvent* const& b) { in ProcessProfiles()
|
D | profile_buffer.h | 28 struct ProfileEvent { struct 75 uint32_t BeginEvent(const char* tag, ProfileEvent::EventType event_type, in BeginEvent() 131 const struct ProfileEvent* const At(size_t index) const { in At() 146 std::vector<ProfileEvent> event_buffer_;
|
D | profile_summarizer.h | 35 void ProcessProfiles(const std::vector<const ProfileEvent*>& profile_stats,
|
D | profiler_test.cc | 30 double GetDurationOfEventMs(const ProfileEvent* event) { in GetDurationOfEventMs()
|
/external/tensorflow/tensorflow/lite/examples/label_image/ |
D | label_image.cc | 74 void PrintProfilingInfo(const profiling::ProfileEvent* e, uint32_t op_index, in PrintProfilingInfo()
|