You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <omp.h>
|
|
int main(void)
|
|
{
|
|
#ifdef _OPENMP
|
|
omp_get_num_threads();
|
|
#elif !defined(__CUDA_ARCH__) && !defined(__HIP_DEVICE_COMPILE__)
|
|
# error "_OPENMP not defined!"
|
|
#endif
|
|
return 0;
|
|
}
|