diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-01-21 13:11:12 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-01-21 13:11:12 -0500 |
| commit | fee53096fb95c01649d8f06f4528bd7f65529450 (patch) | |
| tree | f4e723a2f0dbcaab26cd6c2bc3d5abe1ab9f0aac /CMakeLists.txt | |
| parent | 77589d4cc82b766d2cf16294fab98a57f6579cb4 (diff) | |
| download | dynamic-extension-fee53096fb95c01649d8f06f4528bd7f65529450.tar.gz | |
BTree insertion latency benchmarks
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
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) |