summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-01-22 15:47:14 -0500
committerDouglas Rumbaugh <dbr4@psu.edu>2025-01-22 15:47:14 -0500
commita36cf065b4460284623dc099b137fa6ebc2f7c64 (patch)
treed635300631fe579ab263526ed15b6fe87c584597 /CMakeLists.txt
parentfee53096fb95c01649d8f06f4528bd7f65529450 (diff)
downloaddynamic-extension-a36cf065b4460284623dc099b137fa6ebc2f7c64.tar.gz
Added fixed shard count latency distribution 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 7f3cde7..d38623f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -296,6 +296,11 @@ if (tail_bench)
target_include_directories(fixed_shard_count PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
target_link_options(fixed_shard_count PUBLIC -mcx16)
+ add_executable(fixed_shard_latency_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_latency_dist.cpp)
+ target_link_libraries(fixed_shard_latency_dist PUBLIC gsl pthread atomic)
+ target_include_directories(fixed_shard_latency_dist PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ target_link_options(fixed_shard_latency_dist PUBLIC -mcx16)
+
add_executable(btree_insert_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/btree_insert_dist.cpp)
target_link_libraries(btree_insert_dist PUBLIC gsl pthread atomic)
target_include_directories(btree_insert_dist PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)