Skip to content

Commit

Permalink
fix convolution 4x4s1 on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui authored Aug 5, 2017
1 parent c9af14b commit b3415f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/arm/convolution_4x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static void conv4x4s4_neon(const Mat& bottom_blob, Mat& top_blob, const Mat& _ke

_outp = vaddq_f32(_outp, _sum);

vst1q_f32(outptr, _sum);
vst1q_f32(outptr, _outp);

r0 += 16;
r1 += 16;
Expand Down

0 comments on commit b3415f4

Please sign in to comment.