| 32 | } |
| 33 | |
| 34 | void SleepForQuarterSecond(tflite::Profiler* profiler) { |
| 35 | ScopedProfile profile(profiler, "SleepForQuarter"); |
| 36 | std::this_thread::sleep_for(std::chrono::milliseconds(250)); |
| 37 | } |
| 38 | |
| 39 | void ChildFunction(tflite::Profiler* profiler) { |
| 40 | ScopedProfile profile(profiler, "Child"); |