diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-05-11 13:02:03 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-02 11:18:47 +0200 |
| commit | 855dc0f831447485a66ed042a6265537d4fe5bd2 (patch) | |
| tree | 5a55d208db31c4093d069808cbccf1551649e9e0 | |
| parent | 9d2275763919023653fabcac9db720e60630472c (diff) | |
| download | allocbench-855dc0f831447485a66ed042a6265537d4fe5bd2.tar.gz allocbench-855dc0f831447485a66ed042a6265537d4fe5bd2.zip | |
allocator.py: search for every alloactor bundled with allocbench
| -rw-r--r-- | allocbench/allocator.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/allocbench/allocator.py b/allocbench/allocator.py index 4712634..0eefce2 100644 --- a/allocbench/allocator.py +++ b/allocbench/allocator.py @@ -183,8 +183,7 @@ class Allocator: def collect_installed_allocators(): """Collect allocators using installed system libraries""" - # TODO: add more allocators - maybe_allocators = ["tcmalloc", "jemalloc", "hoard"] + maybe_allocators = list(collect_available_allocators().keys()) allocators = { "libc": { |
