aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-22 20:53:40 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-22 20:53:40 +0200
commit1b478ed44852482e26cef81edeaed7d9be536ab9 (patch)
tree77767a9b26cb92388b80529ad011809cd23d27d4
parent33c3fd5190e486f097509c5a5ba35bcd313cc7a0 (diff)
downloadallocbench-1b478ed44852482e26cef81edeaed7d9be536ab9.tar.gz
allocbench-1b478ed44852482e26cef81edeaed7d9be536ab9.zip
add snmalloc to all allocators
-rw-r--r--src/allocators/all.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/allocators/all.py b/src/allocators/all.py
index d39c165..b64ba59 100644
--- a/src/allocators/all.py
+++ b/src/allocators/all.py
@@ -11,8 +11,9 @@ from src.allocators.supermalloc import supermalloc
from src.allocators.llalloc import llalloc
from src.allocators.tbbmalloc import tbbmalloc
from src.allocators.mimalloc import mimalloc
+from src.allocators.snmalloc import snmalloc
allocators = [*src.allocators.glibcs.allocators, tcmalloc, tcmalloc_nofs,
jemalloc, hoard, mesh, supermalloc, scalloc, llalloc, tbbmalloc,
- mimalloc]
+ mimalloc, snmalloc]