Skip to content

Commit

Permalink
Correct OpenMP function name (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Dec 22, 2020
1 parent 591590e commit bdb3eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenMPUtilities.h
Expand Up @@ -44,7 +44,7 @@
// Set max-active-levels to the max supported, if possible
// (supported_active_levels is OpenMP 5.0 (November 2018) or later, only.)
#if (_OPENMP >= 201811)
#define OPEN_MP_MAX_ACTIVE openmp_get_supported_active_levels()
#define OPEN_MP_MAX_ACTIVE omp_get_supported_active_levels()
#else
#define OPEN_MP_MAX_ACTIVE OPEN_MP_NUM_PROCESSORS
#endif
Expand Down

0 comments on commit bdb3eea

Please sign in to comment.