aboutsummaryrefslogtreecommitdiff
path: root/goodfile
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2024-04-02 00:29:17 -0700
committeriximeow <me@iximeow.net>2024-04-02 00:29:17 -0700
commit96a83895ae7b99efe35c45066e4f35b4c441e359 (patch)
treeb64384064c51136a36a5f35e9f3bab01c408a850 /goodfile
parenteb4718a1f01bdecea9afed0ae5129491ef1b247c (diff)
correctly label fmt benchmark metrics
Diffstat (limited to 'goodfile')
-rw-r--r--goodfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/goodfile b/goodfile
index 1b23c52..37db819 100644
--- a/goodfile
+++ b/goodfile
@@ -115,7 +115,7 @@ if Build.environment.has("perf") then
ipc = measurements[instructions_name] / measurements[cycles_name]
Build.metric("fmt IPC", string.format("%.3f", ipc))
inst_per_decode = measurements[instructions_name] / measurements["decoded"]
- Build.metric("fmt instructions/decode", string.format("%.1f", inst_per_decode))
+ Build.metric("fmt instructions/decode+display", string.format("%.1f", inst_per_decode))
ms_per_decode = measurements["elapsed_ms"] / measurements["decoded"]
- Build.metric("fmt ns/decode", string.format("%.2f", ms_per_decode * 1000000))
+ Build.metric("fmt ns/decode+display", string.format("%.2f", ms_per_decode * 1000000))
end