summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-01-08 13:32:32 -0500
committerDouglas Rumbaugh <dbr4@psu.edu>2025-01-08 13:32:32 -0500
commitbac86504220da4c169089a3a1803e0a21f5acbc2 (patch)
tree0de5ae02d7614fc845cf83fc41bac388d1a1bc4f /CMakeLists.txt
parent7b944947c777e0b3b4e84c4ac50b79a4fc2912f2 (diff)
downloaddynamic-extension-bac86504220da4c169089a3a1803e0a21f5acbc2.tar.gz
Tail latency parm sweep
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3dac001..786f765 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,6 +13,7 @@ set(debug false)
set(tests True)
set(bench false)
set(vldb_bench true)
+set(tail_bench true)
# ALEX doesn't build under C++20
set(build_alex false)
@@ -284,7 +285,12 @@ 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)
+endif()
if (bench)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bin/benchmarks")