diff --git a/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc b/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc index 5c22b3b938feced8907aad6f7c6e359f50b2d72e..da00de56b25504723417e17ce0be5907d89660e8 100644 --- a/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc +++ b/lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc @@ -4322,10 +4322,6 @@ inline void compute_all_padding_pre_leakyRelu(float* dout, } *dout++ = sum > 0.f ? sum : sum * scale[0]; } - for (int w = pad_right; w > 4; w--) { - *dout++ = bias[0] > 0.f ? bias[0] : bias[0] * scale[0]; - } - } inline void compute_all_padding_mid_leakyRelu(float* dout, const float** din_ptr_arr,