diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-28 14:18:46 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-28 14:18:46 +0200 |
| commit | e0ff4c817412eab57cd5cbf65ed80c8552c2a368 (patch) | |
| tree | 5a55426e37e55071f82dc0316926cabf6d42dbe5 | |
| parent | 6da8769acff639f418b165fd729c412495024836 (diff) | |
| download | allocbench-e0ff4c817412eab57cd5cbf65ed80c8552c2a368.tar.gz allocbench-e0ff4c817412eab57cd5cbf65ed80c8552c2a368.zip | |
add allocsrcdir and allocbuild dir to globalvars
| -rw-r--r-- | src/globalvars.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/globalvars.py b/src/globalvars.py index 9a7e958..f1f76ab 100644 --- a/src/globalvars.py +++ b/src/globalvars.py @@ -17,12 +17,18 @@ srcdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()) """Source directory for all benchmarks""" benchsrcdir = os.path.join(srcdir, "benchmarks") +"""Source directory for all benchmarks""" +allocsrcdir = os.path.join(srcdir, "allocators") + """Root directory of allocbench""" allocbenchdir = os.path.dirname(srcdir) """Path of the build directory""" builddir = os.path.join(allocbenchdir, "build") +"""Path of the allocators build directory""" +allocbuilddir = os.path.join(builddir, "allocators") + """Directory were the benchmark results are stored""" resdir = None |
