diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-21 18:38:25 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-21 18:38:25 +0200 |
| commit | 213e5625a9aa677230f261fcee01086f9ee1f850 (patch) | |
| tree | 21a422f2152f0f1921b431199acb69cc7568e07b /src/allocators/installed_allocators.py | |
| parent | 84eec0baba49bff0a5c2b64834bc2d75d687e7b5 (diff) | |
| download | allocbench-213e5625a9aa677230f261fcee01086f9ee1f850.tar.gz allocbench-213e5625a9aa677230f261fcee01086f9ee1f850.zip | |
replace AllocatorSources with Artifacts
Diffstat (limited to 'src/allocators/installed_allocators.py')
| -rw-r--r-- | src/allocators/installed_allocators.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/allocators/installed_allocators.py b/src/allocators/installed_allocators.py index 9a11d04..d45755a 100644 --- a/src/allocators/installed_allocators.py +++ b/src/allocators/installed_allocators.py @@ -22,11 +22,11 @@ import subprocess # TODO: add more allocators MAYBE_ALLOCATORS = ["tcmalloc", "jemalloc", "hoard"] -allocators = {"libc": {"cmd_prefix": "", - "binary_suffix": "", - "LD_PRELOAD": "", - "LD_LIBRARY_PATH": "", - "color": "C1"}} +allocators = {"libc": {"cmd_prefix": "", + "binary_suffix": "", + "LD_PRELOAD": "", + "LD_LIBRARY_PATH": "", + "color": "C1"}} for i, t in enumerate(MAYBE_ALLOCATORS): try: |
