aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/BA_allocators.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/BA_allocators.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/BA_allocators.py')
-rw-r--r--src/allocators/BA_allocators.py24
1 files changed, 5 insertions, 19 deletions
diff --git a/src/allocators/BA_allocators.py b/src/allocators/BA_allocators.py
index 5f4577e..5ac8870 100644
--- a/src/allocators/BA_allocators.py
+++ b/src/allocators/BA_allocators.py
@@ -1,20 +1,6 @@
-from src.allocators.glibc import Glibc
-from src.allocators.tcmalloc import TCMalloc
-from src.allocators.jemalloc import Jemalloc
-from src.allocators.hoard import Hoard
+from src.allocators.glibc import glibc, glibc_notc
+from src.allocators.tcmalloc import tcmalloc
+from src.allocators.jemalloc import jemalloc
+from src.allocators.hoard import hoard
-glibc = Glibc("glibc", color="C1")
-
-glibc_notc = Glibc("glibc-notc",
- configure_args="--disable-experimental-malloc",
- color="C2")
-
-tcmalloc = TCMalloc("tcmalloc", color="C3")
-
-jemalloc = Jemalloc("jemalloc", color="C4")
-
-hoard = Hoard("Hoard", color="C5", patches=["allocators/hoard_make.patch"])
-
-allocators_to_build = [glibc, glibc_notc, tcmalloc, jemalloc, hoard]
-
-allocators = {a.name: a.build() for a in allocators_to_build}
+allocators = [glibc, glibc_notc, tcmalloc, jemalloc, hoard]