diff --git a/.github/workflows/sycl-nightly.yml b/.github/workflows/sycl-nightly.yml index 28df4a8b8de13..0b464c75d33b6 100644 --- a/.github/workflows/sycl-nightly.yml +++ b/.github/workflows/sycl-nightly.yml @@ -48,8 +48,20 @@ jobs: target_devices: opencl:gpu reset_gpu: true - - name: OCL CPU - runner: '["Linux", "x86-cpu"]' + - name: OCL CPU (AMD) + runner: '["Linux", "amdgpu"]' + image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest + image_options: -u 1001 + target_devices: opencl:cpu + + - name: OCL CPU (Intel/GEN12) + runner: '["Linux", "gen12"]' + image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest + image_options: -u 1001 + target_devices: opencl:cpu + + - name: OCL CPU (Intel/Arc) + runner: '["Linux", "arc"]' image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest image_options: -u 1001 target_devices: opencl:cpu diff --git a/sycl/test-e2e/AddressCast/dynamic_address_cast.cpp b/sycl/test-e2e/AddressCast/dynamic_address_cast.cpp index 0216261547542..10db9a429e53e 100644 --- a/sycl/test-e2e/AddressCast/dynamic_address_cast.cpp +++ b/sycl/test-e2e/AddressCast/dynamic_address_cast.cpp @@ -8,7 +8,8 @@ // Issue with OpenCL CPU runtime implementation of OpGenericCastToPtrExplicit // OpGenericCastToPtr* intrinsics not implemented on AMD or NVIDIA -// UNSUPPORTED: cpu, hip, cuda +// FPGA emulator affected by same issue as OpenCL CPU runtime +// UNSUPPORTED: cpu, hip, cuda, accelerator // RUN: %{build} -o %t.out // RUN: %{run} %t.out #include