Skip to content

Commit f67f2b8

Browse files
committed
cleanup 2
1 parent 438178e commit f67f2b8

File tree

3 files changed

+179
-186
lines changed

3 files changed

+179
-186
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ option(UMF_BUILD_SHARED_LIBRARY "Build UMF as shared library" OFF)
3838
option(UMF_BUILD_LEVEL_ZERO_PROVIDER "Build Level Zero memory provider" ON)
3939
option(UMF_BUILD_CUDA_PROVIDER "Build CUDA memory provider" ON)
4040
option(UMF_BUILD_LIBUMF_POOL_DISJOINT
41-
"Build the libumf_pool_disjoint static library" OFF)
41+
"Build the libumf_pool_disjoint static library" ON)
4242
option(UMF_BUILD_LIBUMF_POOL_JEMALLOC
4343
"Build the libumf_pool_jemalloc static library" OFF)
4444
option(UMF_BUILD_TESTS "Build UMF tests" ON)
@@ -312,7 +312,7 @@ endif()
312312
# For using the options listed in the OPTIONS_REQUIRING_CXX variable a C++17
313313
# compiler is required. Moreover, if these options are not set, CMake will set
314314
# up a strict C build, without C++ support.
315-
set(OPTIONS_REQUIRING_CXX "UMF_BUILD_TESTS" "UMF_BUILD_LIBUMF_POOL_DISJOINT"
315+
set(OPTIONS_REQUIRING_CXX "UMF_BUILD_TESTS"
316316
"UMF_BUILD_BENCHMARKS_MT")
317317
foreach(option_name ${OPTIONS_REQUIRING_CXX})
318318
if(${option_name})

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For development and contributions:
3737
- cmake-format-0.6 (can be installed with `python -m pip install cmake-format==0.6.13`)
3838
- black (can be installed with `python -m pip install black==24.3.0`)
3939

40-
For building tests, multithreaded benchmarks and Disjoint Pool:
40+
For building tests, multithreaded benchmarks:
4141
- C++ compiler with C++17 support
4242

4343
For Level Zero memory provider tests:
@@ -100,7 +100,7 @@ List of options provided by CMake:
100100
| UMF_BUILD_SHARED_LIBRARY | Build UMF as shared library | ON/OFF | OFF |
101101
| UMF_BUILD_LEVEL_ZERO_PROVIDER | Build Level Zero memory provider | ON/OFF | ON |
102102
| UMF_BUILD_CUDA_PROVIDER | Build CUDA memory provider | ON/OFF | ON |
103-
| UMF_BUILD_LIBUMF_POOL_DISJOINT | Build the libumf_pool_disjoint static library | ON/OFF | OFF |
103+
| UMF_BUILD_LIBUMF_POOL_DISJOINT | Build the libumf_pool_disjoint static library | ON/OFF | ON |
104104
| UMF_BUILD_LIBUMF_POOL_JEMALLOC | Build the libumf_pool_jemalloc static library | ON/OFF | OFF |
105105
| UMF_BUILD_TESTS | Build UMF tests | ON/OFF | ON |
106106
| UMF_BUILD_GPU_TESTS | Build UMF GPU tests | ON/OFF | OFF |

0 commit comments

Comments
 (0)