Skip to content

Commit 72ec97c

Browse files
committed
For the longitudinal plots, when finding the base comparison to compare
against, use results without flags rather than whatever happens to be found first.
1 parent 6bb4917 commit 72ec97c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bench_runner/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def get_comparison_value(ref, r, base):
298298
runner_results = [r for r in runner_results if r.flags == []]
299299

300300
for r in results:
301-
if r.nickname == runner and r.version == base:
301+
if r.nickname == runner and r.version == base and r.flags == []:
302302
ref = r
303303
break
304304
else:

0 commit comments

Comments
 (0)