mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
18 lines
256 B
C
18 lines
256 B
C
|
#include <omp.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
if (omp_get_level ())
|
||
|
abort ();
|
||
|
#pragma omp target if (0)
|
||
|
if (omp_get_level ())
|
||
|
abort ();
|
||
|
#pragma omp target if (0)
|
||
|
#pragma omp teams
|
||
|
if (omp_get_level ())
|
||
|
abort ();
|
||
|
return 0;
|
||
|
}
|