Improve scale() performance

This commit is contained in:
Alexander Zobnin
2017-06-26 12:23:04 +03:00
parent f095053ba5
commit 007ddbf72f
11 changed files with 67 additions and 5 deletions

View File

@@ -45,6 +45,17 @@ module.exports = [
}
}
},
{
name: 'scale',
tests: {
'scale()': () => {
ts.scale(datapoints, 42);
},
'scale_perf()': () => {
ts.scale_perf(datapoints, 42);
}
}
},
{
name: 'groupBy vs groupBy_perf',
tests: {