diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 910434b73d6c8..e2aaea3eaefde 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -36,6 +36,7 @@ sycl/doc/extensions/ @intel/dpcpp-specification-reviewers # Unified Runtime sycl/cmake/modules/FetchUnifiedRuntime.cmake @intel/unified-runtime-reviewers +sycl/cmake/modules/UnifiedRuntimeTag.cmake @intel/unified-runtime-reviewers sycl/include/sycl/detail/ur.hpp @intel/unified-runtime-reviewers sycl/source/detail/posix_ur.cpp @intel/unified-runtime-reviewers sycl/source/detail/ur.cpp @intel/unified-runtime-reviewers diff --git a/sycl/cmake/modules/FetchUnifiedRuntime.cmake b/sycl/cmake/modules/FetchUnifiedRuntime.cmake index 7dbb2f4c604ea..72841724fa01d 100644 --- a/sycl/cmake/modules/FetchUnifiedRuntime.cmake +++ b/sycl/cmake/modules/FetchUnifiedRuntime.cmake @@ -117,13 +117,7 @@ if(SYCL_UR_USE_FETCH_CONTENT) endfunction() set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git") - # commit c742ca49efb12380a35b8b0b467e6577ab8174ce - # Merge: 3a8bf2c5 504d3b63 - # Author: Kenneth Benzie (Benie) - # Date: Mon Oct 21 11:55:23 2024 +0100 - # Merge pull request #2131 from Bensuo/ben/command-handle-fix - # [EXP][CMDBUF] Make command handle behaviour consistent - set(UNIFIED_RUNTIME_TAG c742ca49efb12380a35b8b0b467e6577ab8174ce) + include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/UnifiedRuntimeTag.cmake) set(UMF_BUILD_EXAMPLES OFF CACHE INTERNAL "EXAMPLES") # Due to the use of dependentloadflag and no installer for UMF and hwloc we need diff --git a/sycl/cmake/modules/UnifiedRuntimeTag.cmake b/sycl/cmake/modules/UnifiedRuntimeTag.cmake new file mode 100644 index 0000000000000..0e7754f5e6e5a --- /dev/null +++ b/sycl/cmake/modules/UnifiedRuntimeTag.cmake @@ -0,0 +1,7 @@ +# commit c742ca49efb12380a35b8b0b467e6577ab8174ce +# Merge: 3a8bf2c5 504d3b63 +# Author: Kenneth Benzie (Benie) +# Date: Mon Oct 21 11:55:23 2024 +0100 +# Merge pull request #2131 from Bensuo/ben/command-handle-fix +# [EXP][CMDBUF] Make command handle behaviour consistent +set(UNIFIED_RUNTIME_TAG c742ca49efb12380a35b8b0b467e6577ab8174ce)