2016-01-30 13:27:02 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const path = require('path');
|
2016-02-01 10:30:00 +00:00
|
|
|
const fork = require('child_process').fork;
|
|
|
|
const CLI = require('./_cli.js');
|
|
|
|
|
|
|
|
const cli = CLI(`usage: ./node run.js [options] [--] <category> ...
|
|
|
|
Run each benchmark in the <category> directory a single time, more than one
|
|
|
|
<categoty> directory can be specified.
|
|
|
|
|
|
|
|
--filter pattern string to filter benchmark scripts
|
|
|
|
--set variable=value set benchmark variable (can be repeated)
|
2016-08-03 11:40:53 +00:00
|
|
|
--format [simple|csv] optional value that specifies the output format
|
2016-02-01 10:30:00 +00:00
|
|
|
`, {
|
|
|
|
arrayArgs: ['set']
|
|
|
|
});
|
|
|
|
const benchmarks = cli.benchmarks();
|
|
|
|
|
|
|
|
if (benchmarks.length === 0) {
|
2016-08-03 11:40:53 +00:00
|
|
|
console.error('No benchmarks found');
|
|
|
|
process.exitCode = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const validFormats = ['csv', 'simple'];
|
|
|
|
const format = cli.optional.format || 'simple';
|
|
|
|
if (!validFormats.includes(format)) {
|
|
|
|
console.error('Invalid format detected');
|
|
|
|
process.exitCode = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format === 'csv') {
|
|
|
|
console.log('"filename", "configuration", "rate", "time"');
|
2016-01-30 13:27:02 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 10:30:00 +00:00
|
|
|
(function recursive(i) {
|
|
|
|
const filename = benchmarks[i];
|
|
|
|
const child = fork(path.resolve(__dirname, filename), cli.optional.set);
|
2016-01-30 13:27:02 +00:00
|
|
|
|
2016-08-03 11:40:53 +00:00
|
|
|
if (format !== 'csv') {
|
|
|
|
console.log();
|
|
|
|
console.log(filename);
|
|
|
|
}
|
2016-01-30 13:27:02 +00:00
|
|
|
|
2016-02-01 10:30:00 +00:00
|
|
|
child.on('message', function(data) {
|
|
|
|
// Construct configuration string, " A=a, B=b, ..."
|
|
|
|
let conf = '';
|
|
|
|
for (const key of Object.keys(data.conf)) {
|
|
|
|
conf += ' ' + key + '=' + JSON.stringify(data.conf[key]);
|
|
|
|
}
|
2016-08-03 11:40:53 +00:00
|
|
|
// delete first space of the configuration
|
|
|
|
conf = conf.slice(1);
|
|
|
|
if (format === 'csv') {
|
|
|
|
// Escape quotes (") for correct csv formatting
|
|
|
|
conf = conf.replace(/"/g, '""');
|
|
|
|
console.log(`"${data.name}", "${conf}", ${data.rate}, ${data.time}`);
|
|
|
|
} else {
|
2017-01-01 02:50:25 +00:00
|
|
|
var rate = data.rate.toString().split('.');
|
|
|
|
rate[0] = rate[0].replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,');
|
|
|
|
rate = (rate[1] ? rate.join('.') : rate[0]);
|
2016-12-20 19:57:28 +00:00
|
|
|
console.log(`${data.name} ${conf}: ${rate}`);
|
2016-08-03 11:40:53 +00:00
|
|
|
}
|
2016-02-01 10:30:00 +00:00
|
|
|
});
|
2016-01-30 13:27:02 +00:00
|
|
|
|
2016-02-01 10:30:00 +00:00
|
|
|
child.once('close', function(code) {
|
2016-01-30 13:27:02 +00:00
|
|
|
if (code) {
|
|
|
|
process.exit(code);
|
2016-02-01 10:30:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are more benchmarks execute the next
|
|
|
|
if (i + 1 < benchmarks.length) {
|
|
|
|
recursive(i + 1);
|
2016-01-30 13:27:02 +00:00
|
|
|
}
|
|
|
|
});
|
2016-02-01 10:30:00 +00:00
|
|
|
})(0);
|