File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
sycl/plugins/unified_runtime Expand file tree Collapse file tree 2 files changed +7
-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 0816206d9e863b88feadf9139c9bb829dcc0d2de
86
- # Merge: 0c0f48db 46f69b9f
85
+ # commit 3a7d00f136cf5d69e61bf1e235393dfc56f55525
86
+ # Merge: cd5ad7b5 9e5c6203
87
87
# Author: aarongreig <[email protected] >
88
- # Date: Mon Apr 1 10:22:25 2024 +0100
89
- # Merge pull request #1460 from hdelan/remove-unused-prototypes
90
- # [HIP][CUDA] Remove function prototypes from enqueue.hpp
91
- set (UNIFIED_RUNTIME_TAG 0816206d9e863b88feadf9139c9bb829dcc0d2de )
88
+ # Date: Mon Apr 1 15:16:30 2024 +0100
89
+ # Merge pull request #1485 from aarongreig/aaron/addDeviceNotAvailableErrC
90
+ # Add UR_ERROR_DEVICE_NOT_AVAILABLE and appropriate translation for CL.
91
+ set (UNIFIED_RUNTIME_TAG 3a7d00f136cf5d69e61bf1e235393dfc56f55525 )
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 @@ -57,6 +57,7 @@ static pi_result ur2piResult(ur_result_t urResult) {
57
57
return PI_ERROR_INVALID_DEVICE;
58
58
case UR_RESULT_ERROR_DEVICE_REQUIRES_RESET:
59
59
case UR_RESULT_ERROR_DEVICE_LOST:
60
+ case UR_RESULT_ERROR_DEVICE_NOT_AVAILABLE:
60
61
return PI_ERROR_DEVICE_NOT_AVAILABLE;
61
62
case UR_RESULT_ERROR_DEVICE_PARTITION_FAILED:
62
63
return PI_ERROR_DEVICE_PARTITION_FAILED;
You can’t perform that action at this time.
0 commit comments