aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/supermalloc.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-06-24 14:51:21 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-06-24 14:51:21 +0200
commit2d86e20f5a44aea66725686531463931f38aa2dc (patch)
treeb3e42e10e212aa61069775812cc821a2445a3b45 /src/allocators/supermalloc.py
parent366c9e27b13e976ce26ec6a97c6796eb1cdca887 (diff)
downloadallocbench-2d86e20f5a44aea66725686531463931f38aa2dc.tar.gz
allocbench-2d86e20f5a44aea66725686531463931f38aa2dc.zip
rework allocator definitions #2
bench.py no evals only if argument to -a is file path. Otherwise it will check if "arg".py is found in src/allocators/ then it imports it. Collection definitions must export a iterable member called allocators. Allocator definitions must export a member named "arg".
Diffstat (limited to 'src/allocators/supermalloc.py')
-rw-r--r--src/allocators/supermalloc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/allocators/supermalloc.py b/src/allocators/supermalloc.py
index 94aae7d..24fbb15 100644
--- a/src/allocators/supermalloc.py
+++ b/src/allocators/supermalloc.py
@@ -2,13 +2,13 @@ import src.allocator
version = "709663fb81ba091b0a78058869a644a272f4163d"
-sources=src.allocator.Allocator_Sources("SuperMalloc",
+sources = src.allocator.Allocator_Sources("SuperMalloc",
retrieve_cmds=["git clone https://github.com/kuszmaul/SuperMalloc"],
prepare_cmds=["git checkout {}".format(version)])
class SuperMalloc (src.allocator.Allocator):
- """jemalloc definition for allocbench"""
+ """SuperMalloc definition for allocbench"""
def __init__(self, name, **kwargs):
kwargs["sources"] = sources
@@ -18,5 +18,5 @@ class SuperMalloc (src.allocator.Allocator):
super().__init__(name, **kwargs)
+
supermalloc = SuperMalloc("SuperMalloc", color="C1")
-allocators = {supermalloc.name: supermalloc.build()}