diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_x86_fp32.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_x86_fp32.cc index 5a33b96d470..0b127ffddd8 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_x86_fp32.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_x86_fp32.cc @@ -166,8 +166,8 @@ int ConvolutionDepthwiseSWCPUKernelX86::Run() { packed_output_ = output_ptr; } - ret = ParallelLaunch(static_cast(this->context_)->thread_pool_, ConvDwSWAvxRun, this, - conv_param_->thread_num_); + ret = static_cast(this->context_) + ->thread_pool_->ParallelLaunch(ConvDwSWAvxRun, this, conv_param_->thread_num_); if (ret != RET_OK) { MS_LOG(ERROR) << "ConvDwSWAvxRun error: error_code[" << ret << "]"; }