summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-05-25 14:15:36 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-05-25 14:15:36 -0400
commitcd961cc231ca3073f03d82b99153a6d0f5a4c7f1 (patch)
tree706b4e8b8ceaa15c61ac5f1bcbb3daa40f32d76e /CMakeLists.txt
parent7f823ef35733230d3fd1e12e52fecde89f415e8b (diff)
downloaddynamic-extension-cd961cc231ca3073f03d82b99153a6d0f5a4c7f1.tar.gz
Added selectivity sweep benchmark
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f6badb1..f10c40c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -343,6 +343,11 @@ if (tail_bench)
target_include_directories(stall_benchmark PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
target_link_options(stall_benchmark PUBLIC -mcx16)
+ add_executable(selectivity_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/selectivity_sweep.cpp)
+ target_link_libraries(selectivity_sweep PUBLIC gsl pthread atomic)
+ target_include_directories(selectivity_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(selectivity_sweep PUBLIC -mcx16)
+
endif()
if (bench)