af4c92573d
Fix-up for commit be9862dd96
"Test cases for
mixed structured/dynamic data lifetimes with OpenACC [PR92843]": it's
"structured", not "static" data lifetimes/reference counters.
libgomp/
PR libgomp/92843
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-1-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-1-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-1.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-1.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-2-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-2-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-2.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-2.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-3-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-3-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-3.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-3.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-4-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-4-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-4.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-4.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-5-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-5-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-5.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-5.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-6-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-6-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-6.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-6.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-7-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-7-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-7.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-7.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-8-lib.c:
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-8-lib.c:
... this.
* testsuite/libgomp.oacc-c-c++-common/static-dynamic-lifetimes-8.c::
Rename to...
* testsuite/libgomp.oacc-c-c++-common/structured-dynamic-lifetimes-8.c:
... this.
167 lines
2.8 KiB
C
167 lines
2.8 KiB
C
/* Test nested dynamic/structured data mappings. */
|
|
|
|
/* { dg-skip-if "" { *-*-* } { "-DACC_MEM_SHARED=1" } } */
|
|
|
|
#include <openacc.h>
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
|
|
#define SIZE 1024
|
|
|
|
void
|
|
f1 (void)
|
|
{
|
|
char *block1 = (char *) malloc (SIZE);
|
|
|
|
#pragma acc data copy(block1[0:SIZE])
|
|
{
|
|
#ifdef OPENACC_API
|
|
acc_copyin (block1, SIZE);
|
|
acc_copyout (block1, SIZE);
|
|
#else
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#endif
|
|
}
|
|
|
|
assert (!acc_is_present (block1, SIZE));
|
|
|
|
free (block1);
|
|
}
|
|
|
|
void
|
|
f2 (void)
|
|
{
|
|
char *block1 = (char *) malloc (SIZE);
|
|
|
|
#ifdef OPENACC_API
|
|
acc_copyin (block1, SIZE);
|
|
#else
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#endif
|
|
|
|
#pragma acc data copy(block1[0:SIZE])
|
|
{
|
|
}
|
|
|
|
#ifdef OPENACC_API
|
|
acc_copyout (block1, SIZE);
|
|
#else
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#endif
|
|
|
|
assert (!acc_is_present (block1, SIZE));
|
|
|
|
free (block1);
|
|
}
|
|
|
|
void
|
|
f3 (void)
|
|
{
|
|
char *block1 = (char *) malloc (SIZE);
|
|
|
|
#pragma acc data copy(block1[0:SIZE])
|
|
{
|
|
#ifdef OPENACC_API
|
|
acc_copyin (block1, SIZE);
|
|
acc_copyin (block1, SIZE);
|
|
acc_copyout (block1, SIZE);
|
|
acc_copyout (block1, SIZE);
|
|
#else
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#endif
|
|
}
|
|
|
|
assert (!acc_is_present (block1, SIZE));
|
|
|
|
free (block1);
|
|
}
|
|
|
|
void
|
|
f4 (void)
|
|
{
|
|
char *block1 = (char *) malloc (SIZE);
|
|
|
|
#pragma acc data copy(block1[0:SIZE])
|
|
{
|
|
#ifdef OPENACC_API
|
|
acc_copyin (block1, SIZE);
|
|
#else
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#endif
|
|
|
|
#pragma acc data copy(block1[0:SIZE])
|
|
{
|
|
#ifdef OPENACC_API
|
|
acc_copyin (block1, SIZE);
|
|
acc_copyout (block1, SIZE);
|
|
#else
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#endif
|
|
}
|
|
|
|
#ifdef OPENACC_API
|
|
acc_copyout (block1, SIZE);
|
|
#else
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#endif
|
|
}
|
|
|
|
assert (!acc_is_present (block1, SIZE));
|
|
|
|
free (block1);
|
|
}
|
|
|
|
void
|
|
f5 (void)
|
|
{
|
|
char *block1 = (char *) malloc (SIZE);
|
|
|
|
#ifdef OPENACC_API
|
|
acc_copyin (block1, SIZE);
|
|
#else
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#endif
|
|
|
|
#pragma acc data copy(block1[0:SIZE])
|
|
{
|
|
#ifdef OPENACC_API
|
|
acc_copyin (block1, SIZE);
|
|
#else
|
|
#pragma acc enter data copyin(block1[0:SIZE])
|
|
#endif
|
|
#pragma acc data copy(block1[0:SIZE])
|
|
{
|
|
}
|
|
#ifdef OPENACC_API
|
|
acc_copyout (block1, SIZE);
|
|
#else
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#endif
|
|
}
|
|
#ifdef OPENACC_API
|
|
acc_copyout (block1, SIZE);
|
|
#else
|
|
#pragma acc exit data copyout(block1[0:SIZE])
|
|
#endif
|
|
|
|
assert (!acc_is_present (block1, SIZE));
|
|
|
|
free (block1);
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
f1 ();
|
|
f2 ();
|
|
f3 ();
|
|
f4 ();
|
|
f5 ();
|
|
return 0;
|
|
}
|