Skip to content
Open
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
18 changes: 9 additions & 9 deletions devops/dependencies.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"linux": {
"compute_runtime": {
"github_tag": "26.09.37435.1",
"version": "26.09.37435.1",
"url": "https://github.com/intel/compute-runtime/releases/tag/26.09.37435.1",
"github_tag": "26.14.37833.4",
"version": "26.14.37833.4",
"url": "https://github.com/intel/compute-runtime/releases/tag/26.14.37833.4",
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"igc": {
"github_tag": "v2.30.1",
"version": "v2.30.1",
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.30.1",
"github_tag": "v2.32.7",
"version": "v2.32.7",
"url": "https://github.com/intel/intel-graphics-compiler/releases/tag/v2.32.7",
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"cm": {
Expand All @@ -19,9 +19,9 @@
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"level_zero": {
"github_tag": "v1.28.0",
"version": "v1.28.0",
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.28.0",
"github_tag": "v1.28.2",
"version": "v1.28.2",
"url": "https://github.com/oneapi-src/level-zero/releases/tag/v1.28.2",
"root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu"
},
"tbb": {
Expand Down
4 changes: 2 additions & 2 deletions unified-runtime/cmake/FetchLevelZero.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ find_package(PkgConfig QUIET)
# just try to search for the path.
if(NOT UR_FORCE_FETCH_LEVEL_ZERO)
if(PkgConfig_FOUND)
pkg_check_modules(level-zero level-zero>=1.28.0)
pkg_check_modules(level-zero level-zero>=1.28.2)
if(level-zero_FOUND)
set(LEVEL_ZERO_INCLUDE_DIR "${level-zero_INCLUDEDIR}/level_zero")
set(LEVEL_ZERO_LIBRARY_SRC "${level-zero_LIBDIR}")
Expand Down Expand Up @@ -55,7 +55,7 @@ if(NOT LEVEL_ZERO_LIB_NAME AND NOT LEVEL_ZERO_LIBRARY)
set(UR_LEVEL_ZERO_LOADER_REPO "https://github.com/oneapi-src/level-zero.git")
# Remember to update the pkg_check_modules minimum version above when updating the
# clone tag
set(UR_LEVEL_ZERO_LOADER_TAG v1.28.0)
set(UR_LEVEL_ZERO_LOADER_TAG v1.28.2)

# Disable due to a bug https://github.com/oneapi-src/level-zero/issues/104
set(CMAKE_INCLUDE_CURRENT_DIR OFF)
Expand Down
Loading