/* Copyright 2018 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include #include // NOLINT(build/c++11) #include #include // NOLINT(build/c++11) #include #include #include "tensorflow/contrib/lite/profiling/profiler.h" #include "tensorflow/contrib/lite/testing/util.h" namespace tflite { namespace profiling { namespace { void AssertDurationOfEventAroundMs(const ProfileEvent* event, double expected_ms, double eps_ms) { double duration_ms = (event->end_timestamp_us - event->begin_timestamp_us) / 1e3; EXPECT_NEAR(expected_ms, duration_ms, eps_ms); } void SleepForQuarterSecond(Profiler* profiler) { ScopedProfile profile(profiler, "SleepForQuarter"); std::this_thread::sleep_for(std::chrono::milliseconds(250)); } void ChildFunction(Profiler* profiler) { ScopedProfile profile(profiler, "Child"); SleepForQuarterSecond(profiler); } void ParentFunction(Profiler* profiler) { ScopedProfile profile(profiler, "Parent"); for (int i = 0; i < 2; i++) { ChildFunction(profiler); } } TEST(ProfilerTest, NoProfilesAreCollectedWhenDisabled) { Profiler profiler; ParentFunction(&profiler); auto profile_events = profiler.GetProfileEvents(); EXPECT_EQ(0, profile_events.size()); } TEST(ProfilingTest, ProfilesAreCollected) { Profiler profiler; profiler.StartProfiling(); ParentFunction(&profiler); profiler.StopProfiling(); auto profile_events = profiler.GetProfileEvents(); // ParentFunction calls the ChildFunction 2 times. // Each ChildFunction calls SleepForQuarterSecond once. // We expect 1 entry for ParentFunction, 2 for ChildFunction and 2 for // SleepForQuarterSecond: Total: 1+ 2 + 2 = 5 // Profiles should look like: // Parent ~ 500 ms (due to 2 Child calls) // - Child ~ 250 ms (due to SleepForQuarter calls) // - SleepForQuarter ~ 250ms // - Child ~ 250 ms (due to SleepForQuarter calls) // - SleepForQuarter ~ 250ms // ASSERT_EQ(5, profile_events.size()); EXPECT_EQ("Parent", profile_events[0]->tag); EXPECT_EQ("Child", profile_events[1]->tag); EXPECT_EQ("SleepForQuarter", profile_events[2]->tag); EXPECT_EQ("Child", profile_events[3]->tag); EXPECT_EQ("SleepForQuarter", profile_events[4]->tag); #ifndef ADDRESS_SANITIZER // ASAN build is sometimes very slow. Set a large epsilon to avoid flakiness. const int eps_ms = 50; AssertDurationOfEventAroundMs(profile_events[0], /*expected_ms*/ 500, eps_ms); AssertDurationOfEventAroundMs(profile_events[1], /*expected_ms*/ 250, eps_ms); AssertDurationOfEventAroundMs(profile_events[2], /*expected_ms*/ 250, eps_ms); AssertDurationOfEventAroundMs(profile_events[3], /*expected_ms*/ 250, eps_ms); AssertDurationOfEventAroundMs(profile_events[4], /*expected_ms*/ 250, eps_ms); #endif } TEST(ProfilingTest, NullProfiler) { Profiler* profiler = nullptr; { SCOPED_OPERATOR_PROFILE(profiler, 1); } } TEST(ProfilingTest, ScopedProfile) { Profiler profiler; profiler.StartProfiling(); { SCOPED_OPERATOR_PROFILE(&profiler, 1); } profiler.StopProfiling(); auto profile_events = profiler.GetProfileEvents(); EXPECT_EQ(1, profile_events.size()); } } // namespace } // namespace profiling } // namespace tflite int main(int argc, char** argv) { ::tflite::LogToStderr(); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }