diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-03-06 12:19:40 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-03-06 12:19:40 +0100 |
| commit | 6027198427d77ae48932104eed2615968ae74616 (patch) | |
| tree | 3b1ce5d47685703311fea8fef4a2544e3ab7786a /src/globalvars.py | |
| parent | 4a735ff18724789c1c5d599b8e6a4d0b53103518 (diff) | |
| download | allocbench-6027198427d77ae48932104eed2615968ae74616.tar.gz allocbench-6027198427d77ae48932104eed2615968ae74616.zip | |
use timestamps in allocator build system
Diffstat (limited to 'src/globalvars.py')
| -rw-r--r-- | src/globalvars.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/globalvars.py b/src/globalvars.py index afc8bf6..fb80a26 100644 --- a/src/globalvars.py +++ b/src/globalvars.py @@ -1,3 +1,14 @@ +import os + + +"""Dict holding facts about the current benchmark run""" +facts = {} + +"""Verbosity level -1: quiet, 0: status, 1: info, 2: stdout of subcommands, 3: debug info""" verbosity = 0 +"""File were the allocators definitions are loaded from""" allocators_file = None + +"""Path of the build directory""" +builddir = os.path.join(os.getcwd(), "build") |
