chore: update dependencies and switch to current mathjs tinybench

This commit is contained in:
Glen Whitney 2025-03-18 22:04:15 -07:00
parent f1a2d04f4b
commit 38160464fa
6 changed files with 618 additions and 401 deletions

View 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
}

View file

@ -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()

View file

@ -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',
}, },
} }

954
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -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'

View file

@ -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)