diff options
author | iximeow <me@iximeow.net> | 2024-04-02 00:29:17 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-04-02 00:29:17 -0700 |
commit | 96a83895ae7b99efe35c45066e4f35b4c441e359 (patch) | |
tree | b64384064c51136a36a5f35e9f3bab01c408a850 | |
parent | eb4718a1f01bdecea9afed0ae5129491ef1b247c (diff) |
correctly label fmt benchmark metrics
-rw-r--r-- | goodfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |