File tree 2 files changed +8
-6
lines changed
sycl/plugins/unified_runtime
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
82
82
endfunction ()
83
83
84
84
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
87
87
# 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 )
92
92
93
93
if (SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
94
94
set (UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO} " )
Original file line number Diff line number Diff line change @@ -145,6 +145,8 @@ static pi_result ur2piResult(ur_result_t urResult) {
145
145
return PI_ERROR_INVALID_COMMAND_BUFFER_KHR;
146
146
case UR_RESULT_ERROR_INVALID_COMMAND_BUFFER_SYNC_POINT_WAIT_LIST_EXP:
147
147
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;
148
150
case UR_RESULT_ERROR_UNKNOWN:
149
151
default :
150
152
return PI_ERROR_UNKNOWN;
You can’t perform that action at this time.
0 commit comments