14 lines
117 B
C
14 lines
117 B
C
|
int
|
||
|
main ()
|
||
|
{
|
||
|
int i;
|
||
|
static int temp;
|
||
|
|
||
|
#pragma acc parallel reduction(+:temp)
|
||
|
{
|
||
|
temp++;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|