aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.oacc-c-c++-common/lib-19.c
blob: 3581616d754d5089df98d1aafe04b300aab3455c (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
49
50
51
52
53
54
55
56
57
58
59
60
/* { dg-do run } */
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */

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

#include <stdio.h>

int
main (int argc, char **argv)
{
  const int N = 256;
  int i;
  unsigned char *h[N];

  for (i = 0; i < N; i++)
    {
      int j;
      unsigned char *p;

      h[i] = (unsigned char *) malloc (N);
      p = h[i];

      for (j = 0; j < N; j++)
	{
	  p[j] = i;
	}

      (void) acc_copyin (p, N);
    }

  for (i = 0; i < N; i++)
    {
      memset (h[i], 0, i);
    }

  for (i = 0; i < N; i++)
    {
      int j;
      unsigned char *p;

      acc_copyout (h[i], N);

      p = h[i];

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

  for (i = 0; i < N; i++)
    {
      free (h[i]);
    }

  return 0;
}