| 37 | } |
| 38 | |
| 39 | void ChildFunction(tflite::Profiler* profiler) { |
| 40 | ScopedProfile profile(profiler, "Child"); |
| 41 | SleepForQuarterSecond(profiler); |
| 42 | } |
| 43 | |
| 44 | void ParentFunction(tflite::Profiler* profiler) { |
| 45 | ScopedProfile profile(profiler, "Parent"); |
no test coverage detected