diff --git a/site/static/compare.html b/site/static/compare.html index 0e0080ed3..7b8a9cbee 100644 --- a/site/static/compare.html +++ b/site/static/compare.html @@ -208,9 +208,17 @@ text-align: center; } + #summary { + border: 1px dashed; + padding: 4px; + border-radius: 6px; + } + .summary { display: flex; + justify-content: center; align-items: center; + width: 20%; } @@ -322,7 +330,8 @@

Comparing {{stat}} between {
  • ? @@ -334,7 +343,8 @@

    Comparing {{stat}} between {

  • ? @@ -352,7 +362,8 @@

    Comparing {{stat}} between { ? Whether to filter out all benchmarks that do not show significant changes. A significant - change is any change above 0.2% for non-noisy benchmarks and 1.0% for noisy ones. + change is any change greater than or equal to 0.2% for non-noisy benchmarks and above + 1.0% for noisy ones.

    @@ -361,30 +372,35 @@

    Comparing {{stat}} between {
    -
    - Summary: - - {{summary.numRegressed}} - - - - - - - {{summary.numUnchanged}} - - - - - - {{summary.numImproved}} - - - - - +
    +
    + {{ + summaryPair[0] }}: +
    + + {{summaryPair[1].regressions.toString().padStart(3, " ")}} + + + + + + + {{summaryPair[1].unchanged.toString().padStart(3, " ")}} + + + + + + {{summaryPair[1].improvements.toString().padStart(3, " ")}} + + + + + +
    +