Skip to content

Commit add212b

Browse files
committed
Fix benchmark parsing
#307 changes the output format of the benchmarks adding an 'avg'. This broke the parsing of the benchmarks that is required for the Github benchmark action. This commit fixes that parsing and restores the benchmarking in CI. Signed-off-by: Matthias J. Kannwischer <[email protected]>
1 parent eeb04e4 commit add212b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ class Tests:
567567
{
568568
"name": f"{schemeStr} {primitive}",
569569
"unit": "cycles",
570-
"value": d[f"{primitive} cycles"],
570+
"value": d[f"{primitive} cycles (avg)"],
571571
}
572572
)
573573

0 commit comments

Comments
 (0)