blob: 0dcfd2c24781df04ec3b826b8f04cb63e642915d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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")
|