[Git][ghc/ghc][master] Properly describe acceptance window for stat tests.
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Sat Mar 8 21:34:02 UTC 2025
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
68310e11 by Andreas Klebinger at 2025-03-08T16:33:39-05:00
Properly describe acceptance window for stat tests.
The relative metric is already in %, so no need to multiply by 100.
- - - - -
1 changed file:
- testsuite/driver/perf_notes.py
Changes:
=====================================
testsuite/driver/perf_notes.py
=====================================
@@ -162,7 +162,7 @@ class RelativeMetricAcceptanceWindow(MetricAcceptanceWindow):
return (lowerBound, upperBound)
def describe(self) -> str:
- return '+/- %1.1f%%' % (100*self.__tol)
+ return '+/- %1.1f%%' % (self.__tol)
def parse_perf_stat(stat_str: str) -> PerfStat:
field_vals = stat_str.strip('\t').split('\t')
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/68310e1184dfb7e8fad4dba4ba19930005ac5282
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/68310e1184dfb7e8fad4dba4ba19930005ac5282
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250308/595f4b10/attachment.html>
More information about the ghc-commits
mailing list