Files
lammps/lib/kokkos/cmake/compile_tests/clang_omp.cpp
2020-04-16 09:06:08 -06:00

10 lines
131 B
C++

#include <omp.h>
int main(int, char**) {
int thr = omp_get_num_threads();
if (thr > 0)
return thr;
else
return 0;
}