From fee53096fb95c01649d8f06f4528bd7f65529450 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Tue, 21 Jan 2025 13:11:12 -0500 Subject: BTree insertion latency benchmarks --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index c332448..7f3cde7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -295,6 +295,11 @@ if (tail_bench) target_link_libraries(fixed_shard_count PUBLIC gsl pthread atomic) 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(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) + target_link_options(btree_insert_dist PUBLIC -mcx16) endif() if (bench) -- cgit v1.2.3