Home
last modified time | relevance | path

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

/cmsis-nn-latest/Source/ConvolutionFunctions/
Darm_depthwise_conv_3x3_s8.c124 int32_t in_val = 0; in arm_depthwise_conv_3x3_s8() local
131 in_val = arm_nn_read_s8x4(input_ptr); in arm_depthwise_conv_3x3_s8()
134 in_val_1 = SXTAB16_RORn(lhs_offset_s16x2, (uint32_t)in_val, 8); in arm_depthwise_conv_3x3_s8()
138 in_val = SXTAB16(lhs_offset_s16x2, (uint32_t)in_val); in arm_depthwise_conv_3x3_s8()
141 out_buff0 = SMLABB(in_val, ker_val, out_buff0); in arm_depthwise_conv_3x3_s8()
142 out_buff2 = SMLATT(in_val, ker_val, out_buff2); in arm_depthwise_conv_3x3_s8()
145 in_val = arm_nn_read_s8x4(input_ptr + input_ch); in arm_depthwise_conv_3x3_s8()
147 in_val_1 = SXTAB16_RORn(lhs_offset_s16x2, (uint32_t)in_val, 8); in arm_depthwise_conv_3x3_s8()
151 in_val = SXTAB16(lhs_offset_s16x2, (uint32_t)in_val); in arm_depthwise_conv_3x3_s8()
154 out_buff0 = SMLABB(in_val, ker_val, out_buff0); in arm_depthwise_conv_3x3_s8()
[all …]
Darm_depthwise_conv_s16.c101 int32_t in_val = input[in_idx + ker_w * input_ch]; in depthwise_conv_s16_mult_4_s16() local
102 out_buff[0] += in_val * kernel[ker_idx + 0 + mult_tile]; in depthwise_conv_s16_mult_4_s16()
103 out_buff[1] += in_val * kernel[ker_idx + 1 + mult_tile]; in depthwise_conv_s16_mult_4_s16()
104 out_buff[2] += in_val * kernel[ker_idx + 2 + mult_tile]; in depthwise_conv_s16_mult_4_s16()
105 out_buff[3] += in_val * kernel[ker_idx + 3 + mult_tile]; in depthwise_conv_s16_mult_4_s16()
Darm_depthwise_conv_s8.c108 int32_t in_val = input[in_idx + ker_w * input_ch] + input_offset; in depthwise_conv_s8_mult_4() local
109 out_buff[0] += in_val * kernel[0]; in depthwise_conv_s8_mult_4()
110 out_buff[1] += in_val * kernel[1]; in depthwise_conv_s8_mult_4()
111 out_buff[2] += in_val * kernel[2]; in depthwise_conv_s8_mult_4()
112 out_buff[3] += in_val * kernel[3]; in depthwise_conv_s8_mult_4()