Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bench-eventlooputil.js « worker « benchmark - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d59f9f19ed563fd050e3ab60ffeddf06665738f (plain)
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
'use strict';

const common = require('../common.js');
const { Worker, parentPort } = require('worker_threads');

if (process.argv[2] === 'idle cats') {
  return parentPort.once('message', () => {});
}

const bench = common.createBenchmark(main, {
  n: [1e6],
  method: [
    'ELU_simple',
    'ELU_passed',
  ],
});

function main({ method, n }) {
  switch (method) {
    case 'ELU_simple':
      benchELUSimple(n);
      break;
    case 'ELU_passed':
      benchELUPassed(n);
      break;
    default:
      throw new Error(`Unsupported method ${method}`);
  }
}

function benchELUSimple(n) {
  const worker = new Worker(__filename, { argv: ['idle cats'] });

  spinUntilIdle(worker, () => {
    bench.start();
    for (let i = 0; i < n; i++)
      worker.performance.eventLoopUtilization();
    bench.end(n);
    worker.postMessage('bye');
  });
}

function benchELUPassed(n) {
  const worker = new Worker(__filename, { argv: ['idle cats'] });

  spinUntilIdle(worker, () => {
    let elu = worker.performance.eventLoopUtilization();
    bench.start();
    for (let i = 0; i < n; i++)
      elu = worker.performance.eventLoopUtilization(elu);
    bench.end(n);
    worker.postMessage('bye');
  });
}

function spinUntilIdle(w, cb) {
  const t = w.performance.eventLoopUtilization();
  if (t.idle + t.active > 0)
    return process.nextTick(cb);
  setTimeout(() => spinUntilIdle(w, cb), 1);
}