diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-10 17:19:10 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-10 17:19:10 -0500 |
| commit | c04efb2640421be7a24f851c08e290c89b7b46f2 (patch) | |
| tree | 5fb53b391cc016af7502dd90299805ce9bff5bc8 /CMakeLists.txt | |
| parent | 33b97be9237300dbfcb3c649be2caeea79dda343 (diff) | |
| download | dynamic-extension-c04efb2640421be7a24f851c08e290c89b7b46f2.tar.gz | |
Migrated remaining tail latency benchmarks to new interface
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 644d1de..f0d8a86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -287,15 +287,15 @@ endif() if (tail_bench) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bin/benchmarks") - # add_executable(config_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/config_sweep.cpp) - # target_link_libraries(config_sweep PUBLIC gsl pthread atomic) - # target_include_directories(config_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(config_sweep PUBLIC -mcx16) - - # add_executable(fixed_shard_count ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_count.cpp) - # 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(config_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/config_sweep.cpp) + target_link_libraries(config_sweep PUBLIC gsl pthread atomic) + target_include_directories(config_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(config_sweep PUBLIC -mcx16) + + add_executable(fixed_shard_count ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_count.cpp) + 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(standard_latency_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/standard_latency_dist.cpp) target_link_libraries(standard_latency_dist PUBLIC gsl pthread atomic) |