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
12 changes: 6 additions & 6 deletions devops/dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"cm": {
"github_tag": "cmclang-1.0.144",
"version": "1.0.144",
"url": "https://github.com/intel/cm-compiler/releases/tag/cmclang-1.0.144",
"github_tag": "cmclang-1.0.119",
"version": "1.0.119",
"url": "https://github.com/intel/cm-compiler/releases/tag/cmclang-1.0.119",
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"level_zero": {
"github_tag": "v1.20.2",
"version": "v1.20.2",
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.20.2",
"github_tag": "v1.21.9",
"version": "v1.21.9",
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.21.9",
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"tbb": {
Expand Down
10 changes: 6 additions & 4 deletions devops/scripts/update_drivers.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,12 @@ def uplift_linux_igfx_driver(config, platform_tag, igc_dev_only):
"https://github.com/intel/intel-graphics-compiler/releases/tag/" + ver
)

cm = get_latest_release('intel/cm-compiler')
config[platform_tag]['cm']['github_tag'] = cm['tag_name']
config[platform_tag]['cm']['version'] = cm['tag_name'].replace('cmclang-', '')
config[platform_tag]['cm']['url'] = 'https://github.com/intel/cm-compiler/releases/tag/' + cm['tag_name']
cm = get_latest_release("intel/cm-compiler", allow_prerelease=False)
Copy link
Contributor Author

@sarnex sarnex Apr 15, 2025

Choose a reason for hiding this comment

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

cm = get_latest_release("intel/cm-compiler", allow_prerelease=False)

is the only relevant change here

config[platform_tag]["cm"]["github_tag"] = cm["tag_name"]
config[platform_tag]["cm"]["version"] = cm["tag_name"].replace("cmclang-", "")
config[platform_tag]["cm"]["url"] = (
"https://github.com/intel/cm-compiler/releases/tag/" + cm["tag_name"]
)

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