blob: fb80a262c032157a2cf501303a7156339b00cce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")
|