Skip to content

Commit 2cbb3da

Browse files
authored
[UR][UMF] Cleanup UMF build flags (#18003)
cleanup UMF build flags: UMF_ENABLE_POOL_TRACKING and UMF_BUILD_LIBUMF_POOL_DISJOINT have been removed from the latest UMF. The features that were previously enabled by these flags are now always enabled.
1 parent 63f96dc commit 2cbb3da

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

.github/workflows/ur-precommit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ jobs:
110110
-DCMAKE_BUILD_TYPE=Release
111111
-DUR_BUILD_TESTS=ON
112112
-DUR_FORMAT_CPP_STYLE=ON
113-
-DUMF_ENABLE_POOL_TRACKING=ON
114113
115114
- name: Build
116115
run: cmake --build ${{github.workspace}}/build -j $(sysctl -n hw.logicalcpu)

unified-runtime/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ option(UR_ENABLE_TRACING "enable api tracing through xpti" OFF)
4040
option(UR_ENABLE_SANITIZER "enable device sanitizer" ON)
4141
option(UR_ENABLE_SYMBOLIZER "enable symoblizer for sanitizer" OFF)
4242
option(UMF_BUILD_SHARED_LIBRARY "Build UMF as shared library" ON)
43-
option(UMF_ENABLE_POOL_TRACKING "Build UMF with pool tracking" ON)
4443
option(UR_BUILD_ADAPTER_L0 "Build the Level-Zero adapter" OFF)
4544
option(UR_BUILD_ADAPTER_OPENCL "Build the OpenCL adapter" OFF)
4645
option(UR_BUILD_ADAPTER_CUDA "Build the CUDA adapter" OFF)

unified-runtime/source/common/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ else()
7373
set(UMF_BUILD_TESTS OFF CACHE INTERNAL "Build UMF tests")
7474
set(UMF_BUILD_EXAMPLES OFF CACHE INTERNAL "Build UMF examples")
7575
set(UMF_BUILD_SHARED_LIBRARY ${UMF_BUILD_SHARED_LIBRARY} CACHE INTERNAL "Build UMF shared library")
76-
set(UMF_BUILD_LIBUMF_POOL_DISJOINT ON CACHE INTERNAL "Build Disjoint Pool")
7776

7877
FetchContent_MakeAvailable(unified-memory-framework)
7978
FetchContent_GetProperties(unified-memory-framework)

0 commit comments

Comments
 (0)