aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-11 19:10:49 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-11 19:10:49 +0200
commit070731ecd8a80c23b9745020a570ad385ea14aee (patch)
tree157a8fb824846575616022854d360afec85a745f /src/benchmarks
parent16ef25b5eda3a9fc51ecea309d2cb6b0508b009b (diff)
downloadallocbench-070731ecd8a80c23b9745020a570ad385ea14aee.tar.gz
allocbench-070731ecd8a80c23b9745020a570ad385ea14aee.zip
make bump pointer allocator available through src.allocators.bumpptr
Diffstat (limited to 'src/benchmarks')
-rw-r--r--src/benchmarks/loop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmarks/loop.py b/src/benchmarks/loop.py
index 595c54a..ea35adc 100644
--- a/src/benchmarks/loop.py
+++ b/src/benchmarks/loop.py
@@ -1,5 +1,5 @@
-from src.allocator import bumpptr
from src.benchmark import Benchmark
+from src.allocators.bumpptr import bumpptr
class Benchmark_Loop(Benchmark):