Searched refs:i_ker_x (Results 1 – 3 of 3) sorted by relevance
/cmsis-3.4.0/CMSIS/NN/Source/ConvolutionFunctions/ |
D | arm_convolve_s8.c | 107 … for (int i_ker_x = i_out_x * stride_x - pad_x; i_ker_x < i_out_x * stride_x - pad_x + kernel_x; in arm_convolve_s8() local 108 i_ker_x++) in arm_convolve_s8() 110 if (i_ker_y < 0 || i_ker_y >= input_y || i_ker_x < 0 || i_ker_x >= input_x) in arm_convolve_s8() 117 … arm_memcpy_q7(im2col_buf, input_data + (i_ker_y * input_x + i_ker_x) * input_ch, input_ch); in arm_convolve_s8() 201 int32_t i_out_y, i_out_x, i_ker_y, i_ker_x; in arm_convolve_s8() 214 … for (i_ker_x = i_out_x * stride_x - pad_x; i_ker_x < i_out_x * stride_x - pad_x + kernel_x; in arm_convolve_s8() 215 i_ker_x++) in arm_convolve_s8() 217 if (i_ker_y < 0 || i_ker_y >= input_y || i_ker_x < 0 || i_ker_x >= input_x) in arm_convolve_s8() 225 … arm_q7_to_q15_with_offset(input_data + (i_ker_y * input_x + i_ker_x) * input_ch, in arm_convolve_s8() 310 int32_t i_out_ch, i_out_y, i_out_x, i_input_ch, i_ker_y, i_ker_x; in arm_convolve_s8() [all …]
|
D | arm_depthwise_conv_s8_opt.c | 107 for (int i_ker_x = base_idx_x; i_ker_x < base_idx_x + kernel_x; i_ker_x++) in arm_depthwise_conv_s8_opt() local 109 if (i_ker_y < 0 || i_ker_y >= input_y || i_ker_x < 0 || i_ker_x >= input_x) in arm_depthwise_conv_s8_opt() 116 … arm_memcpy_q7(lhs_buffer, input + (i_ker_y * input_x + i_ker_x) * input_ch, (uint32_t)input_ch); in arm_depthwise_conv_s8_opt() 243 for (int i_ker_x = 0; i_ker_x < kernel_x; i_ker_x++) in arm_depthwise_conv_s8_opt() local 245 const int32_t idx_x = base_idx_x + i_ker_x; in arm_depthwise_conv_s8_opt()
|
D | arm_depthwise_conv_s8.c | 196 for (int i_ker_x = ker_x_start; i_ker_x < ker_x_end; i_ker_x++) in depthwise_conv_s8_generic() local 198 const int32_t idx_x = base_idx_x + i_ker_x; in depthwise_conv_s8_generic() 200 … int32_t ker_idx_0 = (i_ker_y * kernel_x + i_ker_x) * (input_ch * ch_mult) + idx_out_ch; in depthwise_conv_s8_generic()
|