diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-24 17:23:22 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-24 17:23:22 +0200 |
| commit | af9a1be4d59438bcb24cdd64572841563860b87a (patch) | |
| tree | 51488cef37ffd47462ac8a82fb48be13be028d77 | |
| parent | f20c5285a0c0351a4cb8ac68a994a8d69457963e (diff) | |
| download | allocbench-af9a1be4d59438bcb24cdd64572841563860b87a.tar.gz allocbench-af9a1be4d59438bcb24cdd64572841563860b87a.zip | |
fix all allocators collection
| -rw-r--r-- | src/allocators/all.py | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/allocators/all.py b/src/allocators/all.py index f68863d..ccf48b8 100644 --- a/src/allocators/all.py +++ b/src/allocators/all.py @@ -5,18 +5,11 @@ import src.allocators.glibcs from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs from src.allocators.jemalloc import jemalloc 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 -mesh = Alloc("Mesh", sources=Alloc_Src("Mesh", - retrieve_cmds=["git clone https://github.com/plasma-umass/Mesh"], - reset_cmds=["git stash"]), - LD_PRELOAD="{srcdir}/libmesh.so", - build_cmds=["cd {srcdir}; git submodule update --init", - "cd {srcdir}; ./configure", - "cd {srcdir}; make -j 4", - "mkdir {dir}"]) - allocators = [*src.allocators.glibcs.allocators, tcmalloc, tcmalloc_nofs, - jemalloc, hoard, mesh, supermalloc, llalloc] + jemalloc, hoard, mesh, supermalloc, scalloc, llalloc] |
