aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/all.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-09-21 18:38:25 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-09-21 18:38:25 +0200
commit213e5625a9aa677230f261fcee01086f9ee1f850 (patch)
tree21a422f2152f0f1921b431199acb69cc7568e07b /src/allocators/all.py
parent84eec0baba49bff0a5c2b64834bc2d75d687e7b5 (diff)
downloadallocbench-213e5625a9aa677230f261fcee01086f9ee1f850.tar.gz
allocbench-213e5625a9aa677230f261fcee01086f9ee1f850.zip
replace AllocatorSources with Artifacts
Diffstat (limited to 'src/allocators/all.py')
-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 6b3b46a..a2b502a 100644
--- a/src/allocators/all.py
+++ b/src/allocators/all.py
@@ -24,12 +24,12 @@ from src.allocators.hoard import hoard
from src.allocators.mesh import mesh
from src.allocators.scalloc import scalloc
from src.allocators.supermalloc import supermalloc
-from src.allocators.llalloc import llalloc
+# 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,
+ jemalloc, hoard, mesh, supermalloc, scalloc, tbbmalloc, # llalloc, # streamflow,
mimalloc, snmalloc]