summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-05-25 13:35:10 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-05-25 13:35:10 -0400
commit7f823ef35733230d3fd1e12e52fecde89f415e8b (patch)
treedded33d97e313b5bdb417e7b611c3dc03f7c8ac0 /CMakeLists.txt
parentaa15300f8302bf713d752a775f32060b59b8746f (diff)
downloaddynamic-extension-7f823ef35733230d3fd1e12e52fecde89f415e8b.tar.gz
Updates for tail latency stall testing
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 f01432b..f6badb1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -338,6 +338,11 @@ if (tail_bench)
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)
+ add_executable(stall_benchmark ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/stall_benchmark.cpp)
+ target_link_libraries(stall_benchmark PUBLIC gsl pthread atomic)
+ 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)
+
endif()
if (bench)