forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbench-hrtime.js
More file actions
40 lines (35 loc) · 840 Bytes
/
bench-hrtime.js
File metadata and controls
40 lines (35 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
const common = require('../common');
const assert = require('assert');
const bench = common.createBenchmark(main, {
n: [1e6],
type: ['raw', 'diff', 'bigint']
});
function main({ n, type }) {
const hrtime = process.hrtime;
let noDead = type === 'bigint' ? hrtime.bigint() : hrtime();
switch (type) {
case 'raw':
bench.start();
for (let i = 0; i < n; i++) {
noDead = hrtime();
}
bench.end(n);
break;
case 'diff':
bench.start();
for (let i = 0; i < n; i++) {
noDead = hrtime(noDead);
}
bench.end(n);
break;
case 'bigint':
bench.start();
for (let i = 0; i < n; i++) {
noDead = hrtime.bigint();
}
bench.end(n);
break;
}
assert.ok(Array.isArray(noDead) || typeof noDead === 'bigint');
}