summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-06-02 19:54:15 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-06-02 19:54:15 -0400
commit6088ede2b5a8f580f78d4422162d423a7a11f520 (patch)
tree9124cab872af7a02209c3af758d4a4bf95b1aa26 /CMakeLists.txt
parent7f0acb5dc66cc93045ab0e40ebd5570388f9102b (diff)
downloaddynamic-extension-6088ede2b5a8f580f78d4422162d423a7a11f520.tar.gz
updates
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a7bcad6..688935e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -297,6 +297,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_count_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_count_dist.cpp)
+ target_link_libraries(fixed_shard_count_dist PUBLIC gsl pthread atomic)
+ target_include_directories(fixed_shard_count_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_count_dist PUBLIC -mcx16)
+
add_executable(standard_latency_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/standard_latency_dist.cpp)
target_link_libraries(standard_latency_dist PUBLIC gsl pthread atomic)
target_include_directories(standard_latency_dist PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
@@ -307,6 +312,11 @@ if (tail_bench)
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)
+ add_executable(btree_tput ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/btree_tput.cpp)
+ target_link_libraries(btree_tput PUBLIC gsl pthread atomic)
+ target_include_directories(btree_tput 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_tput PUBLIC -mcx16)
+
add_executable(mixed_workload ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/mixed_workload.cpp)
target_link_libraries(mixed_workload PUBLIC gsl pthread atomic)
target_include_directories(mixed_workload PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
@@ -357,6 +367,11 @@ if (tail_bench)
target_link_libraries(knn_selectivity_sweep PUBLIC gsl pthread atomic)
target_include_directories(knn_selectivity_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_selectivity_sweep PUBLIC -mcx16)
+
+ add_executable(isam_latency_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/isam_latency_dist.cpp)
+ target_link_libraries(isam_latency_dist PUBLIC gsl pthread atomic)
+ target_include_directories(isam_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(isam_latency_dist PUBLIC -mcx16)
endif()
if (bench)