Home
last modified time | relevance | path

Searched refs:VeryFastExp (Results 1 – 4 of 4) sorted by relevance

/external/libtextclassifier/utils/math/
Dfastexp.h53 float VeryFastExp(float f) const { in VeryFastExp() function
63 inline float VeryFastExp(float f) { return FastMathInstance.VeryFastExp(f); } in VeryFastExp() function
Dsoftmax.cc67 denominator += VeryFastExp(delta_score); in ComputeSoftmaxProbability()
93 const float exp_score = score - max < -16.0f ? 0 : VeryFastExp(score - max); in ComputeSoftmax()
/external/libtextclassifier/lang_id/common/math/
Dfastexp.h55 float VeryFastExp(float f) const { in VeryFastExp() function
65 inline float VeryFastExp(float f) { return FastMathInstance.VeryFastExp(f); } in VeryFastExp() function
Dsoftmax.cc68 denominator += VeryFastExp(delta_score); in ComputeSoftmaxProbability()
91 const float exp_score = delta_score < -16.0f ? 0 : VeryFastExp(delta_score); in ComputeSoftmax()