chore: update dependencies and switch to current mathjs tinybench
This commit is contained in:
parent
f1a2d04f4b
commit
38160464fa
6 changed files with 618 additions and 401 deletions
31
benchmark/formatTaskResult.js
Normal file
31
benchmark/formatTaskResult.js
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
const durationWidth = 10
|
||||||
|
const varianceWidth = 8
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format a result like "Task name 2.30 µs ±0.79%"
|
||||||
|
* @param {import('tinybench').Bench} bench
|
||||||
|
* @param {import('tinybench').Task} task
|
||||||
|
* @return {string}
|
||||||
|
*/
|
||||||
|
export function formatTaskResult (bench, task) {
|
||||||
|
const nameWidth = Math.max(...bench.tasks.map(task => task.name.length)) + 1
|
||||||
|
|
||||||
|
const name = task.name
|
||||||
|
const { variance, mean } = task.result.latency
|
||||||
|
|
||||||
|
const meanStr = `${(mean * 1000).toFixed(2)} \u00b5s`
|
||||||
|
const varianceStr = `±${((variance / mean) * 100).toFixed(2)}%`
|
||||||
|
return `${padRight(name, nameWidth)} ${padLeft(meanStr, durationWidth)} ${padLeft(varianceStr, varianceWidth)}`
|
||||||
|
}
|
||||||
|
|
||||||
|
function padRight (text, len, char = ' ') {
|
||||||
|
const add = Math.max(len - text.length, 0)
|
||||||
|
|
||||||
|
return text + char.repeat(add)
|
||||||
|
}
|
||||||
|
|
||||||
|
function padLeft (text, len, char = ' ') {
|
||||||
|
const add = Math.max(len - text.length, 0)
|
||||||
|
|
||||||
|
return char.repeat(add) + text
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
import Benchmark from 'benchmark'
|
import {Bench} from 'tinybench'
|
||||||
import padRight from 'pad-right'
|
import padRight from 'pad-right'
|
||||||
|
import { formatTaskResult } from './formatTaskResult.js'
|
||||||
import math from '../src/pocomath.mjs'
|
import math from '../src/pocomath.mjs'
|
||||||
|
|
||||||
function pad (text) {
|
function pad (text) {
|
||||||
|
@ -29,15 +30,14 @@ console.log('polynomials (with coefficients <=', maxCoeff, ')')
|
||||||
|
|
||||||
const results = []
|
const results = []
|
||||||
|
|
||||||
const suite = new Benchmark.Suite()
|
const bench = new Bench({time: 100, iterations: 100})
|
||||||
suite
|
|
||||||
.add(pad('count roots'), function () {
|
.add(pad('count roots'), function () {
|
||||||
const res = countRoots()
|
const res = countRoots()
|
||||||
results.push(res)
|
results.push(res)
|
||||||
})
|
})
|
||||||
.on('cycle', function (event) {
|
|
||||||
console.log(String(event.target))
|
bench.addEventListener(
|
||||||
})
|
'cycle',
|
||||||
.on('complete', function () {
|
event => console.log(formatTaskResult(bench, event.task))
|
||||||
})
|
)
|
||||||
.run()
|
await bench.run()
|
||||||
|
|
|
@ -20,13 +20,13 @@
|
||||||
license: 'Apache-2.0',
|
license: 'Apache-2.0',
|
||||||
type: 'module',
|
type: 'module',
|
||||||
devDependencies: {
|
devDependencies: {
|
||||||
benchmark: '^2.1.4',
|
mocha: '^11.1.0',
|
||||||
mocha: '^10.0.0',
|
|
||||||
'pad-right': '^0.2.2',
|
'pad-right': '^0.2.2',
|
||||||
|
tinybench: '^4.0.1',
|
||||||
},
|
},
|
||||||
dependencies: {
|
dependencies: {
|
||||||
'bigint-isqrt': '^0.2.1',
|
'bigint-isqrt': '^0.3.2',
|
||||||
'fraction.js': '^4.2.0',
|
'fraction.js': '^5.2.1',
|
||||||
'typed-function': '^3.0.0',
|
'typed-function': '^4.2.1',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
956
pnpm-lock.yaml
generated
956
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
||||||
import {adapted} from './Types/adapted.mjs'
|
import {adapted} from './Types/adapted.mjs'
|
||||||
import Fraction from 'fraction.js/bigfraction.js'
|
import Fraction from 'fraction.js'
|
||||||
import Returns from '../core/Returns.mjs'
|
import Returns from '../core/Returns.mjs'
|
||||||
|
|
||||||
export * from './arithmetic.mjs'
|
export * from './arithmetic.mjs'
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import assert from 'assert'
|
import assert from 'assert'
|
||||||
import math from '../../src/pocomath.mjs'
|
import math from '../../src/pocomath.mjs'
|
||||||
import Fraction from 'fraction.js/bigfraction.js'
|
import Fraction from 'fraction.js'
|
||||||
|
|
||||||
describe('fraction', () => {
|
describe('fraction', () => {
|
||||||
const half = new Fraction(1/2)
|
const half = new Fraction(1/2)
|
||||||
|
|
Loading…
Add table
Reference in a new issue