Home
last modified time | relevance | path

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

/cmsis-nn-latest/Source/ConvolutionFunctions/
Darm_nn_mat_mult_s8.c58 for (int i_out_ch = 0; i_out_ch < output_ch; i_out_ch++) in arm_nn_mat_mult_s8() local
61 const int8_t *ip_r0 = input_row + (i_out_ch * row_len); in arm_nn_mat_mult_s8()
107 res = vaddq_n_s32(res, bias[i_out_ch]); in arm_nn_mat_mult_s8()
109 res = arm_requantize_mve(res, output_mult[i_out_ch], output_shift[i_out_ch]); in arm_nn_mat_mult_s8()
116 vstrbq_scatter_offset_s32(&out[i_out_ch], scatter_offset, res); in arm_nn_mat_mult_s8()
124 for (int i_out_ch = 0; i_out_ch < output_ch; i_out_ch++) in arm_nn_mat_mult_s8() local
128 const int8_t *ip_r0 = input_row + (i_out_ch * row_len); in arm_nn_mat_mult_s8()
150 acc_0 += bias[i_out_ch]; in arm_nn_mat_mult_s8()
152 acc_0 = arm_nn_requantize(acc_0, output_mult[i_out_ch], output_shift[i_out_ch]); in arm_nn_mat_mult_s8()
156 out[i_out_ch] = (int8_t)acc_0; in arm_nn_mat_mult_s8()