Home
last modified time | relevance | path

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

/cmsis-nn-latest/Source/ConvolutionFunctions/
Darm_depthwise_conv_s4.c137 int32_t idx_x = base_idx_x + dilation_x * ker_x_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()
154 idx_x += dilation_x; in depthwise_conv_s4_generic()
228 int32_t idx_x = base_idx_x + dilation_x * ker_x_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()
251 idx_x += dilation_x; in depthwise_conv_s4_generic()
321 int32_t idx_x = base_idx_x + dilation_x * ker_x_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()
339 idx_x += dilation_x; in depthwise_conv_s4_generic()
431 int32_t idx_x = base_idx_x + dilation_x * ker_x_start; in depthwise_conv_s4_generic() local
[all …]
Darm_depthwise_conv_s8_opt.c246 const int32_t idx_x = base_idx_x + i_ker_x; in arm_depthwise_conv_s8_opt() local
247 if (idx_x < 0 || idx_x >= input_x) in arm_depthwise_conv_s8_opt()
253 … arm_q7_to_q15_with_offset((int8_t *)input + (idx_y * input_x + idx_x) * input_ch, in arm_depthwise_conv_s8_opt()
Darm_depthwise_conv_fast_s16.c257 const int32_t idx_x = base_idx_x + i_ker_x; in arm_depthwise_conv_fast_s16() local
259 if (idx_x < 0 || idx_x >= input_x) in arm_depthwise_conv_fast_s16()
266 input + (idx_y * input_x + idx_x) * input_ch, in arm_depthwise_conv_fast_s16()
Darm_depthwise_conv_s16.c216 const int32_t idx_x = base_idx_x + dilation_x * i_ker_x; 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()
Darm_depthwise_conv_s4_opt.c288 const int32_t idx_x = base_idx_x + i_ker_x; in arm_depthwise_conv_s4_opt() local
289 if (idx_x < 0 || idx_x >= input_x) in arm_depthwise_conv_s4_opt()
295 … arm_q7_to_q15_with_offset((int8_t *)input + (idx_y * input_x + idx_x) * input_ch, in arm_depthwise_conv_s4_opt()
Darm_depthwise_conv_s8.c242 const int32_t idx_x = base_idx_x + dilation_x * i_ker_x; 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()
/cmsis-nn-latest/Source/PoolingFunctions/
Darm_avgpool_s16.c215 for (int i_x = 0, idx_x = -pad_x; i_x < output_x; idx_x += stride_x, i_x++) in arm_avgpool_s16() local
220 const int32_t kernel_x_start = MAX(0, -idx_x); in arm_avgpool_s16()
225 const int32_t kernel_x_end = MIN(kernel_x, input_x - idx_x); 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()
Darm_avgpool_s8.c279 for (int i_x = 0, idx_x = -pad_x; i_x < output_x; idx_x += stride_x, i_x++) in arm_avgpool_s8() local
284 const int32_t kernel_x_start = MAX(0, -idx_x); in arm_avgpool_s8()
289 const int32_t kernel_x_end = MIN(kernel_x, input_x - idx_x); 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()