Skip to content

[BuildBot] Uplift GPU RT version for Linux CI Process #3386

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
6 changes: 3 additions & 3 deletions buildbot/dependency.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ ocl_cpu_rt_ver=2021.11.3.0.09
# https://github.com/intel/llvm/releases/download/2021-WW11/win-oclcpuexp-2021.11.3.0.09_rel.zip
ocl_cpu_rt_ver_win=2021.11.3.0.09
# Same GPU driver supports Level Zero and OpenCL
# https://github.com/intel/compute-runtime/releases/tag/21.09.19150
ocl_gpu_rt_ver=21.09.19150
# https://github.com/intel/compute-runtime/releases/tag/21.12.19358
ocl_gpu_rt_ver=21.12.19358
# Same GPU driver supports Level Zero and OpenCL
# https://downloadmirror.intel.com/30266/a08/igfx_win10_100.9316.zip
ocl_gpu_rt_ver_win=27.20.100.9316
Expand All @@ -30,7 +30,7 @@ ocloc_ver_win=27.20.100.9168
[DRIVER VERSIONS]
cpu_driver_lin=2021.11.3.0.09
cpu_driver_win=2021.11.3.0.09
gpu_driver_lin=21.09.19150
gpu_driver_lin=21.12.19358
gpu_driver_win=27.20.100.9316
fpga_driver_lin=2021.11.3.0.09
fpga_driver_win=2021.11.3.0.09
Expand Down
7 changes: 6 additions & 1 deletion sycl/plugins/level_zero/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ if (NOT DEFINED LEVEL_ZERO_LIBRARY OR NOT DEFINED LEVEL_ZERO_INCLUDE_DIR)
if (NOT DEFINED SYCL_EP_LEVEL_ZERO_LOADER_SKIP_AUTO_UPDATE)
set(SYCL_EP_LEVEL_ZERO_LOADER_SKIP_AUTO_UPDATE ${SYCL_EXTERNAL_PROJECTS_SKIP_AUTO_UPDATE})
endif()
if (WIN32)
set(LEVEL_ZERO_LOADER_SOURCE_VERSION v1.0.16)
else()
set(LEVEL_ZERO_LOADER_SOURCE_VERSION v1.2.3)
endif()
ExternalProject_Add(level-zero-loader
GIT_REPOSITORY https://github.com/oneapi-src/level-zero.git
GIT_TAG v1.0.16
GIT_TAG ${LEVEL_ZERO_LOADER_SOURCE_VERSION}
UPDATE_DISCONNECTED ${SYCL_EP_LEVEL_ZERO_LOADER_SKIP_AUTO_UPDATE}
SOURCE_DIR ${LEVEL_ZERO_LOADER_SOURCE_DIR}
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/level_zero_loader_build"
Expand Down