Searched refs:VeryFastExp (Results 1 – 4 of 4) sorted by relevance
53 float VeryFastExp(float f) const { in VeryFastExp() function63 inline float VeryFastExp(float f) { return FastMathInstance.VeryFastExp(f); } in VeryFastExp() function
67 denominator += VeryFastExp(delta_score); in ComputeSoftmaxProbability()93 const float exp_score = score - max < -16.0f ? 0 : VeryFastExp(score - max); in ComputeSoftmax()
55 float VeryFastExp(float f) const { in VeryFastExp() function65 inline float VeryFastExp(float f) { return FastMathInstance.VeryFastExp(f); } in VeryFastExp() function
68 denominator += VeryFastExp(delta_score); in ComputeSoftmaxProbability()91 const float exp_score = delta_score < -16.0f ? 0 : VeryFastExp(delta_score); in ComputeSoftmax()