10constexpr bool use_omp =
true;
13#pragma GCC diagnostic ignored "-Wunknown-pragmas"
15constexpr bool use_omp =
false;
17#define omp_get_thread_num() 0
18#define omp_get_max_threads() 1
22inline std::string omp_details() {
23 return use_omp ?
"Using OpenMP with " +
24 std::to_string(omp_get_max_threads()) +
" threads." :
qip library: A collection of useful functions
Definition Array.hpp:9