Skip to content

Commit 73ea936

Browse files
committed
Reorder columns
1 parent fbae228 commit 73ea936

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

site/static/compare/script.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -357,19 +357,19 @@ app.component('test-cases-table', {
357357
<th>Scenario</th>
358358
<th>% Change</th>
359359
<th>
360-
Significance Factor<span class="tooltip">?
360+
Significance Threshold<span class="tooltip">?
361361
<span class="tooltiptext">
362-
How much a particular result is over the significance threshold. A factor of 2.50x
363-
means the result is 2.5 times over the significance threshold.
362+
The minimum % change that is considered significant. The higher the significance threshold, the noisier a test case is.
363+
You can see <a href="https://github.com/rust-lang/rustc-perf/blob/master/docs/comparison-analysis.md#what-makes-a-test-result-significant">
364+
here</a> how the significance threshold is calculated.
364365
</span>
365366
</span>
366367
</th>
367368
<th>
368-
Significance Threshold<span class="tooltip">?
369+
Significance Factor<span class="tooltip">?
369370
<span class="tooltiptext">
370-
The minimum % change that is considered significant. The higher the significance, the noisier a test case is.
371-
You can see <a href="https://github.com/rust-lang/rustc-perf/blob/master/docs/comparison-analysis.md#what-makes-a-test-result-significant">
372-
here</a> how the significance threshold is calculated.
371+
How much a particular result is over the significance threshold. A factor of 2.50x
372+
means the result is 2.5 times over the significance threshold.
373373
</span>
374374
</span>
375375
</th>
@@ -401,10 +401,10 @@ app.component('test-cases-table', {
401401
</a>
402402
</td>
403403
<td>
404-
{{ testCase.significanceFactor ? testCase.significanceFactor.toFixed(2) + "x" : "-" }}
404+
{{ testCase.significanceThreshold ? testCase.significanceThreshold.toFixed(2) + "%" : "-" }}
405405
</td>
406406
<td>
407-
{{ testCase.significanceThreshold ? testCase.significanceThreshold.toFixed(2) + "%" : "-" }}
407+
{{ testCase.significanceFactor ? testCase.significanceFactor.toFixed(2) + "x" : "-" }}
408408
</td>
409409
<td v-if="showRawData" class="numeric">
410410
<a v-bind:href="detailedQueryLink(commitA, testCase)">

0 commit comments

Comments
 (0)