diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-07-11 21:09:59 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-07-11 21:09:59 +0200 |
| commit | 3bf39c214f62a43aa8b0e72112d65f079509f08a (patch) | |
| tree | 0a8e6973654ffc302916f64362f9e778119d5ddc /summarize.py | |
| parent | bdd47a691e5780a5b69d373382b343194fa123d9 (diff) | |
| download | allocbench-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-x | summarize.py | 2 |
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: |
