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>
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
// RUN: %libomptarget-compile-generic
|
|
// RUN: %libomptarget-run-fail-generic 2>&1 \
|
|
// RUN: | %fcheck-generic
|
|
// XFAIL: intelgpu
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
int arr[5];
|
|
|
|
// CHECK: addr=0x[[#%x,HOST_ADDR:]]
|
|
fprintf(stderr, "addr=%p\n", arr);
|
|
|
|
// CHECK-NOT: omptarget
|
|
#pragma omp target data map(alloc : arr[0 : 5])
|
|
#pragma omp target map(present, alloc : arr[0 : 0])
|
|
;
|
|
|
|
// CHECK: arr is present
|
|
fprintf(stderr, "arr is present\n");
|
|
|
|
// arr[0:0] doesn't create an actual mapping in the first directive.
|
|
//
|
|
// CHECK: omptarget message: device mapping required by 'present' map type modifier does not exist for host address 0x{{0*}}[[#HOST_ADDR]] (0 bytes)
|
|
// CHECK: omptarget error: Call to getTargetPointer returned null pointer ('present' map type modifier).
|
|
// CHECK: omptarget error: Call to targetDataBegin failed, abort target.
|
|
// CHECK: omptarget error: Failed to process data before launching the kernel.
|
|
// CHECK: omptarget fatal error 1: failure of target construct while offloading is mandatory
|
|
#pragma omp target data map(alloc : arr[0 : 0])
|
|
#pragma omp target map(present, alloc : arr[0 : 0])
|
|
;
|
|
|
|
// CHECK-NOT: arr is present
|
|
fprintf(stderr, "arr is present\n");
|
|
|
|
return 0;
|
|
}
|