We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d034d9f + 1e73c13 commit 6aa113dCopy full SHA for 6aa113d
site/frontend/src/pages/compare/runtime/runtime-page.vue
@@ -116,9 +116,21 @@ const filteredSummary = computed(() => computeSummary(comparisons.value));
116
@change="updateFilter"
117
/>
118
<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>
123
<ComparisonsTable
124
:comparisons="comparisons"
125
:has-non-relevant="allComparisons.length > 0"
126
:show-raw-data="filter.showRawData"
127
128
</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