diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2024-05-09 14:13:00 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2024-05-09 14:13:00 -0400 |
| commit | 9dac3f67ffe442b1cfc7c86e39cf325ce8c23045 (patch) | |
| tree | 1308cb37c141a0961837c18793214d004e592158 /CMakeLists.txt | |
| parent | 8d8885df98c4fce50141cc2ae4eb5b4033c51ee3 (diff) | |
| parent | 265610435e1164a9acc39ca02ea1139acd37c46c (diff) | |
| download | dynamic-extension-9dac3f67ffe442b1cfc7c86e39cf325ce8c23045.tar.gz | |
Merge branch 'master' of github.com:dbrumbaugh/dynamic-extension
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b4e801c..7f2e782 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -168,6 +168,14 @@ if (vldb_bench) target_link_options(vptree_bench PUBLIC -mcx16) target_compile_options(vptree_bench PUBLIC -fopenmp) + + add_executable(vptree_bench_alt ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/vldb/vptree_bench_alt.cpp) + target_link_libraries(vptree_bench_alt PUBLIC gsl pthread atomic) + target_include_directories(vptree_bench_alt PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) + target_link_options(vptree_bench_alt PUBLIC -mcx16) + target_compile_options(vptree_bench_alt PUBLIC -fopenmp) + + add_executable(vptree_parmsweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/vldb/vptree_parmsweep.cpp) target_link_libraries(vptree_parmsweep PUBLIC gsl pthread atomic) target_include_directories(vptree_parmsweep PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) @@ -180,6 +188,12 @@ if (vldb_bench) target_link_options(vptree_bsm_bench PUBLIC -mcx16) target_compile_options(vptree_bsm_bench PUBLIC -fopenmp) + add_executable(vptree_bsm_bench_alt ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/vldb/vptree_bsm_bench_alt.cpp) + target_link_libraries(vptree_bsm_bench_alt PUBLIC gsl pthread atomic) + target_include_directories(vptree_bsm_bench_alt PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) + target_link_options(vptree_bsm_bench_alt PUBLIC -mcx16) + target_compile_options(vptree_bsm_bench_alt PUBLIC -fopenmp) + add_executable(fst_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/vldb/fst_bench.cpp) target_link_libraries(fst_bench PUBLIC gsl pthread atomic) target_include_directories(fst_bench PRIVATE include external external/fast_succinct_trie/include external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) @@ -240,11 +254,11 @@ if (vldb_bench) target_compile_options(alex_bench PUBLIC -fopenmp) set_property(TARGET alex_bench PROPERTY CXX_STANDARD 14) - add_executable(mtree_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/vldb/mtree_bench.cpp) - target_link_libraries(mtree_bench PUBLIC gsl pthread atomic gomp) - target_include_directories(mtree_bench PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) - target_link_options(mtree_bench PUBLIC -mcx16) - target_compile_options(mtree_bench PUBLIC -fopenmp) + add_executable(mtree_bench_alt ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/vldb/mtree_bench_alt.cpp) + target_link_libraries(mtree_bench_alt PUBLIC gsl pthread atomic gomp) + target_include_directories(mtree_bench_alt PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) + target_link_options(mtree_bench_alt PUBLIC -mcx16) + target_compile_options(mtree_bench_alt PUBLIC -fopenmp) endif() |