diff options
Diffstat (limited to 'cli/bench/deno_common.js')
-rw-r--r-- | cli/bench/deno_common.js | 3 |
1 files changed, 2 insertions, 1 deletions
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`, ); } |