From 7c7a62a7f851df42007332585701ea5a4691aa1a Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Sun, 28 Mar 2021 05:17:06 +0200 Subject: feat(bench/deno_common): show ns/op (#9915) It's simply the inverse of the rate (ops/s), but it's often useful to look at time per op --- cli/bench/deno_common.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/bench/deno_common.js b/cli/bench/deno_common.js index dc6e29f42..831c26cfa 100644 --- a/cli/bench/deno_common.js +++ b/cli/bench/deno_common.js @@ -7,9 +7,10 @@ function benchSync(name, n, innerLoop) { const t2 = Date.now(); const dt = (t2 - t1) / 1e3; const r = n / dt; + const ns = Math.floor(dt / n * 1e9); console.log( `${name}:${" ".repeat(20 - name.length)}\t` + - `n = ${n}, dt = ${dt.toFixed(3)}s, r = ${r.toFixed(0)}/s`, + `n = ${n}, dt = ${dt.toFixed(3)}s, r = ${r.toFixed(0)}/s, t = ${ns}ns/op`, ); } -- cgit v1.2.3