[offload][lit] Enable/disable tests on Level Zero when using DeviceRTL (#182128)
Since we can now build the DeviceRTL with SPIR-V, redo the `XFAIL/UNSUPPORTED` specifications for the tests we see passing/failing on the Level Zero backend with the DeviceRTL being used. The tests marked `UNSUPPORTED` hang or sporadically fail and those are tracked in https://github.com/llvm/llvm-project/issues/182119. This change will allow us to enable CI testing with the DeviceRTL. Here are the full test results with this change applied, running only the `spirv64-intel` `check-offload` tests: ``` Total Discovered Tests: 453 Unsupported : 206 (45.47%) Passed : 141 (31.13%) Expectedly Failed: 106 (23.40%) ``` 31% is not a bad start. --------- Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
This commit is contained in:
parent
e980a01fa3
commit
78ff5b55fd
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// RUN: %libomptarget-compileopt-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// RUN: %libomptarget-compileopt-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
// RUN: env OMP_NUM_TEAMS=1 OMP_TEAMS_THREAD_LIMIT=1 LIBOMPTARGET_INFO=16 \
|
||||
// RUN: %libomptarget-run-generic 2>&1 | %fcheck-generic
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#define N 256
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <assert.h>
|
||||
#include <omp.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <ompx.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <ompx.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <ompx.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <ompx.h>
|
||||
|
||||
1
offload/test/env/omp_target_debug.c
vendored
1
offload/test/env/omp_target_debug.c
vendored
@ -2,7 +2,6 @@
|
||||
// RUN: %libomptarget-compile-generic && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-generic 2>&1 | %fcheck-generic -allow-empty -check-prefix=DEBUG
|
||||
// RUN: %libomptarget-compile-generic && env LIBOMPTARGET_DEBUG=0 %libomptarget-run-generic 2>&1 | %fcheck-generic -allow-empty -check-prefix=NDEBUG
|
||||
// REQUIRES: libomptarget-debug
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
int main(void) {
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// RUN: %libomptarget-compileopt-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compilexx-generic -O3 && %libomptarget-run-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// RUN: %libomptarget-compilexx-generic -fopenmp-version=51
|
||||
// RUN: %libomptarget-run-generic 2>&1 \
|
||||
// RUN: | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <assert.h>
|
||||
#include <iostream>
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
|
||||
// REQUIRES: unified_shared_memory
|
||||
// XFAIL: nvptx
|
||||
// XFAIL: intelgpu
|
||||
|
||||
// CHECK: SUCCESS
|
||||
// NO_USM: Not accessible
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <assert.h>
|
||||
#include <iostream>
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compileopt-generic -fno-exceptions
|
||||
// RUN: %libomptarget-run-generic 2>&1 | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
// RUN: %libomptarget-compile-generic -fopenmp-extensions
|
||||
// RUN: %libomptarget-run-generic | %fcheck-generic -strict-whitespace
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -4,7 +4,6 @@
|
||||
// REQUIRES: gpu
|
||||
// UNSUPPORTED: nvidiagpu
|
||||
// UNSUPPORTED: amdgpu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// RUN: %libomptarget-compile-generic
|
||||
// RUN: %libomptarget-run-fail-generic 2>&1 \
|
||||
// RUN: | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@ -15,7 +15,6 @@
|
||||
// RUN: -DEXTENDS=AFTER
|
||||
// RUN: %libomptarget-run-fail-generic 2>&1 \
|
||||
// RUN: | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
// END.
|
||||
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
// RUN: | %fcheck-generic
|
||||
|
||||
// REQUIRES: unified_shared_memory
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// RUN: %libomptarget-compile-generic
|
||||
// RUN: %libomptarget-run-fail-generic 2>&1 \
|
||||
// RUN: | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// UNSUPPORTED: amdgcn-amd-amdhsa
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// RUN: %libomptarget-compile-generic
|
||||
// RUN: %libomptarget-run-generic 2>&1 \
|
||||
// RUN: | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
// END.
|
||||
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
// RUN: %libomptarget-compile-generic -fopenmp-version=51
|
||||
// RUN: %libomptarget-run-generic 2>&1 \
|
||||
// RUN: | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
int main() {
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compilexx-generic && %libomptarget-run-fail-generic
|
||||
// RUN: %libomptarget-compileoptxx-generic && %libomptarget-run-fail-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
#pragma omp target
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// clang-format off
|
||||
// RUN: %libomptarget-compile-generic -O3 && %libomptarget-run-generic | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
// clang-format on
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -8,7 +8,8 @@
|
||||
// REQUIRES: gpu
|
||||
// UNSUPPORTED: nvidiagpu
|
||||
// UNSUPPORTED: amdgpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <cassert>
|
||||
#include <cmath>
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
// RUN: %libomptarget-compile-generic -O2 && %libomptarget-run-generic
|
||||
// -O2 to run openmp-opt
|
||||
// RUN: %libomptarget-compileopt-generic -O2 && %libomptarget-run-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
int main(void) {
|
||||
long int aa = 0;
|
||||
|
||||
@ -6,7 +6,6 @@
|
||||
// UNSUPPORTED: amdgcn-amd-amdhsa
|
||||
// UNSUPPORTED: nvptx64-nvidia-cuda
|
||||
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
// RUN: %libomptarget-compile-generic
|
||||
// RUN: %libomptarget-compileopt-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
#define N 10
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compile-generic && %libomptarget-run-generic
|
||||
// RUN: %libomptarget-compileopt-generic && %libomptarget-run-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
// Verify we do not read bits in the image that are not there (nobits section).
|
||||
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
// RUN: %libomptarget-compileoptxx-run-and-check-generic
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
@ -4,7 +4,8 @@
|
||||
// RUN: %not --crash %libomptarget-run-generic
|
||||
// RUN: %libomptarget-compilexx-generic -DCTOR_API
|
||||
// RUN: %not --crash %libomptarget-run-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <cstdio>
|
||||
#include <omp.h>
|
||||
|
||||
@ -5,7 +5,8 @@
|
||||
// RUN: %libomptarget-compileopt-generic %t.so && %libomptarget-run-generic 2>&1 | %fcheck-generic
|
||||
//
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
// clang-format on
|
||||
|
||||
#ifdef SHARED
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
// clang-format off
|
||||
// RUN: %libomptarget-compile-generic -DSHARED -fPIC -shared -o %t.so && %clang %flags %s -o %t -ldl && %libomptarget-run-generic %t.so 2>&1 | %fcheck-generic
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
#ifdef SHARED
|
||||
#include <stdio.h>
|
||||
|
||||
@ -2,10 +2,11 @@
|
||||
// RUN: %libomptarget-compilexx-generic && env LIBOMPTARGET_REUSE_BLOCKS_FOR_HIGH_TRIP_COUNT=False %libomptarget-run-generic 2>&1 | %fcheck-generic
|
||||
// RUN: %libomptarget-compilexx-generic && %libomptarget-run-generic 2>&1 | %fcheck-generic --check-prefix=DEFAULT
|
||||
|
||||
// UNSUPPORTED: aarch64-unknown-linux-gnu
|
||||
// UNSUPPORTED: x86_64-unknown-linux-gnu
|
||||
// UNSUPPORTED: s390x-ibm-linux-gnu
|
||||
// XFAIL: intelgpu
|
||||
// UNSUPPORTED: aarch64-unknown-linux-gnu
|
||||
// UNSUPPORTED: x86_64-unknown-linux-gnu
|
||||
// UNSUPPORTED: s390x-ibm-linux-gnu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// clang-format off
|
||||
// RUN: %libomptarget-compile-generic && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-generic 2>&1 | %fcheck-generic -allow-empty -check-prefix=DEBUG
|
||||
// REQUIRES: libomptarget-debug
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compile-generic && %libomptarget-run-generic
|
||||
// RUN: %libomptarget-compileopt-generic && %libomptarget-run-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// RUN: %libomptarget-compileopt-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
// RUN: %fcheck-generic
|
||||
//
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <assert.h>
|
||||
#include <ompx.h>
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
// RUN: %libomptarget-compileopt-run-and-check-generic
|
||||
//
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <ompx.h>
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
// RUN: %libomptarget-compileopt-run-and-check-generic
|
||||
//
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <math.h>
|
||||
#include <omp.h>
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// RUN: %libomptarget-compilexx-run-and-check-generic
|
||||
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
|
||||
// FIXME: This is a bug in host offload, this should run fine.
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
|
||||
// FIXME: This is a bug in host offload, this should run fine.
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
// This test validates that the OpenMP target reductions to find a maximum work
|
||||
// as intended for a few common data types.
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
|
||||
// FIXME: This is a bug in host offload, this should run fine.
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
// This test validates that the OpenMP target reductions to find a minimum work
|
||||
// as intended for a few common data types.
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// clang-format off
|
||||
// RUN: %libomptarget-compile-generic -DREQ=1 && %libomptarget-run-generic 2>&1 | %fcheck-generic -check-prefix=GOOD
|
||||
// RUN: %libomptarget-compile-generic -DREQ=2 && %not --crash %libomptarget-run-generic 2>&1 | %fcheck-generic -check-prefix=BAD
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -6,7 +6,6 @@
|
||||
// RUN: %libomptarget-run-generic 2>&1 | %fcheck-generic --check-prefix=EIGHT
|
||||
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#define N 128
|
||||
|
||||
|
||||
@ -4,7 +4,6 @@
|
||||
// RUN: %libomptarget-run-generic 2>&1 | %fcheck-generic
|
||||
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
constexpr const int block_size = 256;
|
||||
|
||||
@ -9,7 +9,8 @@
|
||||
// clang-format on
|
||||
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
// default.
|
||||
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
// RUN: %libomptarget-compileoptxx-run-and-check-generic
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -4,7 +4,8 @@
|
||||
// UNSUPPORTED: nvptx64-nvidia-cuda
|
||||
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO
|
||||
// UNSUPPORTED: amdgcn-amd-amdhsa
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
// clang-format on
|
||||
|
||||
// REQUIRES: libomptarget-debug
|
||||
// XFAIL: intelgpu
|
||||
|
||||
struct DataTy {
|
||||
float a;
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
// RUN: %libomptarget-compile-generic && \
|
||||
// RUN: %libomptarget-run-generic
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// RUN: %libomptarget-compilexx-and-run-generic
|
||||
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <cmath>
|
||||
#include <cstdlib>
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
// RUN: %libomptarget-compileopt-and-run-generic
|
||||
|
||||
// UNSUPPORTED: amdgcn-amd-amdhsa
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <assert.h>
|
||||
#include <omp.h>
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// clang-format off
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// clang-format off
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
// REQUIRES: ompt
|
||||
// XFAIL: intelgpu
|
||||
// clang-format on
|
||||
|
||||
/*
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
// UNSUPPORTED: aarch64-unknown-linux-gnu
|
||||
// UNSUPPORTED: x86_64-unknown-linux-gnu
|
||||
// UNSUPPORTED: s390x-ibm-linux-gnu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
// UNSUPPORTED: aarch64-unknown-linux-gnu
|
||||
// UNSUPPORTED: x86_64-unknown-linux-gnu
|
||||
// UNSUPPORTED: s390x-ibm-linux-gnu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
// UNSUPPORTED: aarch64-unknown-linux-gnu
|
||||
// UNSUPPORTED: x86_64-unknown-linux-gnu
|
||||
// UNSUPPORTED: s390x-ibm-linux-gnu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
// UNSUPPORTED: aarch64-unknown-linux-gnu
|
||||
// UNSUPPORTED: x86_64-unknown-linux-gnu
|
||||
// UNSUPPORTED: s390x-ibm-linux-gnu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
|
||||
@ -8,7 +8,6 @@
|
||||
// UNSUPPORTED: aarch64-unknown-linux-gnu
|
||||
// UNSUPPORTED: x86_64-unknown-linux-gnu
|
||||
// UNSUPPORTED: s390x-ibm-linux-gnu
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
|
||||
@ -9,7 +9,8 @@
|
||||
// UNSUPPORTED: nvidiagpu
|
||||
//
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
// UNSUPPORTED: nvidiagpu
|
||||
//
|
||||
// REQUIRES: gpu
|
||||
// XFAIL: intelgpu
|
||||
// https://github.com/llvm/llvm-project/issues/182119
|
||||
// UNSUPPORTED: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
// RUN: %libomptarget-compile-run-and-check-generic
|
||||
|
||||
// REQUIRES: unified_shared_memory
|
||||
// XFAIL: intelgpu
|
||||
|
||||
#include <omp.h>
|
||||
#include <stdio.h>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user