From 5f2098449842de285fb763850d7d91eb174ffb2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Mon, 18 Aug 2025 13:32:25 +0200 Subject: [PATCH] [UR] Bump UMF to v1.1.0-dev2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Łukasz Stolarczuk --- unified-runtime/source/common/CMakeLists.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/unified-runtime/source/common/CMakeLists.txt b/unified-runtime/source/common/CMakeLists.txt index 487c1ff9df999..4a38833e9ca40 100644 --- a/unified-runtime/source/common/CMakeLists.txt +++ b/unified-runtime/source/common/CMakeLists.txt @@ -36,7 +36,6 @@ target_include_directories(ur_common PUBLIC $ ) - if (UR_STATIC_ADAPTER_L0) if (UMF_BUILD_SHARED_LIBRARY) message(STATUS "Static adapter is not compatible with shared UMF, switching to fully statically linked UMF") @@ -47,6 +46,7 @@ endif() set(UR_USE_EXTERNAL_UMF ON CACHE BOOL "Use a pre-built UMF if available") if(UR_USE_EXTERNAL_UMF) + # v1.1.0-dev2 is not strictly required and they both are compatible find_package(umf 1.0.0 QUIET) endif() if(umf_FOUND) @@ -56,11 +56,12 @@ if(umf_FOUND) else() set(UMF_REPO "https://github.com/oneapi-src/unified-memory-framework.git") - # commit 1de269c00e46b7cbdbafa2247812c8c4bb4ed4a5 + # commit 503d302a72f719a3f11fce0e610f07a3793549d9 # Author: Łukasz Stolarczuk - # Date: Mon Jul 21 15:42:59 2025 +0200 - # 1.0.0 release - set(UMF_TAG v1.0.0) + # Date: Mon Aug 18 11:14:25 2025 +0200 + # Merge pull request #1496 from sarnex/gtest + # [CMake] Support preinstalled GTest + set(UMF_TAG v1.1.0-dev2) if(NOT FETCHCONTENT_SOURCE_DIR_UNIFIED-MEMORY-FRAMEWORK) message(STATUS "Will fetch Unified Memory Framework from ${UMF_REPO}")