aboutsummaryrefslogtreecommitdiff
path: root/src/globalvars.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/globalvars.py')
-rw-r--r--src/globalvars.py11
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")