Skip to content

test changes #12030

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

Closed
wants to merge 2 commits into from
Closed
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
5 changes: 5 additions & 0 deletions sycl/plugins/level_zero/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ add_sycl_plugin(level_zero

add_dependencies(pi_level_zero ze-api)

if (WIN32)
target_link_libraries(pi_level_zero PRIVATE delayimp)
target_link_options(pi_level_zero PRIVATE /DELAYLOAD:ze_loader.dll)
endif()

if (SYCL_ENABLE_XPTI_TRACING)
target_compile_definitions(pi_level_zero PRIVATE
XPTI_ENABLE_INSTRUMENTATION
Expand Down
10 changes: 6 additions & 4 deletions sycl/plugins/unified_runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,14 @@ endif()
if(SYCL_PI_UR_USE_FETCH_CONTENT)
include(FetchContent)

set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
set(UNIFIED_RUNTIME_REPO "https://github.com/ykhatav/my-fork-unified-runtime")
# commit 712d79120e0a9293daf5741f9c0b5269ddd862ce
# Merge: ce152a64 e001b98d
# Author: Kenneth Benzie (Benie) <[email protected]>
# Date: Fri Nov 24 12:34:51 2023 +0000
# Set version to v0.8.0
set(UNIFIED_RUNTIME_TAG v0.8.0)
# Date: Fri Nov 10 13:25:42 2023 +0000
# Merge pull request #1044 from aarongreig/aaron/clCTSFixMegaBranch
# [OpenCL] Combined CTS fixes
set(UNIFIED_RUNTIME_TAG fe93c1a6abb46976338688665e945d76b6565796)

if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")
Expand Down