2019-06-02 15:48:37 +00:00
|
|
|
/* Test if acc_copyin has present_or_ and reference counting behavior. */
|
2017-10-07 00:16:47 +00:00
|
|
|
|
2015-08-28 15:33:40 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <openacc.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
const int N = 256;
|
|
|
|
int i;
|
|
|
|
unsigned char *h;
|
|
|
|
|
|
|
|
h = (unsigned char *) malloc (N);
|
|
|
|
|
|
|
|
for (i = 0; i < N; i++)
|
|
|
|
{
|
|
|
|
h[i] = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) acc_copyin (h, N);
|
|
|
|
(void) acc_copyin (h, N);
|
|
|
|
|
2019-06-02 15:48:37 +00:00
|
|
|
acc_copyout (h, N);
|
|
|
|
|
|
|
|
if (!acc_is_present (h, N))
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
acc_copyout (h, N);
|
|
|
|
|
|
|
|
#if !ACC_MEM_SHARED
|
|
|
|
if (acc_is_present (h, N))
|
|
|
|
abort ();
|
|
|
|
#endif
|
|
|
|
|
2015-08-28 15:33:40 +00:00
|
|
|
free (h);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|