summaryrefslogtreecommitdiffstats
path: root/benchmarks/include
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-05-25 13:35:10 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-05-25 13:35:10 -0400
commit7f823ef35733230d3fd1e12e52fecde89f415e8b (patch)
treedded33d97e313b5bdb417e7b611c3dc03f7c8ac0 /benchmarks/include
parentaa15300f8302bf713d752a775f32060b59b8746f (diff)
downloaddynamic-extension-7f823ef35733230d3fd1e12e52fecde89f415e8b.tar.gz
Updates for tail latency stall testing
Diffstat (limited to 'benchmarks/include')
-rw-r--r--benchmarks/include/standard_benchmarks.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/benchmarks/include/standard_benchmarks.h b/benchmarks/include/standard_benchmarks.h
index 2e990a7..8c282d7 100644
--- a/benchmarks/include/standard_benchmarks.h
+++ b/benchmarks/include/standard_benchmarks.h
@@ -25,6 +25,7 @@
#include "framework/reconstruction/TieringPolicy.h"
#include "framework/reconstruction/BSMPolicy.h"
#include "framework/reconstruction/FloodL0Policy.h"
+#include "framework/reconstruction/CompactOnFull.h"
#include "framework/reconstruction/BackgroundTieringPolicy.h"
constexpr double delete_proportion = 0.05;
@@ -49,6 +50,8 @@ std::unique_ptr<de::ReconstructionPolicy<S, Q>> get_policy(size_t scale_factor,
recon = new de::FixedShardCountPolicy<S, Q>(buffer_size, scale_factor, reccnt);
} else if (policy == 5) {
recon = new de::BackgroundTieringPolicy<S, Q>(scale_factor, buffer_size, modifier);
+ } else if (policy == 6) {
+ recon = new de::CompactOnFull<S, Q>(scale_factor, buffer_size, modifier);
}
return std::unique_ptr<de::ReconstructionPolicy<S, Q>>(recon);