Home
last modified time | relevance | path

Searched refs:REDUCE_MULTIPLIER (Results 1 – 9 of 9) sorted by relevance

/cmsis-nn-latest/Source/ConvolutionFunctions/
Darm_depthwise_conv_fast_s16.c191 int32_t reduced_multiplier_0 = REDUCE_MULTIPLIER(output_mult[offset]); in arm_depthwise_conv_fast_s16()
192 int32_t reduced_multiplier_1 = REDUCE_MULTIPLIER(output_mult[offset + 1]); in arm_depthwise_conv_fast_s16()
193 int32_t reduced_multiplier_2 = REDUCE_MULTIPLIER(output_mult[offset + 2]); in arm_depthwise_conv_fast_s16()
194 int32_t reduced_multiplier_3 = REDUCE_MULTIPLIER(output_mult[offset + 3]); in arm_depthwise_conv_fast_s16()
292 int32_t output_mult_1 = REDUCE_MULTIPLIER(output_mult[0]); in arm_depthwise_conv_fast_s16()
293 int32_t output_mult_2 = REDUCE_MULTIPLIER(output_mult[1]); in arm_depthwise_conv_fast_s16()
294 int32_t output_mult_3 = REDUCE_MULTIPLIER(output_mult[2]); in arm_depthwise_conv_fast_s16()
295 int32_t output_mult_4 = REDUCE_MULTIPLIER(output_mult[3]); in arm_depthwise_conv_fast_s16()
413 … result = arm_nn_requantize_s64(acc, REDUCE_MULTIPLIER(*output_mult), *output_shift++); in arm_depthwise_conv_fast_s16()
Darm_depthwise_conv_s16.c74 int32_t out_buff32[4] = {REDUCE_MULTIPLIER(output_mult[out_ch + 0 + mult_tile]), in depthwise_conv_s16_mult_4_s16()
75 REDUCE_MULTIPLIER(output_mult[out_ch + 1 + mult_tile]), in depthwise_conv_s16_mult_4_s16()
76 REDUCE_MULTIPLIER(output_mult[out_ch + 2 + mult_tile]), in depthwise_conv_s16_mult_4_s16()
77REDUCE_MULTIPLIER(output_mult[out_ch + 3 + mult_tile])}; in depthwise_conv_s16_mult_4_s16()
172 … const int32_t reduced_multiplier = REDUCE_MULTIPLIER(output_mult[idx_out_ch]); in depthwise_conv_s16_generic_s16()
Darm_nn_mat_mult_kernel_s16.c204 int32_t reduced_multiplier = REDUCE_MULTIPLIER(*out_mult); in arm_nn_mat_mult_kernel_s16()
210 reduced_multiplier = REDUCE_MULTIPLIER(*out_mult); in arm_nn_mat_mult_kernel_s16()
331 int32_t reduced_multiplier = REDUCE_MULTIPLIER(*out_mult); in arm_nn_mat_mult_kernel_s16()
Darm_convolve_s16.c268 int32_t reduced_multiplier = REDUCE_MULTIPLIER(output_mult[i]); in arm_convolve_s16()
/cmsis-nn-latest/Source/FullyConnectedFunctions/
Darm_fully_connected_s16.c67 const int32_t reduced_multiplier = REDUCE_MULTIPLIER(quant_params->multiplier); in arm_fully_connected_s16()
/cmsis-nn-latest/Source/NNSupportFunctions/
Darm_nn_mat_mult_nt_t_s16.c187 int32_t reduced_multiplier = REDUCE_MULTIPLIER(dst_multipliers[i]); in arm_nn_mat_mult_nt_t_s16()
327 int32_t reduced_multiplier = REDUCE_MULTIPLIER(dst_multipliers[i]); in arm_nn_mat_mult_nt_t_s16()
Darm_nn_depthwise_conv_nt_t_s16.c104 int32_t reduced_multiplier = REDUCE_MULTIPLIER(out_mult[i_requantize]); in arm_nn_depthwise_conv_nt_t_s16()
Darm_nn_vec_mat_mul_result_acc_s16.c60 int32_t reduced_multiplier = REDUCE_MULTIPLIER(dst_multiplier); in arm_nn_vec_mat_mul_result_acc_s16()
/cmsis-nn-latest/Include/
Darm_nnsupportfunctions.h56 #define REDUCE_MULTIPLIER(_mult) ((_mult < 0x7FFF0000) ? ((_mult + (1 << 15)) >> 16) : 0x7FFF) macro