diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-18 17:40:19 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-19 17:12:14 +0200 |
| commit | 366c9e27b13e976ce26ec6a97c6796eb1cdca887 (patch) | |
| tree | 8c9c848b169e52f2801b41cc15d35b6d0a9d3d6d /src/benchmarks/larson.py | |
| parent | 2757b2790cdc3127b742a127c77fa438710e7f70 (diff) | |
| download | allocbench-366c9e27b13e976ce26ec6a97c6796eb1cdca887.tar.gz allocbench-366c9e27b13e976ce26ec6a97c6796eb1cdca887.zip | |
apply some flake8 hints
Diffstat (limited to 'src/benchmarks/larson.py')
| -rw-r--r-- | src/benchmarks/larson.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benchmarks/larson.py b/src/benchmarks/larson.py index e070b7b..910fdf6 100644 --- a/src/benchmarks/larson.py +++ b/src/benchmarks/larson.py @@ -2,7 +2,7 @@ import re from src.benchmark import Benchmark -throughput_re = re.compile("^Throughput =\s*(?P<throughput>\d+) operations per second.$") +throughput_re = re.compile("^Throughput =\\s*(?P<throughput>\\d+) operations per second.$") class Benchmark_Larson(Benchmark): @@ -43,4 +43,5 @@ class Benchmark_Larson(Benchmark): title="'Larson cache misses: ' + arg + ' ' + str(arg_value)", filepostfix="cachemisses") + larson = Benchmark_Larson() |
