Unverified Commit 3e9a6140 authored by Guolin Ke's avatar Guolin Ke Committed by GitHub
Browse files

no omp_set_nested (#2734)

* no omp_set_nested

* Update openmp_wrapper.h
parent 4c3be168
...@@ -62,7 +62,6 @@ catch(...) { omp_except_helper.CaptureException(); } ...@@ -62,7 +62,6 @@ catch(...) { omp_except_helper.CaptureException(); }
simulate a single thread running. simulate a single thread running.
All #pragma omp should be ignored by the compiler **/ All #pragma omp should be ignored by the compiler **/
inline void omp_set_num_threads(int) {} inline void omp_set_num_threads(int) {}
inline void omp_set_nested(int) {}
inline int omp_get_num_threads() {return 1;} inline int omp_get_num_threads() {return 1;}
inline int omp_get_thread_num() {return 0;} inline int omp_get_thread_num() {return 0;}
#ifdef __cplusplus #ifdef __cplusplus
......
...@@ -38,7 +38,6 @@ Application::Application(int argc, char** argv) { ...@@ -38,7 +38,6 @@ Application::Application(int argc, char** argv) {
if (config_.data.size() == 0 && config_.task != TaskType::kConvertModel) { if (config_.data.size() == 0 && config_.task != TaskType::kConvertModel) {
Log::Fatal("No training/prediction data, application quit"); Log::Fatal("No training/prediction data, application quit");
} }
omp_set_nested(0);
} }
Application::~Application() { Application::~Application() {
......
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