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_max_threads();
|
|
return 0;
|
|
#elif defined(__HIP_DEVICE_COMPILE__)
|
|
return 0;
|
|
#else
|
|
breaks_on_purpose
|
|
#endif
|
|
}
|