2022-07-15 14:14:32 +02:00
|
|
|
#include <stdio.h>
|
2022-07-15 14:33:44 +02:00
|
|
|
#include <openacc.h>
|
|
|
|
#include <gomp-constants.h>
|
2022-07-15 14:14:32 +02:00
|
|
|
|
|
|
|
#define N (32*32*32+17)
|
|
|
|
|
|
|
|
#pragma acc routine worker
|
|
|
|
void __attribute__ ((noinline)) worker (int ary[N])
|
|
|
|
{
|
|
|
|
#pragma acc loop worker vector
|
|
|
|
for (unsigned ix = 0; ix < N; ix++)
|
|
|
|
{
|
2022-07-15 14:33:44 +02:00
|
|
|
if (acc_on_device (acc_device_not_host))
|
2022-07-15 14:14:32 +02:00
|
|
|
{
|
2022-07-15 14:33:44 +02:00
|
|
|
int g, w, v;
|
2022-07-15 14:14:32 +02:00
|
|
|
|
2022-07-15 14:33:44 +02:00
|
|
|
g = __builtin_goacc_parlevel_id (GOMP_DIM_GANG);
|
|
|
|
w = __builtin_goacc_parlevel_id (GOMP_DIM_WORKER);
|
|
|
|
v = __builtin_goacc_parlevel_id (GOMP_DIM_VECTOR);
|
2022-07-15 14:14:32 +02:00
|
|
|
ary[ix] = (g << 16) | (w << 8) | v;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ary[ix] = ix;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
int ary[N];
|
|
|
|
int ix;
|
|
|
|
int exit = 0;
|
|
|
|
int ondev = 0;
|
2022-07-15 14:33:44 +02:00
|
|
|
int workersize, vectorsize;
|
2022-07-15 14:14:32 +02:00
|
|
|
|
|
|
|
for (ix = 0; ix < N;ix++)
|
|
|
|
ary[ix] = -1;
|
|
|
|
|
2023-06-18 01:43:18 +01:00
|
|
|
#define NW 32
|
|
|
|
#define VL 32
|
|
|
|
#pragma acc parallel num_workers(NW) vector_length(VL) \
|
|
|
|
copy(ary) copy(ondev)
|
2022-07-15 14:14:32 +02:00
|
|
|
{
|
2022-07-15 14:33:44 +02:00
|
|
|
ondev = acc_on_device (acc_device_not_host);
|
2022-07-15 14:14:32 +02:00
|
|
|
worker (ary);
|
|
|
|
}
|
2023-06-18 01:43:18 +01:00
|
|
|
workersize = NW;
|
|
|
|
vectorsize = VL;
|
|
|
|
#ifdef ACC_DEVICE_TYPE_radeon
|
|
|
|
/* AMD GCN has an upper limit of 'num_workers(16)'. */
|
|
|
|
if (workersize > 16)
|
|
|
|
workersize = 16;
|
|
|
|
/* AMD GCN uses the autovectorizer for the vector dimension: the use
|
|
|
|
of a function call in vector-partitioned code in this test is not
|
|
|
|
currently supported. */
|
|
|
|
vectorsize = 1;
|
|
|
|
#endif
|
2022-07-15 14:14:32 +02:00
|
|
|
|
|
|
|
for (ix = 0; ix < N; ix++)
|
|
|
|
{
|
|
|
|
int expected = ix;
|
|
|
|
if(ondev)
|
|
|
|
{
|
|
|
|
int g = 0;
|
2022-07-15 14:33:44 +02:00
|
|
|
int w = (ix / vectorsize) % workersize;
|
|
|
|
int v = ix % vectorsize;
|
2022-07-15 14:14:32 +02:00
|
|
|
|
|
|
|
expected = (g << 16) | (w << 8) | v;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ary[ix] != expected)
|
|
|
|
{
|
|
|
|
exit = 1;
|
|
|
|
printf ("ary[%d]=%x expected %x\n", ix, ary[ix], expected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return exit;
|
|
|
|
}
|