File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
sycl/plugins/unified_runtime Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if (NOT DEFINED UNIFIED_RUNTIME_LIBRARY OR NOT DEFINED UNIFIED_RUNTIME_INCLUDE_D
4
4
include (FetchContent )
5
5
6
6
set (UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git" )
7
- set (UNIFIED_RUNTIME_TAG 6fb8e2620f1474428a539ef46d6dd47043c7d59b )
7
+ set (UNIFIED_RUNTIME_TAG d6af758779db6eebdc419fd5e249302f566eb5de )
8
8
9
9
message (STATUS "Will fetch Unified Runtime from ${UNIFIED_RUNTIME_REPO} " )
10
10
FetchContent_Declare (unified-runtime
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ static pi_result ur2piResult(ur_result_t urResult) {
29
29
{UR_RESULT_ERROR_INVALID_FUNCTION_NAME, PI_ERROR_BUILD_PROGRAM_FAILURE},
30
30
{UR_RESULT_ERROR_INVALID_WORK_GROUP_SIZE,
31
31
PI_ERROR_INVALID_WORK_GROUP_SIZE},
32
- {UR_RESULT_ERROR_MODULE_BUILD_FAILURE , PI_ERROR_BUILD_PROGRAM_FAILURE},
32
+ {UR_RESULT_ERROR_PROGRAM_BUILD_FAILURE , PI_ERROR_BUILD_PROGRAM_FAILURE},
33
33
{UR_RESULT_ERROR_OUT_OF_DEVICE_MEMORY, PI_ERROR_OUT_OF_RESOURCES},
34
34
{UR_RESULT_ERROR_OUT_OF_HOST_MEMORY, PI_ERROR_OUT_OF_HOST_MEMORY}};
35
35
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ ur_result_t ze2urResult(ze_result_t ZeResult) {
50
50
case ZE_RESULT_ERROR_INVALID_GROUP_SIZE_DIMENSION:
51
51
return UR_RESULT_ERROR_INVALID_WORK_GROUP_SIZE;
52
52
case ZE_RESULT_ERROR_MODULE_BUILD_FAILURE:
53
- return UR_RESULT_ERROR_MODULE_BUILD_FAILURE ;
53
+ return UR_RESULT_ERROR_PROGRAM_BUILD_FAILURE ;
54
54
case ZE_RESULT_ERROR_OUT_OF_DEVICE_MEMORY:
55
55
return UR_RESULT_ERROR_OUT_OF_DEVICE_MEMORY;
56
56
case ZE_RESULT_ERROR_OUT_OF_HOST_MEMORY:
You can’t perform that action at this time.
0 commit comments