summaryrefslogtreecommitdiff
path: root/benchmark/misc/timers.js
blob: 13b18fffc5ead79abcd4a028939abc1b618f069d (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
'use strict';
var common = require('../common.js');

var bench = common.createBenchmark(main, {
  thousands: [500],
  type: ['depth', 'breadth']
});

function main(conf) {
  var n = +conf.thousands * 1e3;
  if (conf.type === 'breadth')
    breadth(n);
  else
    depth(n);
}

function depth(N) {
  var n = 0;
  bench.start();
  setTimeout(cb);
  function cb() {
    n++;
    if (n === N)
      bench.end(N / 1e3);
    else
      setTimeout(cb);
  }
}

function breadth(N) {
  var n = 0;
  bench.start();
  function cb() {
    n++;
    if (n === N)
      bench.end(N / 1e3);
  }
  for (var i = 0; i < N; i++) {
    setTimeout(cb);
  }
}