diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-23 14:17:38 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-23 14:17:38 -0400 |
| commit | fc8b4c14bd2814447b5d3180c4ecf3742196c6bf (patch) | |
| tree | 0496dfead96639d2813f0a364f92dec0d7871cde /CMakeLists.txt | |
| parent | 4c616412f938bc06a12e7526c4e314e4451c083c (diff) | |
| download | dynamic-extension-fc8b4c14bd2814447b5d3180c4ecf3742196c6bf.tar.gz | |
Benchmarking updates
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a7b2f8a..60f5c9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,4 +105,14 @@ if (bench) target_link_libraries(pgm_rq_bench PUBLIC gsl pthread gomp) target_include_directories(pgm_rq_bench PRIVATE include external/PGM-index/include external/PLEX/include bench/include) target_compile_options(pgm_rq_bench PUBLIC -fopenmp) + + add_executable(isam_irs_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/isam_irs_bench.cpp) + target_link_libraries(isam_irs_bench PUBLIC gsl pthread gomp) + target_include_directories(isam_irs_bench PRIVATE include external/PGM-index/include external/PLEX/include bench/include) + target_compile_options(isam_irs_bench PUBLIC -fopenmp) + + add_executable(isam_rq_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/isam_rq_bench.cpp) + target_link_libraries(isam_rq_bench PUBLIC gsl pthread gomp) + target_include_directories(isam_rq_bench PRIVATE include external/PGM-index/include external/PLEX/include bench/include) + target_compile_options(isam_rq_bench PUBLIC -fopenmp) endif() |