From aa15300f8302bf713d752a775f32060b59b8746f Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 30 Apr 2025 13:06:56 -0400 Subject: Stats tweaks and KNN benchmark --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'CMakeLists.txt') 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) -- cgit v1.2.3