aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.oacc-c-c++-common/lib-95.c
blob: bcbb399a62b2d18dbd69e1b98251c9da6de71da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* { dg-do run } */
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */

/* Fortran version at libgomp.oacc-fortran/acc-memcpy-2.f90.  */

#include <string.h>
#include <stdlib.h>
#include <openacc.h>

int
main (int argc, char **argv)
{
  const int N = 256;
  int i, q = 5;
  unsigned char *h, *g;
  void *d;

  h = (unsigned char *) malloc (N);
  g = (unsigned char *) malloc (N);
  for (i = 0; i < N; i++)
    {
      g[i] = i;
    }

  acc_create_async (h, N, q);

  acc_memcpy_to_device_async (acc_deviceptr (h), g, N, q);

  acc_wait (q);

  memset (h, 0, N);

  acc_update_self_async (h, N, q + 1);
  acc_delete_async (h, N, q + 1);

  acc_wait (q + 1);

  for (i = 0; i < N; i++)
    {
      if (h[i] != i)
	abort ();
    }

  free (h);
  free (g);

  return 0;
}