File tree 2 files changed +7
-5
lines changed
sycl/plugins/unified_runtime 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,12 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
57
57
include (FetchContent)
58
58
59
59
set (UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git" )
60
- # commit a75f7d099b6a2c5df3e03ec4d9dd503c320d5aa5
60
+ # commit 20102fdfa0b1a1042eea2b0d7ee9a2bcc8fda84d
61
61
# 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 )
66
66
67
67
if (SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
68
68
set (UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO} " )
Original file line number Diff line number Diff line change @@ -144,6 +144,8 @@ static pi_result ur2piResult(ur_result_t urResult) {
144
144
return PI_ERROR_INVALID_COMMAND_BUFFER_KHR;
145
145
case UR_RESULT_ERROR_INVALID_COMMAND_BUFFER_SYNC_POINT_WAIT_LIST_EXP:
146
146
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;
147
149
case UR_RESULT_ERROR_UNKNOWN:
148
150
default :
149
151
return PI_ERROR_UNKNOWN;
You can’t perform that action at this time.
0 commit comments