@@ -357,19 +357,19 @@ app.component('test-cases-table', {
357
357
<th>Scenario</th>
358
358
<th>% Change</th>
359
359
<th>
360
- Significance Factor <span class="tooltip">?
360
+ Significance Threshold <span class="tooltip">?
361
361
<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.
364
365
</span>
365
366
</span>
366
367
</th>
367
368
<th>
368
- Significance Threshold <span class="tooltip">?
369
+ Significance Factor <span class="tooltip">?
369
370
<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.
373
373
</span>
374
374
</span>
375
375
</th>
@@ -401,10 +401,10 @@ app.component('test-cases-table', {
401
401
</a>
402
402
</td>
403
403
<td>
404
- {{ testCase.significanceFactor ? testCase.significanceFactor .toFixed(2) + "x " : "-" }}
404
+ {{ testCase.significanceThreshold ? testCase.significanceThreshold .toFixed(2) + "% " : "-" }}
405
405
</td>
406
406
<td>
407
- {{ testCase.significanceThreshold ? testCase.significanceThreshold .toFixed(2) + "% " : "-" }}
407
+ {{ testCase.significanceFactor ? testCase.significanceFactor .toFixed(2) + "x " : "-" }}
408
408
</td>
409
409
<td v-if="showRawData" class="numeric">
410
410
<a v-bind:href="detailedQueryLink(commitA, testCase)">
0 commit comments