conv1x1 op

This commit is contained in:
lzk 2021-05-26 02:35:00 -07:00
parent d5f2fb40f1
commit f0ac8f5228
1 changed files with 2 additions and 2 deletions

View File

@ -166,8 +166,8 @@ int ConvolutionDepthwiseSWCPUKernelX86::Run() {
packed_output_ = output_ptr;
}
ret = ParallelLaunch(static_cast<const lite::InnerContext *>(this->context_)->thread_pool_, ConvDwSWAvxRun, this,
conv_param_->thread_num_);
ret = static_cast<const lite::InnerContext *>(this->context_)
->thread_pool_->ParallelLaunch(ConvDwSWAvxRun, this, conv_param_->thread_num_);
if (ret != RET_OK) {
MS_LOG(ERROR) << "ConvDwSWAvxRun error: error_code[" << ret << "]";
}