diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-03-05 15:47:11 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-03-05 15:47:11 +0100 |
| commit | 569f4af9656e1f56b84fb0c3fbbeebd5b6bf9714 (patch) | |
| tree | 8a268d2164f8d5d5edeaf9ba7a81ee0044ddda83 /bench.py | |
| parent | 373e47ad602347b4b59ea3fa0f43674879d6acf2 (diff) | |
| download | allocbench-569f4af9656e1f56b84fb0c3fbbeebd5b6bf9714.tar.gz allocbench-569f4af9656e1f56b84fb0c3fbbeebd5b6bf9714.zip | |
use new verbosity system in allocator.py
Diffstat (limited to 'bench.py')
| -rwxr-xr-x | bench.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -62,14 +62,14 @@ def main(): subprocess.run(make_cmd) - # Prepare compared allocators allocators_file = os.path.join("build", "allocators", "allocators.py") if args.allocators or os.path.isfile(allocators_file): allocators_files = args.allocators or allocators_file with open(allocators_files, "r") as f: - g = {"verbosity": verbosity} + print_status("Sourcing allocators definition ...") + g= {} exec(f.read(), g) src.allocators.allocators = g["allocators"] |
