diff --git a/devops/dependencies.json b/devops/dependencies.json index c29e212aabd5d..b4d532d948656 100644 --- a/devops/dependencies.json +++ b/devops/dependencies.json @@ -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": { diff --git a/devops/scripts/update_drivers.py b/devops/scripts/update_drivers.py index e7cc8dda1b192..fdbbf413184b7 100644 --- a/devops/scripts/update_drivers.py +++ b/devops/scripts/update_drivers.py @@ -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) + 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"]