Skip to content

Commit 09df9a6

Browse files
bb-syclactions-usersarnex
authored
[GHA] Uplift Linux GPU RT version to 24.45.31740.9 (#16312)
Scheduled drivers uplift --------- Signed-off-by: Sarnie, Nick <[email protected]> Co-authored-by: GitHub Actions <[email protected]> Co-authored-by: Sarnie, Nick <[email protected]>
1 parent 43a0178 commit 09df9a6

File tree

9 files changed

+35
-36
lines changed

9 files changed

+35
-36
lines changed

.github/workflows/sycl-linux-precommit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ jobs:
9292
reset_intel_gpu: false
9393
- name: Intel
9494
runner: '["Linux", "gen12"]'
95-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
95+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
9696
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
9797
target_devices: level_zero:gpu;opencl:gpu;opencl:cpu
9898
reset_intel_gpu: true
9999
extra_lit_opts: --param gpu-intel-gen12=True
100100
- name: E2E tests on Intel Arc A-Series Graphics
101101
runner: '["Linux", "arc"]'
102-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
102+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
103103
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
104104
target_devices: level_zero:gpu;opencl:gpu
105105
reset_intel_gpu: true
@@ -161,12 +161,12 @@ jobs:
161161
include:
162162
- name: Intel GEN12 Graphics system
163163
runner: '["Linux", "gen12"]'
164-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
164+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
165165
image_extra_opts: --device=/dev/dri
166166
reset_intel_gpu: true
167167
- name: Intel Arc A-Series Graphics system
168168
runner: '["Linux", "arc"]'
169-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
169+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
170170
image_extra_opts: --device=/dev/dri
171171
reset_intel_gpu: true
172172
- name: AMD system

.github/workflows/sycl-nightly.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Intel L0 GPU
5454
runner: '["Linux", "gen12"]'
55-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
55+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
5656
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
5757
target_devices: level_zero:gpu
5858
reset_intel_gpu: true
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Intel OCL GPU
6363
runner: '["Linux", "gen12"]'
64-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
64+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
6565
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
6666
target_devices: opencl:gpu
6767
reset_intel_gpu: true
@@ -70,35 +70,35 @@ jobs:
7070

7171
- name: OCL CPU (AMD)
7272
runner: '["Linux", "amdgpu"]'
73-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
73+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
7474
image_options: -u 1001
7575
target_devices: opencl:cpu
7676
tests_selector: e2e
7777

7878
- name: OCL CPU (Intel/GEN12)
7979
runner: '["Linux", "gen12"]'
80-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
80+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
8181
image_options: -u 1001 --privileged --cap-add SYS_ADMIN
8282
target_devices: opencl:cpu
8383
tests_selector: e2e
8484

8585
- name: OCL CPU (Intel/Arc)
8686
runner: '["Linux", "arc"]'
87-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
87+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
8888
image_options: -u 1001
8989
target_devices: opencl:cpu
9090
tests_selector: e2e
9191

9292
- name: SYCL-CTS on OCL CPU
9393
runner: '["Linux", "gen12"]'
94-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
94+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
9595
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
9696
target_devices: opencl:cpu
9797
tests_selector: cts
9898

9999
- name: SYCL-CTS on L0 gen12
100100
runner: '["Linux", "gen12"]'
101-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
101+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
102102
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
103103
target_devices: level_zero:gpu
104104
tests_selector: cts
@@ -229,7 +229,7 @@ jobs:
229229
username: ${{ github.repository_owner }}
230230
password: ${{ secrets.GITHUB_TOKEN }}
231231
build-args: |
232-
base_image=ghcr.io/intel/llvm/ubuntu2204_intel_drivers
232+
base_image=ghcr.io/intel/llvm/ubuntu2404_intel_drivers
233233
base_tag=latest
234234
tags: |
235235
ghcr.io/${{ github.repository }}/sycl_ubuntu2204_nightly:${{ github.sha }}

.github/workflows/sycl-post-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
with:
8383
name: ${{ matrix.name }}
8484
runner: ${{ matrix. runner }}
85-
image: ${{ matrix.image || 'ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest' }}
85+
image: ${{ matrix.image || 'ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest' }}
8686
image_options: ${{ matrix.image_options || '-u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN' }}
8787
target_devices: ${{ matrix.target_devices || 'level_zero:gpu' }}
8888
reset_intel_gpu: ${{ matrix.reset_intel_gpu }}

.github/workflows/sycl-rel-nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ jobs:
5454
include:
5555
- name: AMD/HIP
5656
runner: '["Linux", "amdgpu"]'
57-
image: ghcr.io/intel/llvm/ubuntu2204_build:latest
57+
image: ghcr.io/intel/llvm/ubuntu2404_build:latest
5858
image_options: -u 1001 --device=/dev/dri --device=/dev/kfd
5959
target_devices: ext_oneapi_hip:gpu
6060
tests_selector: e2e
6161

6262
- name: Intel L0 GPU
6363
runner: '["Linux", "gen12"]'
64-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
64+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
6565
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
6666
target_devices: level_zero:gpu
6767
reset_intel_gpu: true
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Intel OCL GPU
7272
runner: '["Linux", "gen12"]'
73-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
73+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
7474
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
7575
target_devices: opencl:gpu
7676
reset_intel_gpu: true
@@ -79,21 +79,21 @@ jobs:
7979

8080
- name: Intel OCL CPU
8181
runner: '["Linux", "gen12"]'
82-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
82+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
8383
image_options: -u 1001 --privileged --cap-add SYS_ADMIN
8484
target_devices: opencl:cpu
8585
tests_selector: e2e
8686

8787
- name: SYCL-CTS on OCL CPU
8888
runner: '["Linux", "gen12"]'
89-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
89+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
9090
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
9191
target_devices: opencl:cpu
9292
tests_selector: cts
9393

9494
- name: SYCL-CTS on L0 gen12
9595
runner: '["Linux", "gen12"]'
96-
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
96+
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:latest
9797
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
9898
target_devices: level_zero:gpu
9999
tests_selector: cts

devops/dependencies.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"linux": {
33
"compute_runtime": {
4-
"github_tag": "24.39.31294.12",
5-
"version": "24.39.31294.12",
6-
"url": "https://github.com/intel/compute-runtime/releases/tag/24.39.31294.12",
4+
"github_tag": "24.45.31740.9",
5+
"version": "24.45.31740.9",
6+
"url": "https://github.com/intel/compute-runtime/releases/tag/24.45.31740.9",
77
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
88
},
99
"igc": {
10-
"github_tag": "igc-1.0.17791.9",
11-
"version": "1.0.17791.9",
12-
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/igc-1.0.17791.9",
10+
"github_tag": "v2.1.12",
11+
"version": "2.1.12",
12+
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.1.12",
1313
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
1414
},
1515
"cm": {
@@ -19,9 +19,9 @@
1919
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
2020
},
2121
"level_zero": {
22-
"github_tag": "v1.18.5",
23-
"version": "v1.18.5",
24-
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.18.5",
22+
"github_tag": "v1.19.2",
23+
"version": "v1.19.2",
24+
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.19.2",
2525
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
2626
},
2727
"tbb": {

devops/scripts/install_drivers.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,7 @@ InstallIGFX () {
120120
#
121121
# Of course, this also installed the libopencl-clang so that we can copy and use later as a temporariy workaround.
122122
IS_IGC_DEV=$(CheckIGCdevTag $IGCTAG)
123-
UBUNTU_VER="u22\.04"
124-
if [ "$IS_IGC_DEV" == "Yes" ] || [ "$L0_TAG" == "latest" ]; then
125-
UBUNTU_VER="u24\.04"
126-
fi
123+
UBUNTU_VER="u24\.04"
127124
get_release intel/intel-graphics-compiler $IGC_TAG \
128125
| grep ".*deb" \
129126
| wget -qi -
@@ -143,7 +140,7 @@ InstallIGFX () {
143140
get_release oneapi-src/level-zero $L0_TAG \
144141
| grep ".*$UBUNTU_VER.*deb" \
145142
| wget -qi -
146-
dpkg -i *.deb && rm *.deb *.sum
143+
dpkg -i --force-overwrite *.deb && rm *.deb *.sum
147144
mkdir -p /usr/local/lib/igc/
148145
echo "$IGC_TAG" > /usr/local/lib/igc/IGCTAG.txt
149146
if [ "$IS_IGC_DEV" == "Yes" ]; then

sycl/test-e2e/ESIMD/PerformanceTests/invoke_simd_smoke.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
// XFAIL: igc-dev
8+
// XFAIL: gpu-intel-dg2
99
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16388
1010
// REQUIRES: gpu-intel-dg2 && level_zero
1111
// UNSUPPORTED: windows

sycl/test-e2e/OnlineCompiler/online_compiler_L0.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: level_zero, level_zero_dev_kit, cm-compiler
2-
2+
// XFAIL: gpu
3+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16406
34
// RUN: %{build} -Wno-error=deprecated-declarations -DRUN_KERNELS %level_zero_options -o %t.out
45
// RUN: %{run} %t.out
56

sycl/test-e2e/OnlineCompiler/online_compiler_OpenCL.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: opencl, opencl_icd, cm-compiler
2-
2+
// XFAIL: gpu || cpu
3+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16406
34
// RUN: %{build} -Wno-error=deprecated-declarations -DRUN_KERNELS %opencl_lib -o %t.out
45
// RUN: %{run} %t.out
56

0 commit comments

Comments
 (0)