From 6bf9732369a090dd89c484cc930ff5f581f38e11 Mon Sep 17 00:00:00 2001 From: yangruoqi713 Date: Sat, 15 Aug 2020 11:09:40 +0800 Subject: [PATCH] [MS][LITE] fix bug of arm cpu int8 op: conv depthwise int8 --- .../src/runtime/kernel/arm/fp16/convolution_depthwise_fp16.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/convolution_depthwise_fp16.cc b/mindspore/lite/src/runtime/kernel/arm/fp16/convolution_depthwise_fp16.cc index cf07cb9c84..3c0e46f761 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/convolution_depthwise_fp16.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/convolution_depthwise_fp16.cc @@ -112,7 +112,7 @@ int ConvolutionDepthwiseFp16CPUKernel::Init() { } // init sliding_ window param sliding_ = new SlidingWindowParam; - InitSlidingParam(sliding_, conv_param_, C8NUM); + InitSlidingParamConvDw(sliding_, conv_param_, C8NUM); ret = InitWeightBias(); if (ret != 0) {