diff options
| -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": { |
