Skip to content
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
9 changes: 2 additions & 7 deletions sycl/plugins/unified_runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,8 @@ endif()
if(SYCL_PI_UR_USE_FETCH_CONTENT)
include(FetchContent)

set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
# commit 8c2d93dd12856dc699cb5b38fe3bd91bd6298a86 (HEAD -> main, gitlab-orion-origin/main)
# Author: Weronika Lewandowska <[email protected]>
# Date: Fri Dec 22 10:11:47 2023 +0100
# Merge pull request #1207 from PietroGhg/pietro/remove_event_hpp
# [NATIVECPU] Remove event.hpp inclusion
set(UNIFIED_RUNTIME_TAG 8c2d93dd12856dc699cb5b38fe3bd91bd6298a86)
set(UNIFIED_RUNTIME_REPO "https://github.com/aarongreig/unified-runtime.git")
set(UNIFIED_RUNTIME_TAG 0667a9a00eb6437c6786de5c59faa3c0398b6052)

if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")
Expand Down
2 changes: 1 addition & 1 deletion sycl/plugins/unified_runtime/pi2ur.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ static pi_result ur2piResult(ur_result_t urResult) {
return PI_ERROR_INVALID_BINARY;
case UR_RESULT_ERROR_INVALID_GLOBAL_NAME:
return PI_ERROR_INVALID_VALUE;
case UR_RESULT_ERROR_INVALID_FUNCTION_NAME:
case UR_RESULT_ERROR_FUNCTION_ADDRESS_NOT_AVAILABLE:
return PI_ERROR_FUNCTION_ADDRESS_IS_NOT_AVAILABLE;
case UR_RESULT_ERROR_INVALID_GROUP_SIZE_DIMENSION:
return PI_ERROR_INVALID_WORK_DIMENSION;
Expand Down