diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-12-11 21:31:38 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-12-11 21:43:33 +0100 |
| commit | c9d168d6d45d57304c7dcbe4c5cbaf949385764c (patch) | |
| tree | 6a73e1c5dddb2c9a74f8c1582a535fa8ca046b81 /src/benchmarks/blowup.py | |
| parent | 372a5366458c88a3571b4b7a19db538bbf947c3d (diff) | |
| download | allocbench-c9d168d6d45d57304c7dcbe4c5cbaf949385764c.tar.gz allocbench-c9d168d6d45d57304c7dcbe4c5cbaf949385764c.zip | |
fmt benchmark definitions with yapf
Diffstat (limited to 'src/benchmarks/blowup.py')
| -rw-r--r-- | src/benchmarks/blowup.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/benchmarks/blowup.py b/src/benchmarks/blowup.py index d55a0d7..aca9293 100644 --- a/src/benchmarks/blowup.py +++ b/src/benchmarks/blowup.py @@ -14,7 +14,6 @@ # # You should have received a copy of the GNU General Public License # along with allocbench. If not, see <http://www.gnu.org/licenses/>. - """Definition of the blowup micro benchmark""" from src.benchmark import Benchmark @@ -45,8 +44,14 @@ class BenchmarkBlowup(Benchmark): allocators["Ideal-RSS"] = {"color": "xkcd:gold"} self.results["stats"]["Ideal-RSS"] = {} for perm in self.iterate_args(args=self.results["args"]): - self.results["stats"]["Ideal-RSS"][perm] = {"mean": {"VmHWM": 1024 * 100}, - "std" : {"VmHWM": 0}} + self.results["stats"]["Ideal-RSS"][perm] = { + "mean": { + "VmHWM": 1024 * 100 + }, + "std": { + "VmHWM": 0 + } + } self.barplot_single_arg("{VmHWM}/1000", ylabel='"VmHWM in MB"', |
