Skip to content
Snippets Groups Projects
Commit a48391ea authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

simple-command: store user and system time as well

This is given to us by hyperfine directly, and is important information.
parent 35980a5f
No related branches found
No related tags found
No related merge requests found
Pipeline #96649 passed
......@@ -254,6 +254,8 @@
# we should store more
res["time"] = {}
res["time"]["user"] = r["results"][0]["user"]
res["time"]["system"] = r["results"][0]["system"]
res["time"]["median"] = r["results"][0]["median"]
res["time"]["mean"] = r["results"][0]["mean"]
res["time"]["standard-deviation"] = r["results"][0]["stddev"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment