From fd72eeb7a0fe476510f0bdabff8429ec3b5a901f Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 23 Sep 2025 03:15:23 +0000 Subject: [PATCH 1/2] [GHA] Uplift Linux GPU RT version to 25.35.35096.9 --- devops/dependencies.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/devops/dependencies.json b/devops/dependencies.json index 2fb35d779bba2..d1e75343fc7e0 100644 --- a/devops/dependencies.json +++ b/devops/dependencies.json @@ -1,15 +1,15 @@ { "linux": { "compute_runtime": { - "github_tag": "25.31.34666.3", - "version": "25.31.34666.3", - "url": "https://github.com/intel/compute-runtime/releases/tag/25.31.34666.3", + "github_tag": "25.35.35096.9", + "version": "25.35.35096.9", + "url": "https://github.com/intel/compute-runtime/releases/tag/25.35.35096.9", "root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu" }, "igc": { - "github_tag": "v2.16.0", - "version": "v2.16.0", - "url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.16.0", + "github_tag": "v2.18.5", + "version": "v2.18.5", + "url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.18.5", "root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu" }, "cm": { From 18fd16f7a1fed4426d532fcfafd00adb1349d32e Mon Sep 17 00:00:00 2001 From: "Sarnie, Nick" Date: Wed, 24 Sep 2025 11:06:13 -0700 Subject: [PATCH 2/2] maybe fix tests Signed-off-by: Sarnie, Nick --- .github/workflows/sycl-linux-run-tests.yml | 2 +- sycl/test-e2e/HostInteropTask/host-task-two-queues.cpp | 3 +++ sycl/test-e2e/Matrix/element_wise_ops.cpp | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sycl-linux-run-tests.yml b/.github/workflows/sycl-linux-run-tests.yml index ac6195e7b8776..edec6796831bc 100644 --- a/.github/workflows/sycl-linux-run-tests.yml +++ b/.github/workflows/sycl-linux-run-tests.yml @@ -235,7 +235,7 @@ jobs: - name: Reset Intel GPU uses: ./devops/actions/reset_gpu - name: Install drivers - if: inputs.install_igc_driver == 'true' || inputs.install_dev_igc_driver == 'true' + if: inputs.e2e_binaries_artifact != 'in-container' && (inputs.install_igc_driver == 'true' || inputs.install_dev_igc_driver == 'true') env: GITHUB_TOKEN: ${{ github.token }} run: | diff --git a/sycl/test-e2e/HostInteropTask/host-task-two-queues.cpp b/sycl/test-e2e/HostInteropTask/host-task-two-queues.cpp index 7a4556a1262f5..884bf3eeb72fa 100644 --- a/sycl/test-e2e/HostInteropTask/host-task-two-queues.cpp +++ b/sycl/test-e2e/HostInteropTask/host-task-two-queues.cpp @@ -1,6 +1,9 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out +// UNSUPPORTED: !igc-dev && arch-intel_gpu_pvc +// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20193 + #include #include #include diff --git a/sycl/test-e2e/Matrix/element_wise_ops.cpp b/sycl/test-e2e/Matrix/element_wise_ops.cpp index d3876c7b811ca..9b6909cbd8dc7 100644 --- a/sycl/test-e2e/Matrix/element_wise_ops.cpp +++ b/sycl/test-e2e/Matrix/element_wise_ops.cpp @@ -15,5 +15,8 @@ // XFAIL: arch-intel_gpu_ptl_u || arch-intel_gpu_ptl_h // XFAIL-TRACKER: CMPLRLLVM-66710 +// XFAIL: linux && arch-intel_gpu_bmg_g21 +// XFAIL-TRACKER: https://github.com/intel/llvm/issues/20190 + #include "common.hpp" #include "element_wise_ops_impl.hpp"