diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-24 14:51:21 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-24 14:51:21 +0200 |
| commit | 2d86e20f5a44aea66725686531463931f38aa2dc (patch) | |
| tree | b3e42e10e212aa61069775812cc821a2445a3b45 /src/allocators/installed_allocators.py | |
| parent | 366c9e27b13e976ce26ec6a97c6796eb1cdca887 (diff) | |
| download | allocbench-2d86e20f5a44aea66725686531463931f38aa2dc.tar.gz allocbench-2d86e20f5a44aea66725686531463931f38aa2dc.zip | |
rework allocator definitions #2
bench.py no evals only if argument to -a is file path.
Otherwise it will check if "arg".py is found in src/allocators/
then it imports it.
Collection definitions must export a iterable member called allocators.
Allocator definitions must export a member named "arg".
Diffstat (limited to 'src/allocators/installed_allocators.py')
| -rw-r--r-- | src/allocators/installed_allocators.py | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/src/allocators/installed_allocators.py b/src/allocators/installed_allocators.py index 26fab5b..c478f13 100644 --- a/src/allocators/installed_allocators.py +++ b/src/allocators/installed_allocators.py @@ -1,16 +1,13 @@ """Default allocators using system libraries""" -import os import subprocess -import src.globalvars - maybe_allocators = ["tcmalloc", "jemalloc", "hoard"] -src.globalvars.allocators = {"libc": {"cmd_prefix" : "", - "binary_suffix" : "", - "LD_PRELOAD" : "", - "color" : "C1"}} +allocators = {"libc": {"cmd_prefix": "", + "binary_suffix": "", + "LD_PRELOAD": "", + "color": "C1"}} for i, t in enumerate(maybe_allocators): try: @@ -19,9 +16,9 @@ for i, t in enumerate(maybe_allocators): universal_newlines=True).stdout.strip() if path != "": - src.globalvars.allocators[t] = {"cmd_prefix": "", - "binary_suffix": "", - "LD_PRELOAD": path, - "color": "C"+str(i+2)} + allocators[t] = {"cmd_prefix": "", + "binary_suffix": "", + "LD_PRELOAD": path, + "color": "C"+str(i+2)} except: pass |
