Home
last modified time | relevance | path

Searched refs:is_log_flushing_event (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/lite/experimental/acceleration/configuration/
Dflatbuffer_to_proto_test.cc559 event_.is_log_flushing_event = true; in TEST_F()
566 EXPECT_TRUE(proto_event.is_log_flushing_event()); in TEST_F()
619 EXPECT_FALSE(proto_event.is_log_flushing_event()); in TEST_F()
Dconfiguration_generated.h2869 bool is_log_flushing_event = false; member
2888 bool is_log_flushing_event() const { in is_log_flushing_event() function
2920 void add_is_log_flushing_event(bool is_log_flushing_event) { in add_is_log_flushing_event()
2921 …8_t>(MiniBenchmarkEvent::VT_IS_LOG_FLUSHING_EVENT, static_cast<uint8_t>(is_log_flushing_event), 0); in add_is_log_flushing_event()
2945 bool is_log_flushing_event = false,
2953 builder_.add_is_log_flushing_event(is_log_flushing_event);
4436 (lhs.is_log_flushing_event == rhs.is_log_flushing_event) &&
4448 : is_log_flushing_event(o.is_log_flushing_event), in MiniBenchmarkEventT()
4455 std::swap(is_log_flushing_event, o.is_log_flushing_event);
4471 { auto _e = is_log_flushing_event(); _o->is_log_flushing_event = _e; } in UnPackTo()
[all …]
Dflatbuffer_to_proto.cc617 proto_event.set_is_log_flushing_event(event.is_log_flushing_event()); in ConvertFromFlatbuffer()
Dconfiguration.proto654 optional bool is_log_flushing_event = 1; field
/external/tensorflow/tensorflow/lite/experimental/acceleration/mini_benchmark/
Dmini_benchmark_implementation.cc362 if (event == nullptr || event->is_log_flushing_event()) { in MarkAndGetEventsToLog()