Searched refs:op_b (Results 1 – 2 of 2) sorted by relevance
/cmsis-nn-latest/Source/ConvolutionFunctions/ |
D | arm_depthwise_conv_s4_opt.c | 348 int32_t ip_a1, ip_a2, ip_b1, ip_b2, op_a, op_b, op_c; in arm_depthwise_conv_s4_opt() local 355 op_b = arm_nn_read_s16x2(col_pos + input_ch); in arm_depthwise_conv_s4_opt() 357 op_c = PKHBT(op_b, op_a, 16); in arm_depthwise_conv_s4_opt() 358 op_a = PKHTB(op_b, op_a, 16); in arm_depthwise_conv_s4_opt() 359 op_b = PKHBT(ip_b2, ip_a2, 16); in arm_depthwise_conv_s4_opt() 360 sum = SMLAD(op_c, op_b, sum); in arm_depthwise_conv_s4_opt() 362 op_b = PKHBT(ip_b1, ip_a1, 16); in arm_depthwise_conv_s4_opt() 364 sum_2 = SMLAD(op_a, op_b, sum_2); in arm_depthwise_conv_s4_opt() 367 op_b = arm_nn_read_s16x2(col_pos + input_ch + 2); in arm_depthwise_conv_s4_opt() 369 op_c = PKHBT(op_b, op_a, 16); in arm_depthwise_conv_s4_opt() [all …]
|
D | arm_depthwise_conv_s8_opt.c | 298 int32_t ip_a1, ip_a2, ip_b1, ip_b2, op_a, op_b, op_c; in arm_depthwise_conv_s8_opt() local 303 op_b = arm_nn_read_s16x2(col_pos + input_ch); in arm_depthwise_conv_s8_opt() 311 op_c = PKHBT(op_b, op_a, 16); in arm_depthwise_conv_s8_opt() 312 op_a = PKHTB(op_b, op_a, 16); in arm_depthwise_conv_s8_opt() 313 op_b = PKHBT(ip_b2, ip_a2, 16); in arm_depthwise_conv_s8_opt() 314 sum = SMLAD(op_c, op_b, sum); in arm_depthwise_conv_s8_opt() 316 op_b = PKHBT(ip_b1, ip_a1, 16); in arm_depthwise_conv_s8_opt() 317 sum_2 = SMLAD(op_a, op_b, sum_2); in arm_depthwise_conv_s8_opt() 320 op_b = arm_nn_read_s16x2(col_pos + input_ch + 2); in arm_depthwise_conv_s8_opt() 322 op_c = PKHBT(op_b, op_a, 16); in arm_depthwise_conv_s8_opt() [all …]
|