Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_util.cc51 const double first_term = kBackoffRandMult * min_delay; in ComputeBackoffMicroseconds() local
56 uncapped_second_term < max_delay - first_term) { in ComputeBackoffMicroseconds()
63 double second_term = std::min(uncapped_second_term, max_delay - first_term); in ComputeBackoffMicroseconds()
70 return std::max(static_cast<int64>(first_term + second_term), min_delay); in ComputeBackoffMicroseconds()
/external/tensorflow/tensorflow/python/ops/distributions/
Dspecial_math.py273 first_term = z - math_ops.log(z) / z
280 x_for_small_p = first_term - second_term_small_p
281 x_otherwise = first_term - second_term_otherwise
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dresampler_ops.cc55 auto first_term = xla::ConstantR2<float>( in BilinearWeights() local
57 first_term = xla::ConvertElementType(first_term, xla_type); in BilinearWeights()
70 xla::BroadcastInDim(first_term, broadcast_dims, last_two_dims_indices); in BilinearWeights()