41e977ac90
libgomp/ * testsuite/libgomp.oacc-c-c++-common/combdir-1.c: Rename to... * testsuite/libgomp.oacc-c-c++-common/combined-directives-1.c: ... this. Add a description of the test at the top of the file. * testsuite/libgomp.oacc-fortran/combdir-1.f90: Rename file to... * testsuite/libgomp.oacc-fortran/combined-directives-1.f90: ... this. Add a description of the test at the top of the file. Co-Authored-By: Cesar Philippidis <cesar@codesourcery.com> From-SVN: r229518
55 lines
756 B
C
55 lines
756 B
C
/* This test exercises combined directives. */
|
|
|
|
/* { dg-do run } */
|
|
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
const int N = 32;
|
|
float a[N], b[N];
|
|
int i;
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
a[i] = 1.0;
|
|
b[i] = 0.0;
|
|
}
|
|
|
|
#pragma acc parallel loop copy (a[0:N]) copy (b[0:N])
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
b[i] = 2.0;
|
|
a[i] = a[i] + b[i];
|
|
}
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
if (a[i] != 3.0)
|
|
abort ();
|
|
|
|
if (b[i] != 2.0)
|
|
abort ();
|
|
}
|
|
|
|
#pragma acc kernels loop copy (a[0:N]) copy (b[0:N])
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
b[i] = 3.0;
|
|
a[i] = a[i] + b[i];
|
|
}
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
if (a[i] != 6.0)
|
|
abort ();
|
|
|
|
if (b[i] != 3.0)
|
|
abort ();
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|