Home
last modified time | relevance | path

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

/hal_nxp-3.6.0/mcux/mcux-sdk/CMSIS/NN/Source/BasicMathFunctions/
Darm_elementwise_mul_s8.c63 int32_t loop_count; in arm_elementwise_mul_s8() local
66 loop_count = (block_size + 3) / 4; in arm_elementwise_mul_s8()
69 for (int i = 0; i < loop_count; i++) in arm_elementwise_mul_s8()
110 loop_count = block_size >> 2; in arm_elementwise_mul_s8()
112 while (loop_count > 0) in arm_elementwise_mul_s8()
168 loop_count--; in arm_elementwise_mul_s8()
171 loop_count = block_size & 0x3; in arm_elementwise_mul_s8()
173 loop_count = block_size; in arm_elementwise_mul_s8()
176 while (loop_count > 0) in arm_elementwise_mul_s8()
192 loop_count--; in arm_elementwise_mul_s8()
Darm_elementwise_add_s8.c125 uint32_t loop_count; in arm_elementwise_add_s8()
140 loop_count = block_size >> 2; in arm_elementwise_add_s8()
142 while (loop_count > 0U) in arm_elementwise_add_s8()
214 loop_count--; in arm_elementwise_add_s8()
217 loop_count = block_size & 0x3; in arm_elementwise_add_s8()
219 loop_count = block_size; in arm_elementwise_add_s8()
222 while (loop_count > 0U) in arm_elementwise_add_s8()
245 loop_count--; in arm_elementwise_add_s8()
/hal_nxp-3.6.0/mcux/mcux-sdk/CMSIS/NN/Source/PoolingFunctions/
Darm_max_pool_s8.c37 int32_t loop_count = (length + 15) / 16; in compare_and_replace_if_larger_q7() local
38 for (int i = 0; i < loop_count; i++) in compare_and_replace_if_larger_q7()
100 int32_t loop_count = (length + 15) / 16; in clamp_output() local
101 for (int i = 0; i < loop_count; i++) in clamp_output()
/hal_nxp-3.6.0/mcux/mcux-sdk/CMSIS/NN/Source/NNSupportFunctions/
Darm_nn_depthwise_conv_nt_t_padded_s8.c63 int32_t loop_count = (num_ch + 3) / 4; in arm_nn_depthwise_conv_nt_t_padded_s8() local
67 for (int i_loop_cnt = 0, offset = 0; i_loop_cnt < loop_count; in arm_nn_depthwise_conv_nt_t_padded_s8()
Darm_nn_depthwise_conv_nt_t_s8.c63 int32_t loop_count = (num_ch + 3) / 4; in arm_nn_depthwise_conv_nt_t_s8() local
66 for (int i_loop_cnt = 0, offset = 0; i_loop_cnt < loop_count; in arm_nn_depthwise_conv_nt_t_s8()
/hal_nxp-3.6.0/mcux/mcux-sdk/CMSIS/NN/Source/SVDFunctions/
Darm_svdf_s8.c225 const int32_t loop_count = (num_elements + 3) / 4; in arm_svdf_s8() local
226 for (int i_op = 0; i_op < loop_count; i_op++) in arm_svdf_s8()
/hal_nxp-3.6.0/mcux/mcux-sdk/CMSIS/NN/Source/ConvolutionFunctions/
Darm_depthwise_conv_s8_opt.c167 int32_t loop_count = (input_ch + 3) / 4; in arm_depthwise_conv_s8_opt() local
170 …for (int i_loop_cnt = 0, offset = 0; i_loop_cnt < loop_count; num_ch_to_process -= 4, offset += 4,… in arm_depthwise_conv_s8_opt()