Commit 5c17b757 authored by Paul's avatar Paul
Browse files

Use min

parent 694cb20a
...@@ -47,7 +47,7 @@ def benchmark_one(config, tuning): ...@@ -47,7 +47,7 @@ def benchmark_one(config, tuning):
def benchmark(config, size): def benchmark(config, size):
times = [benchmark_one(config, i) for i in range(size)] times = [benchmark_one(config, i) for i in range(size)]
return times.index(max(times)) return times.index(min(times))
def benchmark_log(f): def benchmark_log(f):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment