aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/all.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-09-22 18:35:47 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-09-22 18:35:47 +0200
commitcac85412d757b6054436dc9c63d30db645bc93ea (patch)
tree1858c4eefee907a1cc7c2031fdf7d0fd4f0fdb4c /src/allocators/all.py
parentcbc497138d1c4b77860e54304705cc157c2b800a (diff)
downloadallocbench-cac85412d757b6054436dc9c63d30db645bc93ea.tar.gz
allocbench-cac85412d757b6054436dc9c63d30db645bc93ea.zip
Add ArchiveArtifacts
ArchiveArtifacts check a downloaded archive against a provided checksum. The Archive is downloaded to cache/<name>/<name>.<format>. The only suported format is tar. ArchiveArtifacts can be used as sources of an Allocator.
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 a2b502a..0593c81 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, tbbmalloc, # llalloc, # streamflow,
+ jemalloc, hoard, mesh, supermalloc, scalloc, tbbmalloc, llalloc, # streamflow,
mimalloc, snmalloc]