diff --git a/SYCL/Basic/built-ins.cpp b/SYCL/Basic/built-ins.cpp index e0f0be0d98..8d247adb35 100644 --- a/SYCL/Basic/built-ins.cpp +++ b/SYCL/Basic/built-ins.cpp @@ -8,9 +8,6 @@ // RUN: %GPU_RUN_PLACEHOLDER %t_nonvar.out %GPU_CHECK_PLACEHOLDER // RUN: %ACC_RUN_PLACEHOLDER %t_nonvar.out %ACC_CHECK_PLACEHOLDER -// CUDA does not support printf. -// UNSUPPORTED: cuda -// // Hits an assertion with AMD: // XFAIL: hip_amd diff --git a/SYCL/Basic/handler/handler_mem_op.cpp b/SYCL/Basic/handler/handler_mem_op.cpp index 9f63401115..dd825a1413 100644 --- a/SYCL/Basic/handler/handler_mem_op.cpp +++ b/SYCL/Basic/handler/handler_mem_op.cpp @@ -2,8 +2,6 @@ // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out -// UNSUPPORTED: cuda - //==- handler.cpp - SYCL handler explicit memory operations test -*- C++-*--==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. diff --git a/SYCL/Basic/intel-ext-device.cpp b/SYCL/Basic/intel-ext-device.cpp index 67222298a5..b11e4f2af3 100644 --- a/SYCL/Basic/intel-ext-device.cpp +++ b/SYCL/Basic/intel-ext-device.cpp @@ -3,7 +3,6 @@ // RUN: env SYCL_DEVICE_FILTER=opencl:gpu %t.out // // REQUIRES: gpu -// UNSUPPORTED: cuda // UNSUPPORTED: hip // Temporarily disable on L0 due to fails in CI diff --git a/SYCL/Basic/kernel_bundle/kernel_bundle_api.cpp b/SYCL/Basic/kernel_bundle/kernel_bundle_api.cpp index cb4e59c8a1..19977ade23 100644 --- a/SYCL/Basic/kernel_bundle/kernel_bundle_api.cpp +++ b/SYCL/Basic/kernel_bundle/kernel_bundle_api.cpp @@ -4,8 +4,7 @@ // RUN: %clangxx -DSYCL_DISABLE_FALLBACK_ASSERT=1 -fsycl -fsycl-device-code-split=per_kernel -fsycl-targets=%sycl_triple %s -o %t.out // RUN: env SYCL_PI_TRACE=2 %CPU_RUN_PLACEHOLDER %t.out %CPU_CHECK_PLACEHOLDER // -// -fsycl-device-code-split is not supported for cuda -// UNSUPPORTED: cuda || hip +// UNSUPPORTED: hip #include #include diff --git a/SYCL/Basic/query_emulate_subdevice.cpp b/SYCL/Basic/query_emulate_subdevice.cpp index 003841b7cd..c61f51b459 100644 --- a/SYCL/Basic/query_emulate_subdevice.cpp +++ b/SYCL/Basic/query_emulate_subdevice.cpp @@ -2,7 +2,7 @@ // RUN: env CreateMultipleSubDevices=2 EnableTimestampPacket=1 \ // RUN: NEOReadDebugKeys=1 SYCL_DEVICE_FILTER="gpu" %t.out -// UNSUPPORTED: gpu-intel-dg1,cuda,hip +// UNSUPPORTED: gpu-intel-dg1,hip // Temporarily disable on L0 due to fails in CI // UNSUPPORTED: level_zero #include "query.hpp" diff --git a/SYCL/DeprecatedFeatures/deprecated_intel_ext_device.cpp b/SYCL/DeprecatedFeatures/deprecated_intel_ext_device.cpp index 5012580023..f724e88969 100644 --- a/SYCL/DeprecatedFeatures/deprecated_intel_ext_device.cpp +++ b/SYCL/DeprecatedFeatures/deprecated_intel_ext_device.cpp @@ -3,7 +3,6 @@ // RUN: env SYCL_DEVICE_FILTER=opencl:gpu %t.out // // REQUIRES: gpu -// UNSUPPORTED: cuda // UNSUPPORTED: hip // Temporarily disable on L0 due to fails in CI // UNSUPPORTED: level_zero @@ -120,4 +119,4 @@ int main(int argc, char **argv) { } std::cout << "Passed!" << std::endl; return 0; -} \ No newline at end of file +} diff --git a/SYCL/DeviceLib/ITTAnnotations/atomic.cpp b/SYCL/DeviceLib/ITTAnnotations/atomic.cpp index 0c14227cfb..7c61c69b01 100644 --- a/SYCL/DeviceLib/ITTAnnotations/atomic.cpp +++ b/SYCL/DeviceLib/ITTAnnotations/atomic.cpp @@ -1,4 +1,4 @@ -// UNSUPPORTED: cuda || hip +// UNSUPPORTED: hip // RUN: %clangxx -fsycl -fsycl-instrument-device-code %s -o %t.out \ // RUN: -fsycl-targets=%sycl_triple diff --git a/SYCL/DeviceLib/ITTAnnotations/barrier.cpp b/SYCL/DeviceLib/ITTAnnotations/barrier.cpp index 1f65b70290..35ff092a88 100644 --- a/SYCL/DeviceLib/ITTAnnotations/barrier.cpp +++ b/SYCL/DeviceLib/ITTAnnotations/barrier.cpp @@ -1,4 +1,4 @@ -// UNSUPPORTED: cuda || hip +// UNSUPPORTED: hip // RUN: %clangxx -fsycl -fsycl-instrument-device-code %s -o %t.out \ // RUN: -fsycl-targets=%sycl_triple diff --git a/SYCL/Regression/implicit_kernel_bundle_image_filtering.cpp b/SYCL/Regression/implicit_kernel_bundle_image_filtering.cpp index 1ec00ea54f..eee4c0055e 100644 --- a/SYCL/Regression/implicit_kernel_bundle_image_filtering.cpp +++ b/SYCL/Regression/implicit_kernel_bundle_image_filtering.cpp @@ -3,8 +3,8 @@ // RUN: env SYCL_PI_TRACE=2 %GPU_RUN_PLACEHOLDER %t.out 2>&1 %GPU_CHECK_PLACEHOLDER // RUN: env SYCL_PI_TRACE=2 %ACC_RUN_PLACEHOLDER %t.out 2>&1 %ACC_CHECK_PLACEHOLDER -// JIT compilation path is not taken on CUDA and HIP backend. -// UNSUPPORTED: cuda || hip +// JIT compilation path is not taken on HIP backend. +// UNSUPPORTED: hip // This tests checks that implicitly created kernel_bundles (i.e. through // setting a specialization ID from host) only builds the device image diff --git a/SYCL/SubGroup/reduce_spirv13_fp64.cpp b/SYCL/SubGroup/reduce_spirv13_fp64.cpp index 625791e9f1..9d1f75e2de 100644 --- a/SYCL/SubGroup/reduce_spirv13_fp64.cpp +++ b/SYCL/SubGroup/reduce_spirv13_fp64.cpp @@ -1,4 +1,4 @@ -// UNSUPPORTED: cuda || hip +// UNSUPPORTED: hip // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out diff --git a/SYCL/SubGroup/scan_spirv13_fp64.cpp b/SYCL/SubGroup/scan_spirv13_fp64.cpp index e60c565631..ee521e51db 100644 --- a/SYCL/SubGroup/scan_spirv13_fp64.cpp +++ b/SYCL/SubGroup/scan_spirv13_fp64.cpp @@ -1,4 +1,4 @@ -// UNSUPPORTED: cuda || hip +// UNSUPPORTED: hip // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out diff --git a/SYCL/USM/dep_events.cpp b/SYCL/USM/dep_events.cpp index 32890ac76c..8994e4ed2b 100644 --- a/SYCL/USM/dep_events.cpp +++ b/SYCL/USM/dep_events.cpp @@ -5,11 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// -// Prefetch operations for cuda and windows currently does not work -// cuMemPrefetchAsync returns cudaErrorInvalidDevice for this OS -// Test is temporarily disabled until this is resolved -// UNSUPPORTED: cuda && windows -// + // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t1.out // RUN: %CPU_RUN_PLACEHOLDER %t1.out // RUN: %GPU_RUN_PLACEHOLDER %t1.out diff --git a/SYCL/USM/prefetch.cpp b/SYCL/USM/prefetch.cpp index 4e49f5bd65..86af74ec80 100644 --- a/SYCL/USM/prefetch.cpp +++ b/SYCL/USM/prefetch.cpp @@ -5,11 +5,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// -// Prefetch operations for cuda and windows currently does not work -// cuMemPrefetchAsync returns cudaErrorInvalidDevice for this OS -// Test is temporarily disabled until this is resolved -// UNSUPPORTED: cuda && windows -// + // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t1.out // RUN: %CPU_RUN_PLACEHOLDER %t1.out // RUN: %GPU_RUN_PLACEHOLDER %t1.out