提交 2169aca5 编写于 作者: E eclipsess

code style

上级 92498aba
...@@ -59,15 +59,14 @@ struct LRNFunctor { ...@@ -59,15 +59,14 @@ struct LRNFunctor {
float32x4_t in0; float32x4_t in0;
float32x4_t res0; float32x4_t res0;
for (int i = 0; i < n4; i++) { for (int i = 0; i < n4; i++) {
sqr0 = vld1q_f32(sqr_buffer_ptr + tmp_s);
sqr0 = vld1q_f32(sqr_buffer_ptr+tmp_s); in0 = vld1q_f32(input_ptr + tmp_c);
in0 = vld1q_f32(input_ptr+tmp_c);
res0 = vmlaq_f32(sqr0, in0, in0); res0 = vmlaq_f32(sqr0, in0, in0);
vst1q_f32(sqr_buffer_ptr+tmp_s, res0); vst1q_f32(sqr_buffer_ptr + tmp_s, res0);
tmp_s+=4; tmp_s += 4;
tmp_c+=4; tmp_c += 4;
} }
for (int i = 0; i < m4; i++) { for (int i = 0; i < m4; i++) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册