aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-02-19 16:49:44 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-02-19 16:49:44 +0100
commita9c86c4b9fb5cf14e9fff2fe7234e7b30a948d63 (patch)
tree92e4ba331d9ea7259fe8ebb2cfd974e6d91750e0
parentfc430834455242f5844b4f98019abe57558dd976 (diff)
downloadallocbench-a9c86c4b9fb5cf14e9fff2fe7234e7b30a948d63.tar.gz
allocbench-a9c86c4b9fb5cf14e9fff2fe7234e7b30a948d63.zip
add tcmalloc collection to all collection
-rw-r--r--src/allocators/all.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/allocators/all.py b/src/allocators/all.py
index 8be79e7..f7df109 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_gperftools, tcmalloc_gperftools_nofs
+import src.allocators.tcmallocs
from src.allocators.jemalloc import jemalloc
from src.allocators.hoard import hoard
from src.allocators.mesh import mesh
@@ -32,6 +32,6 @@ from src.allocators.rpmalloc import rpmalloc
allocators = [*src.allocators.glibcs.allocators,
- tcmalloc, tcmalloc_gperftools, tcmalloc_gperftools_nofs,
+ *src.allocators.tcmalloc.allocators,
jemalloc, hoard, mesh, supermalloc, scalloc, tbbmalloc, llalloc, # streamflow,
mimalloc, snmalloc, rpmalloc]