"...composable_kernel_onnx.git" did not exist on "827301d95af93d581ddac8d2734ec759ea215c6c"
Commit fd66c409 authored by littletomatodonkey's avatar littletomatodonkey
Browse files

rm mkl

parent 51a8d233
...@@ -25,7 +25,7 @@ void DBDetector::LoadModel(const std::string &model_dir) { ...@@ -25,7 +25,7 @@ void DBDetector::LoadModel(const std::string &model_dir) {
config.EnableUseGpu(this->gpu_mem_, this->gpu_id_); config.EnableUseGpu(this->gpu_mem_, this->gpu_id_);
} else { } else {
config.DisableGpu(); config.DisableGpu();
config.EnableMKLDNN(); // 开启MKLDNN加速 // config.EnableMKLDNN(); // not sugesteed to use for now
config.SetCpuMathLibraryNumThreads(this->cpu_math_library_num_threads_); config.SetCpuMathLibraryNumThreads(this->cpu_math_library_num_threads_);
} }
......
...@@ -128,7 +128,7 @@ void CRNNRecognizer::LoadModel(const std::string &model_dir) { ...@@ -128,7 +128,7 @@ void CRNNRecognizer::LoadModel(const std::string &model_dir) {
config.EnableUseGpu(this->gpu_mem_, this->gpu_id_); config.EnableUseGpu(this->gpu_mem_, this->gpu_id_);
} else { } else {
config.DisableGpu(); config.DisableGpu();
config.EnableMKLDNN(); // 开启MKLDNN加速 // config.EnableMKLDNN(); // not sugesteed to use for now
config.SetCpuMathLibraryNumThreads(this->cpu_math_library_num_threads_); config.SetCpuMathLibraryNumThreads(this->cpu_math_library_num_threads_);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment