summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-04-30 13:06:56 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-04-30 13:06:56 -0400
commitaa15300f8302bf713d752a775f32060b59b8746f (patch)
tree7520c84f04da657cc67b3a03ad7ba0448e3ac86d /CMakeLists.txt
parent81d3ef3cb4a00d566978ebca511fd947f3ef9b1b (diff)
downloaddynamic-extension-aa15300f8302bf713d752a775f32060b59b8746f.tar.gz
Stats tweaks and KNN 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 9f1c74c..f01432b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -333,6 +333,11 @@ if (tail_bench)
target_include_directories(query_parm_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(query_parm_sweep PUBLIC -mcx16)
+ add_executable(knn_query_parm_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/knn_query_parm_sweep.cpp)
+ target_link_libraries(knn_query_parm_sweep PUBLIC gsl pthread atomic)
+ target_include_directories(knn_query_parm_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(knn_query_parm_sweep PUBLIC -mcx16)
+
endif()
if (bench)