Home
last modified time | relevance | path

Searched refs:SleepForNanos (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/utils/
Dtime_utils.h44 void SleepForNanos(int64 ns);
45 inline void SleepForMicros(int64 us) { SleepForNanos(us * 1000); } in SleepForMicros()
46 inline void SleepForMillis(int64 ms) { SleepForNanos(ms * 1000000); } in SleepForMillis()
47 inline void SleepForSeconds(int64 s) { SleepForNanos(s * 1000000000); } in SleepForSeconds()
Dtime_utils.cc31 void SleepForNanos(int64 ns) { absl::SleepFor(absl::Nanoseconds(ns)); } in SleepForNanos() function
/external/tensorflow/tensorflow/core/profiler/lib/
Dprofiler_session.cc137 profiler::SleepForNanos(sleep_duration_ns); in ProfilerSession()