gcc/libgomp/testsuite/libgomp.oacc-c-c++-common/combined-directives-1.c
Thomas Schwinge 41e977ac90 Improve filenames for test cases of OpenACC combined directives
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
2015-10-29 10:03:40 +01:00

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;
}