From 54651d90ee9cd171e5064b2ad9a11bffcd83d387 Mon Sep 17 00:00:00 2001 From: chenjiaoAngel Date: Mon, 17 Aug 2020 21:14:18 +0800 Subject: [PATCH] fix format --- lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc b/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc index 6213ac777f..cd952ae81d 100644 --- a/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc +++ b/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc @@ -1550,11 +1550,8 @@ inline void compute_all_padding_mid(float* dout, din_ptr_arr[num], weights[num], bias[0], weights[6][0], 4); din_ptr_arr[num]++; for (int i = 0; i < num; i++) { - sum += compute_one_data_post(din_ptr_arr[tmp - i], - weights[tmp - i], - 0.f, - weights[5][tmp - i], - 4); + sum += compute_one_data_post( + din_ptr_arr[tmp - i], weights[tmp - i], 0.f, weights[5][tmp - i], 4); din_ptr_arr[tmp - i]++; } *dout++ = sum; -- GitLab