提交 2a4460f1 编写于 作者: T tpoisonooo 提交者: GitHub

Update dw_k3s2p1.S

`dwConvk3s2p1` do not process bias and `CONV_RELU_FUSE`

Former-commit-id: 828c0cfc22341e00ece6546b8cb0d68a147e151f
上级 d6b56f68
......@@ -64,6 +64,13 @@ input_1_1:
ldr s12,[x0]
ldr s24,[x3,#16]
fmul s4,s24,s12
cbz x5,input_1_1_non_biases
ldr s21,[x5]
fadd s4,s21,s4
input_1_1_non_biases:
#ifdef CONV_RELU_FUSE
fmax s4,s4,wzr
#endif
str s4,[x4]
b all_row_done
......@@ -76,6 +83,13 @@ input_2_2:
fmul v4.4s,v12.4s,v24.4s
faddp v4.4s,v4.4s,v4.4s
faddp v4.4s,v4.4s,v4.4s
cbz x5,input_2_2_non_biases
ldr s21,[x5]
fadd s4,s21,s4
input_2_2_non_biases:
#ifdef CONV_RELU_FUSE
fmax s4,s4,wzr
#endif
str s4,[x4]
b all_row_done
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册