Skip to content

Commit 4e1eacc

Browse files
committed
lower threshold for acceptable grind time
1 parent 3e6c917 commit 4e1eacc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolchain/mfc/bench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def diff():
138138

139139
grind_time_value = lhs_summary[target.name]["grind"] / rhs_summary[target.name]["grind"]
140140
speedups[i] += f" & Grind: {grind_time_value:.2f}"
141-
if grind_time_value <0.98:
141+
if grind_time_value <0.95:
142142
raise MFCException(f"Benchmarking failed since grind time speedup for {target.name} below acceptable threshold (<0.98) - Case: {slug}")
143143
except Exception as _:
144144
err = 1

0 commit comments

Comments
 (0)