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>
35 lines
676 B
C++
35 lines
676 B
C++
// RUN: %libomptarget-compilexx-generic
|
|
// RUN: %libomptarget-run-generic
|
|
// RUN: %libomptarget-compilexx-generic -DCTOR_KERNEL
|
|
// RUN: %not --crash %libomptarget-run-generic
|
|
// RUN: %libomptarget-compilexx-generic -DCTOR_API
|
|
// RUN: %not --crash %libomptarget-run-generic
|
|
// XFAIL: intelgpu
|
|
|
|
#include <cstdio>
|
|
#include <omp.h>
|
|
|
|
void foo_dev() { __builtin_trap(); }
|
|
|
|
#pragma omp declare variant(foo_dev) match(device = {kind(nohost)})
|
|
void foo() {}
|
|
|
|
struct S {
|
|
S() { foo(); }
|
|
};
|
|
|
|
S s;
|
|
#pragma omp declare target(s)
|
|
|
|
int main() {
|
|
int Dev = omp_get_default_device();
|
|
|
|
#ifdef CTOR_KERNEL
|
|
#pragma omp target
|
|
{}
|
|
#endif
|
|
#ifdef CTOR_API
|
|
omp_get_mapped_ptr(&s, Dev);
|
|
#endif
|
|
}
|