Searched refs:VeryFastExp (Results 1 - 2 of 2) sorted by relevance

/external/libtextclassifier/util/math/
H A Dfastexp.h53 float VeryFastExp(float f) const { function in class:libtextclassifier2::FastMathClass
64 inline float VeryFastExp(float f) { return FastMathInstance.VeryFastExp(f); } function in namespace:libtextclassifier2
H A Dsoftmax.cc59 // 0 and skip the call to VeryFastExp and the update to denominator.
67 denominator += VeryFastExp(delta_score);
93 const float exp_score = score - max < -16.0f ? 0 : VeryFastExp(score - max);

Completed in 142 milliseconds