Skip to content

[UR] Pull in UR changes to add exec error status to events. #13127

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 1 commit into from
Apr 1, 2024
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
12 changes: 6 additions & 6 deletions sycl/plugins/unified_runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
endfunction()

set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
# commit ff276ab1cd584557f8ed4d176109057684a5f4ca
# Merge: ed949ecd 2968cc14
# commit 0c0f48db1bbe6f507297f1b9a7fd6016decb282b
# Merge: d7ce779b d80a3655
# Author: aarongreig <[email protected]>
# Date: Wed Mar 27 11:28:34 2024 +0000
# Merge pull request #1363 from hdelan/refactor-device-initialization
# [CUDA] Refactor device initialization
set(UNIFIED_RUNTIME_TAG ff276ab1cd584557f8ed4d176109057684a5f4ca)
# Date: Thu Mar 28 10:25:01 2024 +0000
# Merge pull request #1467 from aarongreig/aaron/eventExecStatusError
# Add new ERROR status for events, and corresponding error code.
set(UNIFIED_RUNTIME_TAG 0c0f48db1bbe6f507297f1b9a7fd6016decb282b)

if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")
Expand Down
2 changes: 2 additions & 0 deletions sycl/plugins/unified_runtime/pi2ur.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ static pi_result ur2piResult(ur_result_t urResult) {
return PI_ERROR_INVALID_COMMAND_BUFFER_KHR;
case UR_RESULT_ERROR_INVALID_COMMAND_BUFFER_SYNC_POINT_WAIT_LIST_EXP:
return PI_ERROR_INVALID_SYNC_POINT_WAIT_LIST_KHR;
case UR_RESULT_ERROR_IN_EVENT_LIST_EXEC_STATUS:
return PI_ERROR_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST;
case UR_RESULT_ERROR_UNKNOWN:
default:
return PI_ERROR_UNKNOWN;
Expand Down