Skip to content

Commit 3288a66

Browse files
authored
[UR] Pull in UR changes to add exec error status to events. (#13127)
UR PR: oneapi-src/unified-runtime#1467
1 parent cefbadd commit 3288a66

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

sycl/plugins/unified_runtime/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
8282
endfunction()
8383

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

9393
if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
9494
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")

sycl/plugins/unified_runtime/pi2ur.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ static pi_result ur2piResult(ur_result_t urResult) {
145145
return PI_ERROR_INVALID_COMMAND_BUFFER_KHR;
146146
case UR_RESULT_ERROR_INVALID_COMMAND_BUFFER_SYNC_POINT_WAIT_LIST_EXP:
147147
return PI_ERROR_INVALID_SYNC_POINT_WAIT_LIST_KHR;
148+
case UR_RESULT_ERROR_IN_EVENT_LIST_EXEC_STATUS:
149+
return PI_ERROR_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST;
148150
case UR_RESULT_ERROR_UNKNOWN:
149151
default:
150152
return PI_ERROR_UNKNOWN;

0 commit comments

Comments
 (0)