aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-02-18 17:04:30 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-02-18 17:04:30 +0100
commit64adaca5ef13770988dc732e23d17d5df10a58cc (patch)
tree171232c8b941bf1c3b7928a80147bf8ea80685d1
parent3b8d3174bb39806f4752e14fa12582563d4b4c0c (diff)
downloadallocbench-64adaca5ef13770988dc732e23d17d5df10a58cc.tar.gz
allocbench-64adaca5ef13770988dc732e23d17d5df10a58cc.zip
fix tcmallocs in all allocator definition
-rw-r--r--src/allocators/all.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/allocators/all.py b/src/allocators/all.py
index 4ac0819..8be79e7 100644
--- a/src/allocators/all.py
+++ b/src/allocators/all.py
@@ -18,7 +18,7 @@
"""Collection containing all available allocators"""
import src.allocators.glibcs
-from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs
+from src.allocators.tcmalloc import tcmalloc, tcmalloc_gperftools, tcmalloc_gperftools_nofs
from src.allocators.jemalloc import jemalloc
from src.allocators.hoard import hoard
from src.allocators.mesh import mesh
@@ -31,6 +31,7 @@ from src.allocators.snmalloc import snmalloc
from src.allocators.rpmalloc import rpmalloc
-allocators = [*src.allocators.glibcs.allocators, tcmalloc, tcmalloc_nofs,
+allocators = [*src.allocators.glibcs.allocators,
+ tcmalloc, tcmalloc_gperftools, tcmalloc_gperftools_nofs,
jemalloc, hoard, mesh, supermalloc, scalloc, tbbmalloc, llalloc, # streamflow,
mimalloc, snmalloc, rpmalloc]