We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c25de2e commit 353f39fCopy full SHA for 353f39f
graalpython/com.oracle.graal.python.benchmarks/python/harness.py
@@ -429,7 +429,7 @@ def run_benchmark(args):
429
bench_args.append(arg)
430
i += 1
431
432
- min_required_iterations = max(startup)
+ min_required_iterations = max(startup) if startup else 0
433
if startup and iterations < min_required_iterations:
434
print("### WARNING: you've specified less iterations than required to measure the startup. Overriding iterations with %d" % min_required_iterations)
435
iterations = min_required_iterations
0 commit comments