File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
sycl/plugins/unified_runtime Expand file tree Collapse file tree 2 files changed +6
-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 40b21ccd5fa9b636f56bbaed8d66cacc5dd32454
60
+ # commit 74a8f047563d3528fccbf87cd729ceb3dcad6e1d
61
61
# Author: aarongreig <[email protected] >
62
- # Date: Mon Apr 1 10:22:25 2024 +0100
63
- # Merge pull request #1460 from hdelan/remove-unused-prototypes
64
- # [HIP][CUDA] Remove function prototypes from enqueue.hpp
65
- set (UNIFIED_RUNTIME_TAG 40b21ccd5fa9b636f56bbaed8d66cacc5dd32454 )
62
+ # Date: Mon Apr 1 15:16:30 2024 +0100
63
+ # Merge pull request #1485 from aarongreig/aaron/addDeviceNotAvailableErrC
64
+ # Add UR_ERROR_DEVICE_NOT_AVAILABLE and appropriate translation for CL.
65
+ set (UNIFIED_RUNTIME_TAG 74a8f047563d3528fccbf87cd729ceb3dcad6e1d )
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 @@ -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