Home
last modified time | relevance | path

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

/cmsis-nn-latest/Source/SoftmaxFunctions/
Darm_softmax_u8.c81 const int32_t shifted_scale = ONE_OVER1((sum << headroom) - (1 << 31)); in arm_softmax_u8()
Darm_nn_softmax_common_s8.c93 const int32_t shifted_scale = ONE_OVER1((sum > 0 ? sum << headroom : 0) - (1 << 31)); in arm_nn_softmax_common_s8()
Darm_softmax_s8.c152 const int32_t shifted_scale = ONE_OVER1((sum > 0 ? sum << headroom : 0) - (1 << 31)); in arm_softmax_s8()
/cmsis-nn-latest/Include/
Darm_nnsupportfunctions.h1282 #define ONE_OVER1(x) arm_nn_one_over_one_plus_x_for_x_in_0_1((x)) macro