aboutsummaryrefslogtreecommitdiff
path: root/src/globalvars.py
blob: c897786da01f26be73406a931976d8548e8818aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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

"""Dict holding the allocators to compare"""
allocators = {}

"""File were the allocators definitions are loaded from"""
allocators_file = None

"""Path of the build directory"""
builddir = os.path.join(os.getcwd(), "build")

"""Directory were the benchmark results are stored"""
resdir = None