Skip to content

Commit 6aa113d

Browse files
authored
Merge pull request #1685 from Kobzol/runtime-warning
Add a warning to compare page that runtime benchmarks are experimental
2 parents d034d9f + 1e73c13 commit 6aa113d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

site/frontend/src/pages/compare/runtime/runtime-page.vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,21 @@ const filteredSummary = computed(() => computeSummary(comparisons.value));
116116
@change="updateFilter"
117117
/>
118118
<OverallSummary :summary="filteredSummary" />
119+
<div class="warning">
120+
Runtime benchmarks are currently experimental and the results might be quite
121+
unstable/noisy. Please take this into account!
122+
</div>
119123
<ComparisonsTable
120124
:comparisons="comparisons"
121125
:has-non-relevant="allComparisons.length > 0"
122126
:show-raw-data="filter.showRawData"
123127
/>
124128
</template>
129+
130+
<style scoped lang="scss">
131+
.warning {
132+
margin: 5px 0;
133+
text-align: center;
134+
font-weight: bold;
135+
}
136+
</style>

0 commit comments

Comments
 (0)