aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/no_falsesharing.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-06-17 14:54:26 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-06-17 14:54:26 +0200
commit0d192f8cf3c21b2382e227fab057dabe16ea5e8b (patch)
treed1182f33bd69e72fdde0a4731287f28c318ef109 /src/allocators/no_falsesharing.py
parent3988f2e21754208a548725c590fb42e372a32efa (diff)
downloadallocbench-0d192f8cf3c21b2382e227fab057dabe16ea5e8b.tar.gz
allocbench-0d192f8cf3c21b2382e227fab057dabe16ea5e8b.zip
reduce code duplication by giving each known allocator its own class
also move allocator related code to src/allocators
Diffstat (limited to 'src/allocators/no_falsesharing.py')
-rw-r--r--src/allocators/no_falsesharing.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/allocators/no_falsesharing.py b/src/allocators/no_falsesharing.py
new file mode 100644
index 0000000..fee631c
--- /dev/null
+++ b/src/allocators/no_falsesharing.py
@@ -0,0 +1,18 @@
+from src.allocators.tcmalloc import TCMalloc
+from src.allocators.glibc import Glibc
+
+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}