diff options
| -rw-r--r-- | src/benchmarks/loop.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/benchmarks/loop.py b/src/benchmarks/loop.py index ef291c4..bf43310 100644 --- a/src/benchmarks/loop.py +++ b/src/benchmarks/loop.py @@ -1,3 +1,4 @@ +from src.allocator import bumpptr from src.benchmark import Benchmark @@ -15,6 +16,9 @@ class Benchmark_Loop(Benchmark): self.requirements = ["loop"] super().__init__() + # add bumpptr alloc + self.allocators["bumpptr"] = bumpptr.build() + def summary(self): # Speed self.plot_fixed_arg("perm.nthreads / ({task-clock}/1000)", |
