diff --git a/.github/workflows/sycl-linux-matrix-e2e-on-nightly.yml b/.github/workflows/sycl-linux-matrix-e2e-on-nightly.yml index d0642202c9300..3213ffe6dbedb 100644 --- a/.github/workflows/sycl-linux-matrix-e2e-on-nightly.yml +++ b/.github/workflows/sycl-linux-matrix-e2e-on-nightly.yml @@ -29,7 +29,7 @@ jobs: runner: '["Linux", "gen12"]' image: ghcr.io/intel/llvm/sycl_ubuntu2204_nightly:latest image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN - target_devices: ext_oneapi_level_zero:gpu + target_devices: level_zero:gpu reset_gpu: true - name: Intel OCL GPU diff --git a/.github/workflows/sycl-linux-precommit.yml b/.github/workflows/sycl-linux-precommit.yml index 7fc9ec37724fb..1bab6ca91b21d 100644 --- a/.github/workflows/sycl-linux-precommit.yml +++ b/.github/workflows/sycl-linux-precommit.yml @@ -90,7 +90,7 @@ jobs: runner: '["Linux", "gen12"]' image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN - target_devices: ext_oneapi_level_zero:gpu;opencl:gpu;opencl:cpu + target_devices: level_zero:gpu;opencl:gpu;opencl:cpu reset_gpu: true install_drivers: ${{ contains(needs.detect_changes.outputs.filters, 'drivers') }} extra_lit_opts: --param gpu-intel-gen12=True @@ -98,7 +98,7 @@ jobs: runner: '["Linux", "arc"]' image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN - target_devices: ext_oneapi_level_zero:gpu;opencl:gpu + target_devices: level_zero:gpu;opencl:gpu reset_gpu: true install_drivers: ${{ contains(needs.detect_changes.outputs.filters, 'drivers') }} extra_lit_opts: --param matrix-xmx8=True --param gpu-intel-dg2=True @@ -107,7 +107,7 @@ jobs: runner: '["Linux", "arc"]' image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:${{ contains(github.event.pull_request.labels.*.name, 'ci-no-devigc') && 'latest' || 'devigc' }} image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN - target_devices: ext_oneapi_level_zero:gpu;opencl:gpu + target_devices: level_zero:gpu;opencl:gpu reset_gpu: true install_drivers: >- ${{ contains(needs.detect_changes.outputs.filters, 'drivers') || diff --git a/.github/workflows/sycl-linux-run-tests.yml b/.github/workflows/sycl-linux-run-tests.yml index 2f8e62eabd701..a4ec858bcfce7 100644 --- a/.github/workflows/sycl-linux-run-tests.yml +++ b/.github/workflows/sycl-linux-run-tests.yml @@ -105,7 +105,7 @@ on: - 'opencl:cpu' - 'opencl:gpu' - 'opencl:fpga' - - 'ext_oneapi_level_zero:gpu' + - 'level_zero:gpu' - 'ext_oneapi_hip:gpu' tests_selector: type: choice diff --git a/.github/workflows/sycl-nightly.yml b/.github/workflows/sycl-nightly.yml index d87262b3d3cca..9c4aee9643cbc 100644 --- a/.github/workflows/sycl-nightly.yml +++ b/.github/workflows/sycl-nightly.yml @@ -48,7 +48,7 @@ jobs: runner: '["Linux", "gen12"]' image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN - target_devices: ext_oneapi_level_zero:gpu + target_devices: level_zero:gpu reset_gpu: true tests_selector: e2e extra_lit_opts: --param gpu-intel-gen12=True diff --git a/.github/workflows/sycl-post-commit.yml b/.github/workflows/sycl-post-commit.yml index 664389a132109..0149a05621b33 100644 --- a/.github/workflows/sycl-post-commit.yml +++ b/.github/workflows/sycl-post-commit.yml @@ -52,7 +52,7 @@ jobs: - name: Intel GEN12 Graphics with Level Zero runner: '["Linux", "gen12"]' extra_lit_opts: --param gpu-intel-gen12=True - target_devices: ext_oneapi_level_zero:gpu;opencl:fpga + target_devices: level_zero:gpu;opencl:fpga - name: Intel Arc A-Series Graphics with Level Zero runner: '["Linux", "arc"]' extra_lit_opts: --param matrix-xmx8=True --param gpu-intel-dg2=True @@ -78,7 +78,7 @@ jobs: runner: ${{ matrix. runner }} image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN - target_devices: ${{ matrix.target_devices || 'ext_oneapi_level_zero:gpu' }} + target_devices: ${{ matrix.target_devices || 'level_zero:gpu' }} reset_gpu: true extra_lit_opts: ${{ matrix.extra_lit_opts }} diff --git a/.github/workflows/sycl-windows-run-tests.yml b/.github/workflows/sycl-windows-run-tests.yml index 9315d70ff49fb..4f87de76f807b 100644 --- a/.github/workflows/sycl-windows-run-tests.yml +++ b/.github/workflows/sycl-windows-run-tests.yml @@ -79,7 +79,7 @@ jobs: shell: cmd run: | mkdir build-e2e - cmake -GNinja -B build-e2e -S.\llvm\sycl\test-e2e -DSYCL_TEST_E2E_TARGETS="ext_oneapi_level_zero:gpu" -DCMAKE_CXX_COMPILER="clang++" -DLEVEL_ZERO_LIBS_DIR="D:\github\level-zero_win-sdk\lib" -DLEVEL_ZERO_INCLUDE="D:\github\level-zero_win-sdk\include" -DLLVM_LIT="..\llvm\llvm\utils\lit\lit.py" + cmake -GNinja -B build-e2e -S.\llvm\sycl\test-e2e -DSYCL_TEST_E2E_TARGETS="level_zero:gpu" -DCMAKE_CXX_COMPILER="clang++" -DLEVEL_ZERO_LIBS_DIR="D:\github\level-zero_win-sdk\lib" -DLEVEL_ZERO_INCLUDE="D:\github\level-zero_win-sdk\include" -DLLVM_LIT="..\llvm\llvm\utils\lit\lit.py" - name: Run End-to-End tests shell: bash run: |