aboutsummaryrefslogtreecommitdiff
path: root/summarize.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-07-11 21:09:59 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-07-11 21:09:59 +0200
commit3bf39c214f62a43aa8b0e72112d65f079509f08a (patch)
tree0a8e6973654ffc302916f64362f9e778119d5ddc /summarize.py
parentbdd47a691e5780a5b69d373382b343194fa123d9 (diff)
downloadallocbench-3bf39c214f62a43aa8b0e72112d65f079509f08a.tar.gz
allocbench-3bf39c214f62a43aa8b0e72112d65f079509f08a.zip
[globalvars] remove list of available benchmarks from globalvars.BENCHMARK to benchmark.AVAIL_BENCHMARKS
Diffstat (limited to 'summarize.py')
-rwxr-xr-xsummarize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/summarize.py b/summarize.py
index 95a2ae4..b91723e 100755
--- a/summarize.py
+++ b/summarize.py
@@ -121,7 +121,7 @@ def summarize(benchmarks=None,
cwd = os.getcwd()
os.chdir(allocbench.globalvars.resdir)
- for benchmark in allocbench.globalvars.BENCHMARKS:
+ for benchmark in allocbench.benchmark.AVAIL_BENCHMARKS:
if benchmarks and not benchmark in benchmarks:
continue
if exclude_benchmarks and benchmark in exclude_benchmarks: