diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-08-14 09:09:44 -0400 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-08-14 09:09:44 -0400 |
| commit | 601481ed0a8061a372900cfb6761e8de81651339 (patch) | |
| tree | a74ece5b35c101675078f84f86ba212ca2a576a7 /CMakeLists.txt | |
| parent | 911eb0ef61dc7d327507c6406120a80797190884 (diff) | |
| download | dynamic-extension-601481ed0a8061a372900cfb6761e8de81651339.tar.gz | |
Per record cost estimation progress
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 a7bcad6..31cdc50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -348,6 +348,11 @@ if (tail_bench) target_include_directories(stall_benchmark_vptree PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) target_link_options(stall_benchmark_vptree PUBLIC -mcx16) + add_executable(isam_construction_times ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/isam_construction_times.cpp) + target_link_libraries(isam_construction_times PUBLIC gsl pthread atomic) + target_include_directories(isam_construction_times 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_construction_times PUBLIC -mcx16) + add_executable(selectivity_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/selectivity_sweep.cpp) target_link_libraries(selectivity_sweep PUBLIC gsl pthread atomic) target_include_directories(selectivity_sweep PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) |