Searched refs:row_c (Results 1 – 1 of 1) sorted by relevance
/cmsis-nn-latest/Source/ConvolutionFunctions/ |
D | arm_depthwise_conv_fast_s16.c | 307 int32_t row_a1, row_a2, row_b1, row_b2, col_a, row_c, col_b, col_c; in arm_depthwise_conv_fast_s16() local 323 row_c = PKHBT(row_b2, row_a2, 16); in arm_depthwise_conv_fast_s16() 324 sum_1 = SMLAD(col_c, row_c, sum_1); in arm_depthwise_conv_fast_s16() 326 row_c = PKHBT(row_b1, row_a1, 16); in arm_depthwise_conv_fast_s16() 327 sum_2 = SMLAD(col_a, row_c, sum_2); in arm_depthwise_conv_fast_s16() 334 row_c = PKHTB(row_a2, row_b2, 16); in arm_depthwise_conv_fast_s16() 335 sum_3 = SMLAD(col_c, row_c, sum_3); in arm_depthwise_conv_fast_s16() 337 row_c = PKHTB(row_a1, row_b1, 16); in arm_depthwise_conv_fast_s16() 338 sum_4 = SMLAD(col_a, row_c, sum_4); in arm_depthwise_conv_fast_s16()
|