Home
last modified time | relevance | path

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

/cmsis-3.4.0/CMSIS/NN/Source/SoftmaxFunctions/
Darm_softmax_u8.c75 sum += DIV_POW2(EXP_ON_NEG(MUL_SAT(diff * mask, mult)), ACCUM_BITS); in arm_softmax_u8()
89 … DIV_POW2(MUL_SAT(shifted_scale, EXP_ON_NEG(MUL_SAT(diff * mask, mult))), bits_over_unit); in arm_softmax_u8()
Darm_softmax_s8.c146 sum += DIV_POW2(EXP_ON_NEG(MUL_SAT(diff * mask, mult)), ACCUM_BITS); in arm_softmax_s8()
195 … DIV_POW2(MUL_SAT(shifted_scale, EXP_ON_NEG(MUL_SAT(diff * mask, mult))), bits_over_unit) - 128; in arm_softmax_s8()
231 sum += DIV_POW2(EXP_ON_NEG(MUL_SAT(diff * mask, mult)), ACCUM_BITS); in arm_softmax_s8()
245 … DIV_POW2(MUL_SAT(shifted_scale, EXP_ON_NEG(MUL_SAT(diff * mask, mult))), bits_over_unit) - 128; in arm_softmax_s8()
/cmsis-3.4.0/CMSIS/NN/Include/
Darm_nnsupportfunctions.h687 #define EXP_ON_NEG(x) arm_nn_exp_on_negative_values((x)) macro