Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we do something like image.contains("sycl-rel-") instead? I think that would be more direct.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I considered that, but I thought that having a rule that any containers with E2E binaries inside them require some kind of stable environment, so the GPU driver should be stable as well.
If you don't think that rule is necessarily true I can make this change.

env:
GITHUB_TOKEN: ${{ github.token }}
run: |
Expand Down
12 changes: 6 additions & 6 deletions devops/dependencies.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
3 changes: 3 additions & 0 deletions sycl/test-e2e/HostInteropTask/host-task-two-queues.cpp
Original file line number Diff line number Diff line change
@@ -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 <iostream>
#include <sycl/detail/core.hpp>
#include <vector>
Expand Down
3 changes: 3 additions & 0 deletions sycl/test-e2e/Matrix/element_wise_ops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"