2017-04-10 13:32:00 +02:00

14 lines
117 B
C

int
main ()
{
int i;
static int temp;
#pragma acc parallel reduction(+:temp)
{
temp++;
}
return 0;
}