Skip to content
Draft
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
15 changes: 15 additions & 0 deletions .github/workflows/ur-build-hw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ on:
required: true
type: string
default: ""
install_igc_driver:
required: false
type: string
default: ""
workflow_dispatch:
inputs:
adapter_name:
Expand Down Expand Up @@ -57,6 +61,10 @@ on:
required: true
type: string
default: ""
install_igc_driver:
required: false
type: string
default: ""

permissions: read-all

Expand Down Expand Up @@ -131,6 +139,13 @@ jobs:
sudo apt-get update
sudo apt-get install -y intel-oneapi-runtime-opencl

- name: Install Intel GPU driver
if: ${{ inputs.install_igc_driver && (inputs.adapter_name == 'OPENCL' || contains(inputs.adapter_name,'L0')) }}
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
sudo -E bash devops/scripts/install_drivers.sh devops/dependencies.json --igfx

- name: Configure Unified Runtime project
# ">" is used to avoid adding "\" at the end of each line; this command is quite long
run: >
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ur-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ jobs:
other_adapter_name: ${{ matrix.other_adapter || '' }}
docker_image: ${{ matrix.docker_image || 'ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps'}}
image_options: ${{ matrix.image_options || '' }}
install_igc_driver: ${{ contains(needs.detect_changes.outputs.filters, 'drivers') }}

# TODO: Enable once the apt package at https://apt.llvm.org/noble/pool/main/l/llvm-toolchain-snapshot/ is updated
# offload_build:
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.40.35563.4",
"version": "25.40.35563.4",
"url": "https://github.com/intel/compute-runtime/releases/tag/25.40.35563.4",
"github_tag": "25.44.36015.5",
"version": "25.44.36015.5",
"url": "https://github.com/intel/compute-runtime/releases/tag/25.44.36015.5",
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"igc": {
"github_tag": "v2.20.3",
"version": "v2.20.3",
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.20.3",
"github_tag": "v2.22.2",
"version": "v2.22.2",
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.22.2",
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"cm": {
Expand Down
3 changes: 3 additions & 0 deletions sycl/test-e2e/SubGroup/reduce.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out

// XFAIL: linux && (arch-intel_gpu_pvc || arch-intel_gpu_bmg_g21) && !igc-dev
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/20757

//==--------------- reduce.cpp - SYCL sub_group reduce test ----*- C++ -*---==//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
Expand Down
Loading