From 2d86e20f5a44aea66725686531463931f38aa2dc Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 24 Jun 2019 14:51:21 +0200 Subject: 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". --- src/allocators/no_falsesharing.py | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) (limited to 'src/allocators/no_falsesharing.py') diff --git a/src/allocators/no_falsesharing.py b/src/allocators/no_falsesharing.py index fee631c..2514b7c 100644 --- a/src/allocators/no_falsesharing.py +++ b/src/allocators/no_falsesharing.py @@ -1,18 +1,5 @@ -from src.allocators.tcmalloc import TCMalloc -from src.allocators.glibc import Glibc +from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs +from src.allocators.glibc import glibc, glibc_nofs -glibc = Glibc("glibc", color="C1") -glibc_nofs = Glibc("glibc_nofs", - patches=["{patchdir}/glibc_2.28_no_passive_falsesharing.patch"], - color="C2") - -tcmalloc = TCMalloc("tcmalloc", color="C3") - -tcmalloc_nofs = TCMalloc("tcmalloc_nofs", - patches= ["{patchdir}/tcmalloc_2.7_no_active_falsesharing.patch"], - color="C4") - -allocators_to_build = [glibc, glibc_nofs, tcmalloc, tcmalloc_nofs] - -allocators = {a.name: a.build() for a in allocators_to_build} +allocators = [glibc, glibc_nofs, tcmalloc, tcmalloc_nofs] -- cgit v1.2.3