llvm-project/offload/test/offloading/target_update_to.c
Nick Sarnie 26b777444b
[offload][lit] XFAIL all failing tests on the Level Zero plugin (#174804)
We finally got our buildbot added (to staging, at least) so we want to
start running L0 tests in CI.
We need `check-offload` to pass though, so XFAIL everything failing.
There's a couple `UNSUPPORTED` as well, those are for sporadic fails.

Also make set the `gpu` and `intelgpu` LIT variables when testing the
`spirv64-intel` triple.

We have no DeviceRTL yet so basically everything fails, but we manage to
get

```
Total Discovered Tests: 432
Unsupported      : 169 (39.12%)
Passed           :  67 (15.51%)
Expectedly Failed: 196 (45.37%)
```

We still don't build the level zero plugin by default and these tests
don't run unless the plugin was built, so this has no effect on most
builds.

---------

Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
2026-01-07 19:20:30 +00:00

96 lines
2.2 KiB
C

// RUN: %libomptarget-compile-run-and-check-generic
// XFAIL: intelgpu
// This test checks that "update to" clause in OpenMP supports strided sections.
// #pragma omp target update to(result[0:8:2]) updates every other element
// (stride 2)
#include <omp.h>
#include <stdio.h>
#include <stdlib.h>
#define N 16
int main() {
double *result = (double *)calloc(N, sizeof(double));
// Initialize on host
for (int i = 0; i < N; i++) {
result[i] = i;
}
// Initial values
printf("original host array values:\n");
for (int i = 0; i < N; i++)
printf("%f\n", result[i]);
printf("\n");
#pragma omp target data map(from : result[0 : N])
{
// Initialize device array to 0
#pragma omp target
{
for (int i = 0; i < N; i++) {
result[i] = 0.0;
}
}
// Modify host strided elements (even indices)
for (int i = 0; i < 8; i++) {
result[i * 2] = 100.0;
}
// Update strided elements to device: indices 0,2,4,6,8,10,12,14
#pragma omp target update to(result[0 : 8 : 2])
#pragma omp target
{
for (int i = 0; i < N; i++) {
result[i] += i;
}
}
}
printf("from target array results:\n");
for (int i = 0; i < N; i++)
printf("%f\n", result[i]);
// CHECK: original host array values:
// CHECK-NEXT: 0.000000
// CHECK-NEXT: 1.000000
// CHECK-NEXT: 2.000000
// CHECK-NEXT: 3.000000
// CHECK-NEXT: 4.000000
// CHECK-NEXT: 5.000000
// CHECK-NEXT: 6.000000
// CHECK-NEXT: 7.000000
// CHECK-NEXT: 8.000000
// CHECK-NEXT: 9.000000
// CHECK-NEXT: 10.000000
// CHECK-NEXT: 11.000000
// CHECK-NEXT: 12.000000
// CHECK-NEXT: 13.000000
// CHECK-NEXT: 14.000000
// CHECK-NEXT: 15.000000
// CHECK: from target array results:
// CHECK-NEXT: 100.000000
// CHECK-NEXT: 1.000000
// CHECK-NEXT: 102.000000
// CHECK-NEXT: 3.000000
// CHECK-NEXT: 104.000000
// CHECK-NEXT: 5.000000
// CHECK-NEXT: 106.000000
// CHECK-NEXT: 7.000000
// CHECK-NEXT: 108.000000
// CHECK-NEXT: 9.000000
// CHECK-NEXT: 110.000000
// CHECK-NEXT: 11.000000
// CHECK-NEXT: 112.000000
// CHECK-NEXT: 13.000000
// CHECK-NEXT: 114.000000
// CHECK-NEXT: 15.000000
free(result);
return 0;
}