Searched refs:idx_y (Results 1 – 8 of 8) sorted by relevance
/cmsis-nn-latest/Source/ConvolutionFunctions/ |
D | arm_depthwise_conv_s4.c | 134 int32_t idx_y = base_idx_y + dilation_y * ker_y_start; in depthwise_conv_s4_generic() local 138 int32_t idx_0 = (idx_y * input_x + idx_x) * input_ch + i_input_ch; in depthwise_conv_s4_generic() 157 idx_y += dilation_y; in depthwise_conv_s4_generic() 225 int32_t idx_y = base_idx_y + dilation_y * ker_y_start; in depthwise_conv_s4_generic() local 229 … int32_t idx_0 = (idx_y * input_x + idx_x) * input_ch + i_input_ch; in depthwise_conv_s4_generic() 254 idx_y += dilation_y; in depthwise_conv_s4_generic() 318 int32_t idx_y = base_idx_y + dilation_y * ker_y_start; in depthwise_conv_s4_generic() local 322 … int32_t idx_0 = (idx_y * input_x + idx_x) * input_ch + i_input_ch; in depthwise_conv_s4_generic() 342 idx_y += dilation_y; in depthwise_conv_s4_generic() 428 int32_t idx_y = base_idx_y + dilation_y * ker_y_start; in depthwise_conv_s4_generic() local [all …]
|
D | arm_depthwise_conv_s16.c | 213 const int32_t idx_y = base_idx_y + dilation_y * i_ker_y; in depthwise_conv_s16_generic_s16() local 217 int32_t idx_0 = (idx_y * input_x + idx_x) * input_ch + i_input_ch; in depthwise_conv_s16_generic_s16()
|
D | arm_depthwise_conv_s8.c | 239 const int32_t idx_y = base_idx_y + dilation_y * i_ker_y; in depthwise_conv_s8_generic() local 243 int32_t idx_0 = (idx_y * input_x + idx_x) * input_ch + i_input_ch; in depthwise_conv_s8_generic()
|
D | arm_depthwise_conv_s8_opt.c | 242 const int32_t idx_y = base_idx_y + i_ker_y; in arm_depthwise_conv_s8_opt() local 253 … arm_q7_to_q15_with_offset((int8_t *)input + (idx_y * input_x + idx_x) * input_ch, in arm_depthwise_conv_s8_opt()
|
D | arm_depthwise_conv_fast_s16.c | 253 const int32_t idx_y = base_idx_y + i_ker_y; in arm_depthwise_conv_fast_s16() local 266 input + (idx_y * input_x + idx_x) * input_ch, in arm_depthwise_conv_fast_s16()
|
D | arm_depthwise_conv_s4_opt.c | 284 const int32_t idx_y = base_idx_y + i_ker_y; in arm_depthwise_conv_s4_opt() local 295 … arm_q7_to_q15_with_offset((int8_t *)input + (idx_y * input_x + idx_x) * input_ch, in arm_depthwise_conv_s4_opt()
|
/cmsis-nn-latest/Source/PoolingFunctions/ |
D | arm_avgpool_s16.c | 213 for (int i_y = 0, idx_y = -pad_y; i_y < output_y; idx_y += stride_y, i_y++) in arm_avgpool_s16() local 219 const int32_t kernel_y_start = MAX(0, -idx_y); in arm_avgpool_s16() 224 const int32_t kernel_y_end = MIN(kernel_y, input_y - idx_y); in arm_avgpool_s16() 233 … const int16_t *start = src + ch_src * (k_x + idx_x + (k_y + idx_y) * input_x); in arm_avgpool_s16()
|
D | arm_avgpool_s8.c | 277 for (int i_y = 0, idx_y = -pad_y; i_y < output_y; idx_y += stride_y, i_y++) in arm_avgpool_s8() local 283 const int32_t kernel_y_start = MAX(0, -idx_y); in arm_avgpool_s8() 288 const int32_t kernel_y_end = MIN(kernel_y, input_y - idx_y); in arm_avgpool_s8() 297 … const int8_t *start = src + ch_src * (k_x + idx_x + (k_y + idx_y) * input_x); in arm_avgpool_s8()
|