Home
last modified time | relevance | path

Searched refs:delay_micros (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Dretrying_utils.cc67 int64 delay_micros = 0; in CallWithRetries() local
70 delay_micros = std::min(config.init_delay_time_us << retries, in CallWithRetries()
75 << (delay_micros / 1000000.0) << " seconds (attempt " in CallWithRetries()
78 sleep_usec(delay_micros); in CallWithRetries()
/external/tensorflow/tensorflow/core/kernels/batching_util/
Dadaptive_shared_batch_scheduler.h440 int64 delay_micros = batch->schedulable_time_micros() - GetEnv()->NowMicros(); in AddBatch() local
441 if (delay_micros <= 0) { in AddBatch()
451 delay_micros, [this, lifetime_preserver = this->shared_from_this()] { in AddBatch()
/external/tensorflow/tensorflow/core/graph/
Dtestlib.h142 Node* Delay(Graph* g, Node* input, Microseconds delay_micros);
Dtestlib.cc294 Node* Delay(Graph* g, Node* input, Microseconds delay_micros) { in Delay() argument
298 .Attr("micros", delay_micros.value()) in Delay()
/external/openscreen/cast/cast_core/api/runtime/
Dcast_audio_decoder_service.proto155 int64 delay_micros = 1; field
/external/tensorflow/tensorflow/core/distributed_runtime/
Dmaster_session.cc1590 int64 delay_micros = std::min(60000000LL, 1000000LL * ++retry_count); in NewStepId() local
1591 Env::Default()->SleepForMicroseconds(delay_micros); in NewStepId()