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 e0a2e9e commit 5d29166Copy full SHA for 5d29166
bench_runner/plot.py
@@ -463,15 +463,10 @@ def get_comparison_value(ref, r):
463
r.cpython_hash
464
] = r
465
466
- runner_groups = defaultdict(list)
467
- runners = mrunners.get_runners()
468
- for runner in runners:
469
- runner_groups[runner.hostname].append(runner)
470
-
471
for subplot, ax in zip(subplots, axs):
472
ax.set_title(f"Effect of {subplot['name']}")
473
474
+ for runner in mrunners.get_runners():
475
head_results = commits.get(runner.nickname, {}).get(
476
tuple(subplot["head_flags"]), {}
477
)
0 commit comments