-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark.ts
More file actions
86 lines (66 loc) · 1.81 KB
/
Copy pathbenchmark.ts
File metadata and controls
86 lines (66 loc) · 1.81 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import { clearIdleLoop, setIdle, setIdleLoop } from '@node-3d/uv-loop';
type TResult = {
name: string;
seconds: number;
ticks: number;
ticksPerSecond: number;
};
const secondsArg = process.argv.find((arg) => arg.startsWith('--seconds='));
const seconds = secondsArg ? Number.parseFloat(secondsArg.slice('--seconds='.length)) : 5;
const durationMs = seconds * 1000;
const now = (): number => performance.now();
const finish = (name: string, startedAt: number, ticks: number): TResult => {
const elapsedMs = now() - startedAt;
const elapsedSeconds = elapsedMs / 1000;
return {
name,
seconds: Number(elapsedSeconds.toFixed(3)),
ticks,
ticksPerSecond: Math.round(ticks / elapsedSeconds),
};
};
const runSetImmediate = (): Promise<TResult> =>
new Promise((res) => {
const startedAt = now();
const deadline = startedAt + durationMs;
let ticks = 0;
const loop = (): void => {
ticks++;
if (now() >= deadline) {
res(finish('setImmediate loop', startedAt, ticks));
return;
}
setImmediate(loop);
};
setImmediate(loop);
});
const runSetIdle = (): Promise<TResult> =>
new Promise((res) => {
const startedAt = now();
const deadline = startedAt + durationMs;
let ticks = 0;
const loop = (): void => {
ticks++;
if (now() >= deadline) {
res(finish('setIdle loop', startedAt, ticks));
return;
}
setIdle(loop);
};
setIdle(loop);
});
const runSetIdleLoop = (): Promise<TResult> =>
new Promise((res) => {
const startedAt = now();
const deadline = startedAt + durationMs;
let ticks = 0;
const handle = setIdleLoop(() => {
ticks++;
if (now() >= deadline) {
clearIdleLoop(handle);
res(finish('setIdleLoop', startedAt, ticks));
}
});
});
const results = [await runSetImmediate(), await runSetIdle(), await runSetIdleLoop()];
console.table(results);