diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-11 17:10:54 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-09-11 17:28:29 +0200 |
| commit | fa133027c5489c66646adfa50fd4659618f443a9 (patch) | |
| tree | b69f775b2cb68b6094d0a42a28842c45deb9f388 | |
| parent | 436f6e63072f3537e66cef87dd8f6ae776dd0454 (diff) | |
| download | allocbench-fa133027c5489c66646adfa50fd4659618f443a9.tar.gz allocbench-fa133027c5489c66646adfa50fd4659618f443a9.zip | |
fix wrong use of benchmark.results["facts"]
| -rw-r--r-- | src/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmark.py b/src/benchmark.py index c8e1584..f9b4dfd 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -332,7 +332,7 @@ class Benchmark: # save one valid result to expand invalid results valid_result = {} - self.fatcs["runs"] = runs + self.results["facts"]["runs"] = runs n = len(list(self.iterate_args())) * len(self.allocators) for run in range(1, runs + 1): |
