mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
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;
|
||
|
}
|