Skip to content

Commit c26d95a

Browse files
authored
[SYCL][HIP] Add missing unsupported tag for hip (intel/llvm-test-suite#491)
1 parent 4c51ced commit c26d95a

9 files changed

+17
-17
lines changed

SYCL/Assert/assert_in_kernels.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: linux
2-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
3-
// UNSUPPORTED: cuda
2+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
3+
// UNSUPPORTED: cuda || hip
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
55
// RUN: %CPU_RUN_PLACEHOLDER %t.out &> %t.txt || true
66
// RUN: %CPU_RUN_PLACEHOLDER FileCheck %s --input-file %t.txt

SYCL/Assert/assert_in_kernels_ndebug.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
2-
// UNSUPPORTED: cuda
1+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
2+
// UNSUPPORTED: cuda || hip
33
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -DNDEBUG %S/assert_in_kernels.cpp -o %t.out
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out %CPU_CHECK_PLACEHOLDER
55
// RUN: %GPU_RUN_PLACEHOLDER %t.out %GPU_CHECK_PLACEHOLDER

SYCL/Assert/assert_in_multiple_tus.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: linux
2-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
3-
// UNSUPPORTED: cuda
2+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
3+
// UNSUPPORTED: cuda || hip
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -I %S/Inputs %s %S/Inputs/kernels_in_file2.cpp -o %t.out
55
// RUN: %CPU_RUN_PLACEHOLDER %t.out &> %t.txt || true
66
// RUN: %CPU_RUN_PLACEHOLDER FileCheck %s --input-file %t.txt

SYCL/Assert/assert_in_multiple_tus_one_ndebug.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: linux
2-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
3-
// UNSUPPORTED: cuda
2+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
3+
// UNSUPPORTED: cuda || hip
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -DDEFINE_NDEBUG_INFILE2 -I %S/Inputs %S/assert_in_multiple_tus.cpp %S/Inputs/kernels_in_file2.cpp -o %t.out
55
// RUN: %CPU_RUN_PLACEHOLDER %t.out &> %t.txt || true
66
// RUN: %CPU_RUN_PLACEHOLDER FileCheck %s --input-file %t.txt

SYCL/Assert/assert_in_one_kernel.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: linux
2-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
3-
// UNSUPPORTED: cuda
2+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
3+
// UNSUPPORTED: cuda || hip
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
55
// RUN: %CPU_RUN_PLACEHOLDER %t.out &> %t.txt || true
66
// RUN: %CPU_RUN_PLACEHOLDER FileCheck %s --input-file %t.txt

SYCL/Assert/assert_in_simultaneous_kernels.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: linux
2-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
3-
// UNSUPPORTED: cuda
2+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
3+
// UNSUPPORTED: cuda || hip
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out %threads_lib
55
// RUN: %CPU_RUN_PLACEHOLDER %t.out &> %t.txt || true
66
// RUN: %CPU_RUN_PLACEHOLDER FileCheck %s --input-file %t.txt

SYCL/Assert/assert_in_simultaneously_multiple_tus.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
2-
// UNSUPPORTED: cuda
1+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
2+
// UNSUPPORTED: cuda || hip
33
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -I %S/Inputs %s %S/Inputs/kernels_in_file2.cpp -o %t.out %threads_lib
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out &> %t.txt || true
55
// RUN: %CPU_RUN_PLACEHOLDER FileCheck %s --input-file %t.txt

SYCL/Assert/assert_in_simultaneously_multiple_tus_one_ndebug.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// FIXME unsuppoerted on CUDA until fallback libdevice becomes available
2-
// UNSUPPORTED: cuda
1+
// FIXME unsupported on CUDA and HIP until fallback libdevice becomes available
2+
// UNSUPPORTED: cuda || hip
33
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -DDEFINE_NDEBUG_INFILE2 -I %S/Inputs %S/assert_in_simultaneously_multiple_tus.cpp %S/Inputs/kernels_in_file2.cpp -o %t.out %threads_lib
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out &> %t.txt || true
55
// RUN: %CPU_RUN_PLACEHOLDER FileCheck %s --input-file %t.txt

SYCL/ESIMD/api/simd_mask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88
// REQUIRES: gpu
9-
// UNSUPPORTED: cuda
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl-unnamed-lambda -fsycl -I%S/.. %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

0 commit comments

Comments
 (0)