view libgomp/testsuite/libgomp.oacc-c-c++-common/kernels-loop-and-seq.c @ 143:76e1cf5455ef

add cbc_gc test
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 19:24:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

#include <stdlib.h>

#define N 32

unsigned int
foo (int n, unsigned int *a)
{

#pragma acc kernels copy (a[0:N])
  {
    for (int i = 0; i < n; i++)
      a[i] = 1;

    a[0] = a[0] + 1;
  }

  return a[0];
}

int
main (void)
{
  unsigned int a[N];
  unsigned res, i;

  for (i = 0; i < N; ++i)
    a[i] = i % 4;

  res = foo (N, a);
  if (res != 2)
    abort ();

  return 0;
}