Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 5bb592d

Browse files
authored
[SYCL] Rename ROCm plugin to HIP (#426)
1 parent 41727c2 commit 5bb592d

File tree

172 files changed

+231
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+231
-232
lines changed

SYCL/AtomicRef/atomic_memory_order.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// RUN: %CPU_RUN_PLACEHOLDER %t.out
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
6-
// L0, OpenCL, and ROCm backends don't currently support
6+
// L0, OpenCL, and HIP backends don't currently support
77
// info::device::atomic_memory_order_capabilities
8-
// UNSUPPORTED: level_zero || opencl || rocm
8+
// UNSUPPORTED: level_zero || opencl || hip
99

1010
// NOTE: General tests for atomic memory order capabilities.
1111

SYCL/AtomicRef/atomic_memory_order_acq_rel.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// RUN: %CPU_RUN_PLACEHOLDER %t.out
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
6-
// L0, OpenCL, and ROCm backends don't currently support
6+
// L0, OpenCL, and HIP backends don't currently support
77
// info::device::atomic_memory_order_capabilities
8-
// UNSUPPORTED: level_zero || opencl || rocm
8+
// UNSUPPORTED: level_zero || opencl || hip
99

1010
// NOTE: Tests load and store for acquire-release memory ordering.
1111

SYCL/AtomicRef/atomic_memory_order_acq_rel_atomic64.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// RUN: %CPU_RUN_PLACEHOLDER %t.out
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
6-
// L0, OpenCL, and ROCm backends don't currently support
6+
// L0, OpenCL, and HIP backends don't currently support
77
// info::device::atomic_memory_order_capabilities
8-
// UNSUPPORTED: level_zero || opencl || rocm
8+
// UNSUPPORTED: level_zero || opencl || hip
99

1010
// NOTE: Tests load and store for acquire-release memory ordering with 64-bit
1111
// values.

SYCL/AtomicRef/atomic_memory_order_seq_cst.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// RUN: %CPU_RUN_PLACEHOLDER %t.out
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
6-
// L0, OpenCL, and ROCm backends don't currently support
6+
// L0, OpenCL, and HIP backends don't currently support
77
// info::device::atomic_memory_order_capabilities
8-
// UNSUPPORTED: level_zero || opencl || rocm
8+
// UNSUPPORTED: level_zero || opencl || hip
99

1010
// NOTE: Tests load and store for sequentially consistent memory ordering.
1111

SYCL/AtomicRef/atomic_memory_order_seq_cst_atomic64.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// RUN: %CPU_RUN_PLACEHOLDER %t.out
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55
// RUN: %ACC_RUN_PLACEHOLDER %t.out
6-
// L0, OpenCL, and ROCm backends don't currently support
6+
// L0, OpenCL, and HIP backends don't currently support
77
// info::device::atomic_memory_order_capabilities
8-
// UNSUPPORTED: level_zero || opencl || rocm
8+
// UNSUPPORTED: level_zero || opencl || hip
99

1010
// NOTE: Tests load and store for sequentially consistent memory ordering with
1111
// 64-bit values.

SYCL/Basic/aspects.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
// RUN: %clangxx -fsycl %s -o %t.out
22
// RUN: env SYCL_DEVICE_FILTER=%sycl_be %t.out
33
//
4-
// Hip is missing some of the parameters tested here so it fails with ROCm for
5-
// NVIDIA
6-
// XFAIL: rocm_nvidia
4+
// Hip is missing some of the parameters tested here so it fails with NVIDIA
5+
// XFAIL: hip_nvidia
76

87
//==--------------- aspects.cpp - SYCL device test ------------------------==//
98
//

SYCL/Basic/image/image.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: rocm
1+
// UNSUPPORTED: hip
22
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
33
// RUN: %HOST_RUN_PLACEHOLDER %t.out
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out

SYCL/Basic/image/image_accessor_readsampler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || rocm
1+
// UNSUPPORTED: cuda || hip
22
// CUDA cannot support SYCL 1.2.1 images.
33
//
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out

SYCL/Basic/image/image_accessor_readwrite.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || rocm
1+
// UNSUPPORTED: cuda || hip
22
// CUDA cannot support SYCL 1.2.1 images.
33
//
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out

SYCL/Basic/image/image_accessor_readwrite_half.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || rocm
1+
// UNSUPPORTED: cuda || hip
22
// CUDA cannot support SYCL 1.2.1 images.
33
//
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out

SYCL/Basic/image/image_array.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || rocm
1+
// UNSUPPORTED: cuda || hip
22
// CUDA cannot support SYCL 1.2.1 images.
33
//
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out

SYCL/Basic/image/image_read.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: rocm
1+
// UNSUPPORTED: hip
22
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
33
// RUN: %HOST_RUN_PLACEHOLDER %t.out
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out

SYCL/Basic/image/image_read_fp16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: rocm
1+
// UNSUPPORTED: hip
22
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
33
// RUN: %HOST_RUN_PLACEHOLDER %t.out
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out

SYCL/Basic/image/image_sample.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
22
// RUN: %CPU_RUN_PLACEHOLDER %t.out
33
// RUN: %GPU_RUN_PLACEHOLDER %t.out
4-
// UNSUPPORTED: cuda || rocm
4+
// UNSUPPORTED: cuda || hip
55

66
#include <CL/sycl.hpp>
77

SYCL/Basic/image/image_write.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RUN: %CPU_RUN_PLACEHOLDER %t.out
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out
55

6-
// UNSUPPORTED: cuda || rocm
6+
// UNSUPPORTED: cuda || hip
77
// TODO: re-enable on cuda device.
88
// See https://github.com/intel/llvm/issues/1542#issuecomment-707877817 for more
99
// details.

SYCL/Basic/image/image_write_fp16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: rocm
1+
// UNSUPPORTED: hip
22
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
33
// RUN: %HOST_RUN_PLACEHOLDER %t.out
44
// RUN: %CPU_RUN_PLACEHOLDER %t.out

SYCL/Basic/image/srgba-read.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55
// XFAIL: level_zero
66
// UNSUPPORTED: cuda
7-
// UNSUPPORTED: rocm_nvidia
8-
// UNSUPPORTED: rocm_amd
7+
// UNSUPPORTED: hip
98

109
#include <sycl/sycl.hpp>
1110

SYCL/Basic/intel-ext-device.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
//
55
// REQUIRES: gpu
66
// UNSUPPORTED: cuda
7-
// UNSUPPORTED: rocm_nvidia
8-
// UNSUPPORTED: rocm_amd
7+
// UNSUPPORTED: hip
98

109
//==--------- intel-ext-device.cpp - SYCL device test ------------==//
1110
//

SYCL/Basic/kernel_bundle/kernel_bundle_api.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// RUN: env SYCL_PI_TRACE=2 %CPU_RUN_PLACEHOLDER %t.out %CPU_CHECK_PLACEHOLDER
77
//
88
// -fsycl-device-code-split is not supported for cuda
9-
// UNSUPPORTED: cuda || rocm
9+
// UNSUPPORTED: cuda || hip
1010

1111
#include <CL/sycl.hpp>
1212

SYCL/Basic/span.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// RUN: %GPU_RUN_PLACEHOLDER %t.out
44
// RUN: %ACC_RUN_PLACEHOLDER %t.out
55
//
6-
// Fails to release USM pointer on ROCm for NVIDIA
7-
// XFAIL: rocm_nvidia
6+
// Fails to release USM pointer on HIP for NVIDIA
7+
// XFAIL: hip_nvidia
88

99
#include <numeric>
1010
#include <sycl/sycl.hpp>

SYCL/DeprecatedFeatures/FunctionPointers/fp-as-kernel-arg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: TEMPORARILY_DISABLED
2-
// UNSUPPORTED: cuda || rocm
2+
// UNSUPPORTED: cuda || hip
33
// CUDA does not support the function pointer as kernel argument extension.
44

55
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -D__SYCL_INTERNAL_API %s -o %t.out

SYCL/DeprecatedFeatures/FunctionPointers/pass-fp-through-buffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: TEMPORARILY_DISABLED
2-
// UNSUPPORTED: cuda || rocm
2+
// UNSUPPORTED: cuda || hip
33
// CUDA does not support the function pointer as kernel argument extension.
44

55
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -D__SYCL_INTERNAL_API %s -o %t.out

SYCL/DeviceCodeSplit/aot-gpu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: ocloc, gpu
2-
// UNSUPPORTED: cuda || rocm
2+
// UNSUPPORTED: cuda || hip
33
// CUDA does neither support device code splitting nor SPIR.
44
//
55
// RUN: %clangxx -fsycl -fsycl-device-code-split=per_source \

SYCL/DeviceCodeSplit/split-per-kernel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || rocm
1+
// UNSUPPORTED: cuda || hip
22
// CUDA does not support device code splitting.
33
//
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -fsycl-device-code-split=per_kernel -o %t.out %s

SYCL/DeviceCodeSplit/split-per-source-main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// UNSUPPORTED: cuda || rocm
1+
// UNSUPPORTED: cuda || hip
22
// CUDA does not support device code splitting.
33
//
44
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -fsycl-device-code-split=per_source -I %S/Inputs -o %t.out %s %S/Inputs/split-per-source-second-file.cpp

SYCL/ESIMD/BitonicSortK.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/BitonicSortKv2.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out

SYCL/ESIMD/PrefixSum.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out 20
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out 20

SYCL/ESIMD/Prefix_Local_sum1.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out 20
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out 20

SYCL/ESIMD/Prefix_Local_sum2.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out 20
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out 20

SYCL/ESIMD/Prefix_Local_sum3.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out

SYCL/ESIMD/Stencil.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %HOST_RUN_PLACEHOLDER %t.out
1212
// RUN: %GPU_RUN_PLACEHOLDER %t.out

SYCL/ESIMD/accessor.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl -D_CRT_SECURE_NO_WARNINGS=1 %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/accessor_gather_scatter.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212
//

SYCL/ESIMD/accessor_load_store.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212
//

SYCL/ESIMD/api/esimd_bit_ops.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -fsycl-device-code-split=per_kernel -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212
//

SYCL/ESIMD/api/simd_binop_integer_promotion.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212
//

SYCL/ESIMD/api/simd_memory_access.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212
//

SYCL/ESIMD/api/simd_subscript_operator.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212
//

SYCL/ESIMD/ext_math.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -fsycl %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/fp_args_size/fp_args_char_int_size_192.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -I%S/.. %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/fp_args_size/fp_args_char_int_size_256.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -I%S/.. %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/fp_args_size/fp_args_char_int_size_512.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -I%S/.. %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/fp_args_size/fp_args_char_int_size_64.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -I%S/.. %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/fp_args_size/fp_args_char_int_size_96.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -I%S/.. %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

SYCL/ESIMD/fp_args_size/fp_args_int_size_192.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 || rocm
9+
// UNSUPPORTED: cuda || hip
1010
// RUN: %clangxx -Xclang -fsycl-allow-func-ptr -fsycl -I%S/.. %s -o %t.out
1111
// RUN: %GPU_RUN_PLACEHOLDER %t.out
1212

0 commit comments

Comments
 (0)