| 1 | #include "benchmark.hpp" |
| 2 | |
| 3 | TEST_F(ALPBench, bench_alp_on_alp_dataset) { |
| 4 | std::string result_path = alp_bench::get_paths().alp_result_dir_path + "compression_ratio/double/alp_dataset.csv"; |
| 5 | typed_bench_dataset<double>(alp_bench::get_alp_dataset(), result_path); |
| 6 | } |
| 7 | |
| 8 | TEST_F(ALPBench, bench_alp_on_sp_dataset) { |
| 9 | std::string result_path = alp_bench::get_paths().alp_result_dir_path + "compression_ratio/float/sp_dataset.csv"; |
nothing calls this directly
no test coverage detected