summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-02-06 15:56:33 -0500
committerDouglas Rumbaugh <dbr4@psu.edu>2025-02-06 15:56:33 -0500
commitfd0e99e618319974320ed3fb49535aec501be1fb (patch)
treeba5015299ec58beeea152b46eff15a4778b4f20f /CMakeLists.txt
parent5ee10c336581b68ba91c7048431809e3ccaf7e87 (diff)
downloaddynamic-extension-fd0e99e618319974320ed3fb49535aec501be1fb.tar.gz
Background compaction stuff
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt27
1 files changed, 16 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 902889f..fafc9bb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,11 +9,11 @@ set(CMAKE_CXX_STANDARD_REQUIRED True)
set(namespace "de")
project("Practical Dynamic Extension" VERSION 0.1.0)
-set(debug true)
+set(debug false)
set(tests True)
set(bench false)
set(vldb_bench false)
-set(tail_bench false)
+set(tail_bench true)
# ALEX doesn't build under C++20
set(build_alex false)
@@ -286,15 +286,20 @@ if (vldb_bench)
endif()
if (tail_bench)
- add_executable(config_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/config_sweep.cpp)
- target_link_libraries(config_sweep PUBLIC gsl pthread atomic)
- target_include_directories(config_sweep PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
- target_link_options(config_sweep PUBLIC -mcx16)
-
- add_executable(fixed_shard_count ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_count.cpp)
- target_link_libraries(fixed_shard_count PUBLIC gsl pthread atomic)
- target_include_directories(fixed_shard_count PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
- target_link_options(fixed_shard_count PUBLIC -mcx16)
+ # add_executable(config_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/config_sweep.cpp)
+ # target_link_libraries(config_sweep PUBLIC gsl pthread atomic)
+ # target_include_directories(config_sweep PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ # target_link_options(config_sweep PUBLIC -mcx16)
+
+ # add_executable(fixed_shard_count ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_count.cpp)
+ # target_link_libraries(fixed_shard_count PUBLIC gsl pthread atomic)
+ # target_include_directories(fixed_shard_count PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ # target_link_options(fixed_shard_count PUBLIC -mcx16)
+
+ add_executable(standard_latency_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/standard_latency_dist.cpp)
+ target_link_libraries(standard_latency_dist PUBLIC gsl pthread atomic)
+ target_include_directories(standard_latency_dist PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ target_link_options(standard_latency_dist PUBLIC -mcx16)
endif()
if (bench)