mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +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;
|
|
}
|