mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-15 22:08:47 +00:00
34 lines
372 B
C
34 lines
372 B
C
#include <stdlib.h>
|
|
|
|
#define N 32
|
|
|
|
unsigned int
|
|
foo (int n, unsigned int *a)
|
|
{
|
|
#pragma acc kernels copy (a[0:N])
|
|
{
|
|
a[0] = 2;
|
|
|
|
for (int i = 0; i < n; i++)
|
|
a[i] = 1;
|
|
}
|
|
|
|
return a[0];
|
|
}
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
unsigned int a[N];
|
|
unsigned res, i;
|
|
|
|
for (i = 0; i < N; ++i)
|
|
a[i] = i % 4;
|
|
|
|
res = foo (N, a);
|
|
if (res != 1)
|
|
abort ();
|
|
|
|
return 0;
|
|
}
|