This is an automated email from the ASF dual-hosted git repository.
paulk-asert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new 9bf3f39e85 add compiler performance to dashboard
9bf3f39e85 is described below
commit 9bf3f39e8579d05c440a0588916db2ecfc20b793
Author: Paul King <[email protected]>
AuthorDate: Fri May 15 08:06:09 2026 +1000
add compiler performance to dashboard
---
subprojects/performance/dashboard/index.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/subprojects/performance/dashboard/index.html
b/subprojects/performance/dashboard/index.html
index 8aec88ef61..f1b3713de8 100644
--- a/subprojects/performance/dashboard/index.html
+++ b/subprojects/performance/dashboard/index.html
@@ -43,9 +43,9 @@
<h1>Groovy compiler performance (normalised against current)</h1>
<p class="intro">
Each daily run compiles a fixed set of Groovy source files using
<code>current</code>
- (master) and the latest releases of Groovy 3.x, 4.x and 5.x. Every series is
divided by
- the <code>current</code> measurement from the same run, so <code>current =
1.0</code> by
- construction. Values below 1 mean that version compiles faster than current;
values above
+ (master) and the latest releases of Groovy 3.x, 4.x and 5.x. The
<code>current</code>
+ measurement from the same run is divided by each series, so <code>current =
1.0</code> by
+ construction. Values above 1 mean that version compiles faster than current;
values below
1 mean it compiles slower. The trends show how current drifts relative to
the released lines.
</p>
@@ -108,7 +108,7 @@
if (b.extra) latestVersions[s.name] = b.extra;
datasets[idx].data.push({
x,
- y: b.value / current.value,
+ y: current.value / b.value,
absMs: b.value,
range: b.range || '',
commit: (run.commit && run.commit.id) ? run.commit.id.slice(0, 7) : '',
@@ -151,7 +151,7 @@
title: { display: true, text: 'Run date' },
},
y: {
- title: { display: true, text: 'compile time / current (ratio)' },
+ title: { display: true, text: 'speed relative to current (higher =
faster)' },
grid: { color: 'rgba(0,0,0,0.06)' },
},
},