mirror of https://github.com/nodejs/node.git
benchmark: keep decimals in results
Some benchmarks' results are small values, so keeping decimals when running them manually (not comparing) can be helpful. PR-URL: https://github.com/nodejs/node/pull/10559 Reviewed-By: James M Snell <jasnell@gmail.com>pull/10559/head
parent
f955c734ba
commit
7889416b8a
|
@ -195,8 +195,9 @@ function formatResult(data) {
|
|||
conf += ' ' + key + '=' + JSON.stringify(data.conf[key]);
|
||||
}
|
||||
|
||||
const rate = Math.floor(data.rate)
|
||||
.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,');
|
||||
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]);
|
||||
return `${data.name}${conf}: ${rate}`;
|
||||
}
|
||||
|
||||
|
|
|
@ -56,8 +56,9 @@ if (format === 'csv') {
|
|||
conf = conf.replace(/"/g, '""');
|
||||
console.log(`"${data.name}", "${conf}", ${data.rate}, ${data.time}`);
|
||||
} else {
|
||||
const rate = Math.floor(data.rate)
|
||||
.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,');
|
||||
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]);
|
||||
console.log(`${data.name} ${conf}: ${rate}`);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue