Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/stream_executor/lib/
Dmathutil.h36 return CeilOrFloorOfRatio<IntegralType, true>(numerator, denominator); in CeilOfRatio()
41 return CeilOrFloorOfRatio<IntegralType, false>(numerator, denominator); in FloorOfRatio()
44 static IntegralType CeilOrFloorOfRatio(IntegralType numerator,
57 IntegralType MathUtil::CeilOrFloorOfRatio(IntegralType numerator, in CeilOrFloorOfRatio() function
/external/tensorflow/tensorflow/core/lib/math/
Dmath_util.h53 return CeilOrFloorOfRatio<IntegralType, true>(numerator, denominator); in CeilOfRatio()
58 return CeilOrFloorOfRatio<IntegralType, false>(numerator, denominator); in FloorOfRatio()
62 static IntegralType CeilOrFloorOfRatio(IntegralType numerator,
98 IntegralType MathUtil::CeilOrFloorOfRatio(IntegralType numerator, in CeilOrFloorOfRatio() function
Dmath_util_test.cc43 IntegralType floor_2 = MathUtil::CeilOrFloorOfRatio<IntegralType, false>( in TestCeilOfRatio()
51 IntegralType ceil_2 = MathUtil::CeilOrFloorOfRatio<IntegralType, true>( in TestCeilOfRatio()