mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
27 lines
476 B
C
27 lines
476 B
C
/* { dg-do run } */
|
|
/* { dg-additional-options "-foffload-options=nvptx-none=-latomic" { target { offload_target_nvptx } } } */
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define N 32
|
|
#define TYPE char
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
TYPE result = 1;
|
|
TYPE a[N];
|
|
for (int x = 0; x < N; ++x)
|
|
a[x] = 1;
|
|
|
|
#pragma omp target map(tofrom: result) map(to:a)
|
|
#pragma omp for simd reduction(&&:result)
|
|
for (int x = 0; x < N; ++x)
|
|
result = result && a[x];
|
|
|
|
if (result != 1)
|
|
abort ();
|
|
|
|
return 0;
|
|
}
|