Skip to content

Commit 9749efa

Browse files
[SYCL][CI] Update GPU driver dependencies (#6082)
Note, there is some difference in which docker image is used by the CI that can result in the CPU runtime being at /opt/runtimes or /runtimes. So I'm also expanding the test suite environment to support both paths. That will allow this PR to pass tests, as well as others that may depend on newly made docker images, until we can better understand the reasons for the differences. Signed-off-by: Chris Perkins <chris.perkins@intel.com>
1 parent fd2aa65 commit 9749efa

File tree

2 files changed

+23
-18
lines changed

2 files changed

+23
-18
lines changed

devops/actions/llvm_test_suite/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,16 @@ runs:
8484
export LIT_OPTS="-v --no-progress-bar --show-unsupported --time-tests -o $PWD/build/results_${{ inputs.results_name_suffix }}.json"
8585
if [ -e /runtimes/oneapi-tbb/env/vars.sh ]; then
8686
source /runtimes/oneapi-tbb/env/vars.sh;
87+
elif [ -e /opt/runtimes/oneapi-tbb/env/vars.sh ]; then
88+
source /opt/runtimes/oneapi-tbb/env/vars.sh;
89+
else
90+
echo "no TBB vars in /opt/runtimes or /runtimes";
8791
fi
8892
# TODO remove workaround of FPGA emu bug
8993
mkdir -p icd
9094
echo /usr/lib/x86_64-linux-gnu/intel-opencl/libigdrcl.so > icd/gpu.icd
9195
echo /runtimes/oclcpu/x64/libintelocl.so > icd/cpu.icd
96+
echo /opt/runtimes/oclcpu/x64/libintelocl.so > icd/cpu2.icd
9297
export OCL_ICD_VENDORS=$PWD/icd
9398
echo "::group::sycl-ls --verbose"
9499
sycl-ls --verbose

devops/dependencies.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"linux": {
33
"compute_runtime": {
4-
"github_tag": "22.10.22597",
5-
"version": "22.10.22597",
6-
"url": "https://github.com/intel/compute-runtime/releases/tag/22.10.22597",
4+
"github_tag": "22.15.22905",
5+
"version": "22.15.22905",
6+
"url": "https://github.com/intel/compute-runtime/releases/tag/22.15.22905",
77
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
88
},
99
"igc": {
10-
"github_tag": "igc-1.0.10409",
11-
"version": "1.0.10409",
12-
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/igc-1.0.10409",
10+
"github_tag": "igc-1.0.10840",
11+
"version": "1.0.10840",
12+
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/igc-1.0.10840",
1313
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
1414
},
1515
"cm": {
16-
"github_tag": "cmclang-1.0.120",
17-
"version": "1.0.120",
18-
"url": "https://github.com/intel/cm-compiler/releases/tag/cmclang-1.0.120",
16+
"github_tag": "cmclang-1.0.144",
17+
"version": "1.0.144",
18+
"url": "https://github.com/intel/cm-compiler/releases/tag/cmclang-1.0.144",
1919
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
2020
},
2121
"tbb": {
@@ -42,21 +42,21 @@
4242
},
4343
"linux_staging": {
4444
"compute_runtime": {
45-
"github_tag": "22.11.22682",
46-
"version": "22.11.22682",
47-
"url": "https://github.com/intel/compute-runtime/releases/tag/22.11.22682",
45+
"github_tag": "22.15.22905",
46+
"version": "22.15.22905",
47+
"url": "https://github.com/intel/compute-runtime/releases/tag/22.15.22905",
4848
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
4949
},
5050
"igc": {
51-
"github_tag": "igc-1.0.10409",
52-
"version": "1.0.10409",
53-
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/igc-1.0.10409",
51+
"github_tag": "igc-1.0.10840",
52+
"version": "1.0.10840",
53+
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/igc-1.0.10840",
5454
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
5555
},
5656
"cm": {
57-
"github_tag": "cmclang-1.0.126",
58-
"version": "1.0.126",
59-
"url": "https://github.com/intel/cm-compiler/releases/tag/cmclang-1.0.126",
57+
"github_tag": "cmclang-1.0.144",
58+
"version": "1.0.144",
59+
"url": "https://github.com/intel/cm-compiler/releases/tag/cmclang-1.0.144",
6060
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
6161
},
6262
"tbb": {

0 commit comments

Comments
 (0)