Skip to content

Commit 6fd40bb

Browse files
aarongreigkbenzie
authored andcommitted
[UR] Pull in UR changes to add exec error status to events. (intel#13127)
UR PR: oneapi-src/unified-runtime#1467
1 parent 4c54bfe commit 6fd40bb

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

sycl/plugins/unified_runtime/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
5757
include(FetchContent)
5858

5959
set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
60-
# commit a75f7d099b6a2c5df3e03ec4d9dd503c320d5aa5
60+
# commit 20102fdfa0b1a1042eea2b0d7ee9a2bcc8fda84d
6161
# Author: aarongreig <[email protected]>
62-
# Date: Wed Mar 27 11:28:34 2024 +0000
63-
# Merge pull request #1363 from hdelan/refactor-device-initialization
64-
# [CUDA] Refactor device initialization
65-
set(UNIFIED_RUNTIME_TAG a75f7d099b6a2c5df3e03ec4d9dd503c320d5aa5)
62+
# Date: Thu Mar 28 10:25:01 2024 +0000
63+
# Merge pull request #1467 from aarongreig/aaron/eventExecStatusError
64+
# Add new ERROR status for events, and corresponding error code.
65+
set(UNIFIED_RUNTIME_TAG 20102fdfa0b1a1042eea2b0d7ee9a2bcc8fda84d)
6666

6767
if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
6868
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
@@ -144,6 +144,8 @@ static pi_result ur2piResult(ur_result_t urResult) {
144144
return PI_ERROR_INVALID_COMMAND_BUFFER_KHR;
145145
case UR_RESULT_ERROR_INVALID_COMMAND_BUFFER_SYNC_POINT_WAIT_LIST_EXP:
146146
return PI_ERROR_INVALID_SYNC_POINT_WAIT_LIST_KHR;
147+
case UR_RESULT_ERROR_IN_EVENT_LIST_EXEC_STATUS:
148+
return PI_ERROR_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST;
147149
case UR_RESULT_ERROR_UNKNOWN:
148150
default:
149151
return PI_ERROR_UNKNOWN;

0 commit comments

Comments
 (0)