HomeSort by relevance Sort by last modified time
    Searched defs:FloorOfRatio (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/core/lib/math/
math_util.h 30 // FloorOfRatio<IntegralType>
56 static IntegralType FloorOfRatio(IntegralType numerator,
  /external/tensorflow/tensorflow/stream_executor/lib/
mathutil.h 40 static IntegralType FloorOfRatio(IntegralType numerator,
  /external/tensorflow/tensorflow/compiler/xla/
util.h 348 // Imports the templated FloorOfRatio math function from the TensorFlow
351 T FloorOfRatio(T dividend, T divisor) {
352 return tensorflow::MathUtil::FloorOfRatio<T>(dividend, divisor);
370 // FloorOfRatio then multiplying by the divisor. For example:
374 return FloorOfRatio(value, divisor) * divisor;

Completed in 164 milliseconds