Skip to content

Commit 21a5987

Browse files
authored
[CI] Bump L0 version and fix dpkg dep issue (#18036)
Level Zero had a new full-quality release and it has binaries so we can use it now. Also, we've had this issue forever: ``` The following packages have unmet dependencies: intel-igc-cm : Depends: intel-igc-core (>= 1.0.9995) but it is not installabl ``` The problem was the prerelease version of CM has bad dependencies, use the latest released version which works fine, and we don't really use CM anyway. Formatter made me fix some unrelated areas again. --------- Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 60531f9 commit 21a5987

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

devops/dependencies.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
1414
},
1515
"cm": {
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",
16+
"github_tag": "cmclang-1.0.119",
17+
"version": "1.0.119",
18+
"url": "https://github.com/intel/cm-compiler/releases/tag/cmclang-1.0.119",
1919
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
2020
},
2121
"level_zero": {
22-
"github_tag": "v1.20.2",
23-
"version": "v1.20.2",
24-
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.20.2",
22+
"github_tag": "v1.21.9",
23+
"version": "v1.21.9",
24+
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.21.9",
2525
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
2626
},
2727
"tbb": {

devops/scripts/update_drivers.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,12 @@ def uplift_linux_igfx_driver(config, platform_tag, igc_dev_only):
6969
"https://github.com/intel/intel-graphics-compiler/releases/tag/" + ver
7070
)
7171

72-
cm = get_latest_release('intel/cm-compiler')
73-
config[platform_tag]['cm']['github_tag'] = cm['tag_name']
74-
config[platform_tag]['cm']['version'] = cm['tag_name'].replace('cmclang-', '')
75-
config[platform_tag]['cm']['url'] = 'https://github.com/intel/cm-compiler/releases/tag/' + cm['tag_name']
72+
cm = get_latest_release("intel/cm-compiler", allow_prerelease=False)
73+
config[platform_tag]["cm"]["github_tag"] = cm["tag_name"]
74+
config[platform_tag]["cm"]["version"] = cm["tag_name"].replace("cmclang-", "")
75+
config[platform_tag]["cm"]["url"] = (
76+
"https://github.com/intel/cm-compiler/releases/tag/" + cm["tag_name"]
77+
)
7678

7779
level_zero = get_latest_release("oneapi-src/level-zero", allow_prerelease=False)
7880
config[platform_tag]["level_zero"]["github_tag"] = level_zero["tag_name"]

0 commit comments

Comments
 (0)