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

Commit 94ae3e0

Browse files
committed
Merge remote-tracking branch 'upstream/intel' into filter
2 parents d86183d + 9a1832b commit 94ae3e0

File tree

196 files changed

+339
-294
lines changed

Some content is hidden

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

196 files changed

+339
-294
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/buffer/buffer.cpp

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414
//
1515
//===----------------------------------------------------------------------===//
1616

17-
#include <CL/sycl.hpp>
17+
#include <sycl/sycl.hpp>
18+
1819
#include <cassert>
1920
#include <memory>
2021

21-
using namespace cl::sycl;
22+
using namespace sycl;
2223

2324
int main() {
2425
int data = 5;
@@ -506,7 +507,7 @@ int main() {
506507
{
507508
size_t size = 32;
508509
const size_t dims = 1;
509-
cl::sycl::range<dims> r(size);
510+
sycl::range<dims> r(size);
510511

511512
std::shared_ptr<bool> bool_shrd(new bool[size],
512513
[](bool *data) { delete[] data; });
@@ -522,18 +523,18 @@ int main() {
522523
int_vector.reserve(size);
523524
double_vector.reserve(size);
524525

525-
cl::sycl::queue Queue;
526+
sycl::queue Queue;
526527
std::mutex m;
527528
{
528-
cl::sycl::buffer<bool, dims> buf_bool_shrd(
529+
sycl::buffer<bool, dims> buf_bool_shrd(
529530
bool_shrd, r,
530-
cl::sycl::property_list{cl::sycl::property::buffer::use_mutex(m)});
531-
cl::sycl::buffer<int, dims> buf_int_shrd(
531+
sycl::property_list{sycl::property::buffer::use_mutex(m)});
532+
sycl::buffer<int, dims> buf_int_shrd(
532533
int_shrd, r,
533-
cl::sycl::property_list{cl::sycl::property::buffer::use_mutex(m)});
534-
cl::sycl::buffer<double, dims> buf_double_shrd(
534+
sycl::property_list{sycl::property::buffer::use_mutex(m)});
535+
sycl::buffer<double, dims> buf_double_shrd(
535536
double_shrd, r,
536-
cl::sycl::property_list{cl::sycl::property::buffer::use_mutex(m)});
537+
sycl::property_list{sycl::property::buffer::use_mutex(m)});
537538
m.lock();
538539
std::fill(bool_shrd.get(), (bool_shrd.get() + size), bool());
539540
std::fill(int_shrd.get(), (int_shrd.get() + size), int());
@@ -547,14 +548,14 @@ int main() {
547548
buf_int_shrd.set_write_back(true);
548549
buf_double_shrd.set_write_back(true);
549550

550-
Queue.submit([&](cl::sycl::handler &cgh) {
551+
Queue.submit([&](sycl::handler &cgh) {
551552
auto Accessor_bool =
552-
buf_bool_shrd.get_access<cl::sycl::access::mode::write>(cgh);
553+
buf_bool_shrd.get_access<sycl::access::mode::write>(cgh);
553554
auto Accessor_int =
554-
buf_int_shrd.get_access<cl::sycl::access::mode::write>(cgh);
555+
buf_int_shrd.get_access<sycl::access::mode::write>(cgh);
555556
auto Accessor_double =
556-
buf_double_shrd.get_access<cl::sycl::access::mode::write>(cgh);
557-
cgh.parallel_for<class FillBuffer>(r, [=](cl::sycl::id<1> WIid) {
557+
buf_double_shrd.get_access<sycl::access::mode::write>(cgh);
558+
cgh.parallel_for<class FillBuffer>(r, [=](sycl::id<1> WIid) {
558559
Accessor_bool[WIid] = true;
559560
Accessor_int[WIid] = 3;
560561
Accessor_double[WIid] = 7.5;
@@ -650,20 +651,18 @@ int main() {
650651
{
651652
std::allocator<float8> buf_alloc;
652653
std::shared_ptr<float8> data(new float8[8], [](float8 *p) { delete[] p; });
653-
cl::sycl::buffer<float8, 1, std::allocator<float8>> b(
654-
data, cl::sycl::range<1>(8), buf_alloc);
654+
sycl::buffer<float8, 1, std::allocator<float8>> b(data, sycl::range<1>(8),
655+
buf_alloc);
655656
}
656657

657658
{
658659
constexpr int Size = 6;
659-
cl::sycl::buffer<char, 1> Buf_1(Size);
660-
cl::sycl::buffer<char, 1> Buf_2(Size / 2);
660+
sycl::buffer<char, 1> Buf_1(Size);
661+
sycl::buffer<char, 1> Buf_2(Size / 2);
661662

662663
{
663-
auto AccA =
664-
Buf_1.get_access<cl::sycl::access::mode::read_write>(Size / 2);
665-
auto AccB =
666-
Buf_2.get_access<cl::sycl::access::mode::read_write>(Size / 2);
664+
auto AccA = Buf_1.get_access<sycl::access::mode::read_write>(Size / 2);
665+
auto AccB = Buf_2.get_access<sycl::access::mode::read_write>(Size / 2);
667666
assert(AccA.get_size() == AccB.get_size());
668667
assert(AccA.get_range() == AccB.get_range());
669668
assert(AccA.get_count() == AccB.get_count());

SYCL/Basic/free_function_queries/free_function_queries.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//
1313
//===------------------------------------------------------------------------===//
1414

15-
#include <CL/sycl.hpp>
15+
#include <sycl/sycl.hpp>
1616

1717
#include <cassert>
1818
#include <iostream>
@@ -31,7 +31,7 @@ int main() {
3131
sycl::buffer<int> buf(data, sycl::range<1>(n));
3232
sycl::buffer<int> results_buf(results, sycl::range<1>(checks_number));
3333
sycl::queue q;
34-
q.submit([&](cl::sycl::handler &cgh) {
34+
q.submit([&](sycl::handler &cgh) {
3535
sycl::accessor<int, 1, sycl::access::mode::write,
3636
sycl::access::target::global_buffer>
3737
acc(buf.get_access<sycl::access::mode::write>(cgh));
@@ -65,7 +65,7 @@ int main() {
6565
sycl::buffer<int> buf(data, sycl::range<1>(n));
6666
sycl::buffer<int> results_buf(results, sycl::range<1>(checks_number));
6767
sycl::queue q;
68-
q.submit([&](cl::sycl::handler &cgh) {
68+
q.submit([&](sycl::handler &cgh) {
6969
sycl::accessor<int, 1, sycl::access::mode::write,
7070
sycl::access::target::global_buffer>
7171
acc(buf.get_access<sycl::access::mode::write>(cgh));
@@ -100,7 +100,7 @@ int main() {
100100
sycl::buffer<int> results_buf(results, sycl::range<1>(checks_number));
101101
sycl::queue q;
102102
sycl::id<1> offset(1);
103-
q.submit([&](cl::sycl::handler &cgh) {
103+
q.submit([&](sycl::handler &cgh) {
104104
sycl::accessor<int, 1, sycl::access::mode::write,
105105
sycl::access::target::global_buffer>
106106
acc(buf.get_access<sycl::access::mode::write>(cgh));
@@ -134,7 +134,7 @@ int main() {
134134
sycl::buffer<int> results_buf(results, sycl::range<1>(checks_number));
135135
sycl::queue q;
136136
sycl::nd_range<1> NDR(sycl::range<1>{n}, sycl::range<1>{2});
137-
q.submit([&](cl::sycl::handler &cgh) {
137+
q.submit([&](sycl::handler &cgh) {
138138
sycl::accessor<int, 1, sycl::access::mode::write,
139139
sycl::access::target::global_buffer>
140140
acc(buf.get_access<sycl::access::mode::write>(cgh));

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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44

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

10-
#include <CL/sycl.hpp>
9+
#include <sycl/sycl.hpp>
1110

12-
using namespace cl::sycl;
11+
using namespace sycl;
1312

1413
using accessorPixelT = sycl::float4;
1514
using dataPixelT = uint32_t;

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/interop/get_native_ze.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ int main() {
2727

2828
ze_kernel_handle_t Handle = Kernel.get_native<BE>();
2929

30-
ze_kernel_properties_t KernelProperties;
30+
ze_kernel_properties_t KernelProperties = {
31+
ZE_STRUCTURE_TYPE_KERNEL_PROPERTIES, 0};
3132
ze_result_t Err = zeKernelGetProperties(Handle, &KernelProperties);
3233
assert(Err == ZE_RESULT_SUCCESS);
3334

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

0 commit comments

Comments
 (0)