summaryrefslogtreecommitdiff
path: root/benchmark/os/cpus.js
blob: da158a1b061c7fec3ba9121d2bd04334ddefc0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';

const common = require('../common.js');
const cpus = require('os').cpus;

const bench = common.createBenchmark(main, {
  n: [3e4]
});

function main({ n }) {
  bench.start();
  for (var i = 0; i < n; ++i)
    cpus();
  bench.end(n);
}