From a0b1af9c2a508be8f690eef782d8c4ce6fa80286 Mon Sep 17 00:00:00 2001 From: HappyAngel Date: Tue, 23 Jun 2020 20:10:11 +0800 Subject: [PATCH] fix format. test=develop --- lite/kernels/arm/conv_compute.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lite/kernels/arm/conv_compute.cc b/lite/kernels/arm/conv_compute.cc index 140a8365fe..54e67de5ab 100644 --- a/lite/kernels/arm/conv_compute.cc +++ b/lite/kernels/arm/conv_compute.cc @@ -172,7 +172,7 @@ void ConvCompute::PrepareForRun() { no_dilation && flag_dw) { impl_ = new DepthwiseConv; // VLOG(3) << "Run DepthwiseConv Int8"; - }else if (param.groups == 1 && kw == 3 && sw == 2 && no_dilation && + } else if (param.groups == 1 && kw == 3 && sw == 2 && no_dilation && pads_equal) { impl_ = new DirectConv; // VLOG(3) << "Run DirectConv Int8"; -- GitLab