-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2699a3d
commit f355549
Showing
44 changed files
with
607 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
if (NOT DEFINED ENV{ALP_DATASET_DIR_PATH}) | ||
message(WARNING "Set ALP_DATASET_DIR_PATH environment variable") | ||
message(WARNING "Set HURRICANE_ISABEL_DATASET_DIR_PATH" environment variable) | ||
else () | ||
|
||
endif () | ||
|
||
add_subdirectory(bench_speed) | ||
|
||
|
||
add_executable(bench_alp_compression_ratio bench_compression_ratio.cpp) | ||
target_link_libraries(bench_alp_compression_ratio PUBLIC ALP gtest_main) | ||
gtest_discover_tests(bench_alp_compression_ratio) | ||
|
||
add_executable(test_compression_ratio test_compression_ratio.cpp) | ||
target_link_libraries(test_compression_ratio PUBLIC ALP gtest_main) | ||
gtest_discover_tests(test_compression_ratio) | ||
|
||
|
||
add_executable(bench_your_dataset bench_your_dataset.cpp) | ||
target_link_libraries(bench_your_dataset PUBLIC ALP gtest_main) | ||
gtest_discover_tests(bench_your_dataset) | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#include "benchmark.hpp" | ||
|
||
TEST_F(ALPBench, bench_alp_on_your_dataset) { bench_dataset(); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.