From 96a83895ae7b99efe35c45066e4f35b4c441e359 Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 2 Apr 2024 00:29:17 -0700 Subject: correctly label fmt benchmark metrics --- goodfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'goodfile') 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 -- cgit v1.1