diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-01-16 13:18:37 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-01-16 13:18:37 -0500 |
| commit | 77589d4cc82b766d2cf16294fab98a57f6579cb4 (patch) | |
| tree | 0cc136d13c20021e0278b8b2ededf2652c27a84e /benchmarks/include | |
| parent | bac86504220da4c169089a3a1803e0a21f5acbc2 (diff) | |
| download | dynamic-extension-77589d4cc82b766d2cf16294fab98a57f6579cb4.tar.gz | |
Additional layout policies + more flexibility in buffer flushing
Diffstat (limited to 'benchmarks/include')
| -rw-r--r-- | benchmarks/include/standard_benchmarks.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/benchmarks/include/standard_benchmarks.h b/benchmarks/include/standard_benchmarks.h index dfa6513..76423ab 100644 --- a/benchmarks/include/standard_benchmarks.h +++ b/benchmarks/include/standard_benchmarks.h @@ -22,6 +22,7 @@ #include "framework/reconstruction/LevelingPolicy.h" #include "framework/reconstruction/TieringPolicy.h" #include "framework/reconstruction/BSMPolicy.h" +#include "framework/reconstruction/FloodL0Policy.h" constexpr double delete_proportion = 0.05; static size_t g_deleted_records = 0; @@ -38,7 +39,9 @@ de::ReconstructionPolicy<S, Q> *get_policy(size_t scale_factor, size_t buffer_si recon = new de::LevelingPolicy<S, Q>(scale_factor, buffer_size); } else if (policy == 2) { recon = new de::BSMPolicy<S, Q>(buffer_size); - } + } else if (policy == 3) { + recon = new de::FloodL0Policy<S, Q>(buffer_size); + } return recon; } |