X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fbenchmarks-utils.mjs;h=16a656107fc6f00973fe7bdc6541a6bab2794a2b;hb=4b72aab982db24a30656e0b82a9866ca3a0f7480;hp=0cd3a172456d85efc733281cccc68cb323b44747;hpb=df6c496b012b4b211bb9a9066ca8e13be9393bfb;p=poolifier.git diff --git a/benchmarks/benchmarks-utils.mjs b/benchmarks/benchmarks-utils.mjs index 0cd3a172..16a65610 100644 --- a/benchmarks/benchmarks-utils.mjs +++ b/benchmarks/benchmarks-utils.mjs @@ -1,7 +1,6 @@ import { strictEqual } from 'node:assert' -import Benchmark from 'benchmark' -import { bench, group } from 'mitata' +import { bench, clear, group, run } from 'tatami-ng' import { DynamicClusterPool, @@ -55,75 +54,27 @@ const buildPoolifierPool = (workerType, poolType, poolSize, poolOptions) => { } const runPoolifierPool = async (pool, { taskExecutions, workerData }) => { - return await new Promise((resolve, reject) => { - let executions = 0 - for (let i = 1; i <= taskExecutions; i++) { - pool - .execute(workerData) - .then(() => { - ++executions - if (executions === taskExecutions) { - resolve({ ok: 1 }) - } - return undefined - }) - .catch(err => { - console.error(err) - reject(err) - }) - } - }) + for (let i = 1; i <= taskExecutions; i++) { + await pool.execute(workerData) + } } -export const runPoolifierBenchmarkBenchmarkJs = async ( +export const runPoolifierBenchmarkTatamiNg = async ( name, workerType, poolType, poolSize, { taskExecutions, workerData } ) => { - return await new Promise((resolve, reject) => { - let pool = buildPoolifierPool(workerType, poolType, poolSize) - try { - const suite = new Benchmark.Suite(name, { - onComplete: () => { - const destroyTimeout = setTimeout(() => { - console.error('Pool destroy timeout reached (30s)') - resolve() - pool = undefined - }, 30000) - pool - .destroy() - .then(resolve) - .catch(reject) - .finally(() => { - clearTimeout(destroyTimeout) - }) - .catch(() => {}) - }, - onCycle: event => { - console.info(event.target.toString()) - }, - onError: event => { - pool - .destroy() - .then(() => { - return reject(event.target.error) - }) - .catch(() => {}) - } - }) - for (const workerChoiceStrategy of Object.values( - WorkerChoiceStrategies - )) { - for (const enableTasksQueue of [false, true]) { - if (workerChoiceStrategy === WorkerChoiceStrategies.FAIR_SHARE) { - for (const measurement of [ - Measurements.runTime, - Measurements.elu - ]) { - suite.add( - `${name} with ${workerChoiceStrategy}, with measurement ${measurement} and ${ + try { + const pool = buildPoolifierPool(workerType, poolType, poolSize) + for (const workerChoiceStrategy of Object.values(WorkerChoiceStrategies)) { + for (const enableTasksQueue of [false, true]) { + if (workerChoiceStrategy === WorkerChoiceStrategies.FAIR_SHARE) { + for (const measurement of [Measurements.runTime, Measurements.elu]) { + group(name, () => { + bench( + `${name} with ${workerChoiceStrategy}, with ${measurement} and ${ enableTasksQueue ? 'with' : 'without' } tasks queue`, async () => { @@ -133,7 +84,7 @@ export const runPoolifierBenchmarkBenchmarkJs = async ( }) }, { - onStart: () => { + before: () => { pool.setWorkerChoiceStrategy(workerChoiceStrategy, { measurement }) @@ -150,9 +101,11 @@ export const runPoolifierBenchmarkBenchmarkJs = async ( } } ) - } - } else { - suite.add( + }) + } + } else { + group(name, () => { + bench( `${name} with ${workerChoiceStrategy} and ${ enableTasksQueue ? 'with' : 'without' } tasks queue`, @@ -163,7 +116,7 @@ export const runPoolifierBenchmarkBenchmarkJs = async ( }) }, { - onStart: () => { + before: () => { pool.setWorkerChoiceStrategy(workerChoiceStrategy) pool.enableTasksQueue(enableTasksQueue) strictEqual( @@ -174,101 +127,36 @@ export const runPoolifierBenchmarkBenchmarkJs = async ( } } ) - } - } - } - suite - .on('complete', function () { - console.info( - 'Fastest is ' + - LIST_FORMATTER.format(this.filter('fastest').map('name')) - ) - }) - .run({ async: true }) - } catch (error) { - pool - .destroy() - .then(() => { - return reject(error) - }) - .catch(() => {}) - } - }) -} - -export const buildPoolifierBenchmarkMitata = ( - name, - workerType, - poolType, - poolSize, - { taskExecutions, workerData } -) => { - try { - const pool = buildPoolifierPool(workerType, poolType, poolSize) - for (const workerChoiceStrategy of Object.values(WorkerChoiceStrategies)) { - for (const enableTasksQueue of [false, true]) { - if (workerChoiceStrategy === WorkerChoiceStrategies.FAIR_SHARE) { - for (const measurement of [Measurements.runTime, Measurements.elu]) { - group(name, () => { - bench( - `${name} with ${workerChoiceStrategy}, with ${measurement} and ${ - enableTasksQueue ? 'with' : 'without' - } tasks queue`, - async () => { - pool.setWorkerChoiceStrategy(workerChoiceStrategy, { - measurement - }) - pool.enableTasksQueue(enableTasksQueue) - strictEqual( - pool.opts.workerChoiceStrategy, - workerChoiceStrategy - ) - strictEqual(pool.opts.enableTasksQueue, enableTasksQueue) - strictEqual( - pool.opts.workerChoiceStrategyOptions.measurement, - measurement - ) - await runPoolifierPool(pool, { - taskExecutions, - workerData - }) - } - ) - }) - } - } else { - group(name, () => { - bench( - `${name} with ${workerChoiceStrategy} and ${ - enableTasksQueue ? 'with' : 'without' - } tasks queue`, - async () => { - pool.setWorkerChoiceStrategy(workerChoiceStrategy) - pool.enableTasksQueue(enableTasksQueue) - strictEqual( - pool.opts.workerChoiceStrategy, - workerChoiceStrategy - ) - strictEqual(pool.opts.enableTasksQueue, enableTasksQueue) - await runPoolifierPool(pool, { - taskExecutions, - workerData - }) - } - ) }) } } } - return pool + const report = await run() + clear() + await pool.destroy() + return report } catch (error) { console.error(error) } } -const LIST_FORMATTER = new Intl.ListFormat('en-US', { - style: 'long', - type: 'conjunction' -}) +export const convertTatamiNgToBmf = report => { + return report.benchmarks + .map(({ name, stats }) => { + return { + [name]: { + latency: { + value: stats?.avg, + lower_value: stats?.min, + upper_value: stats?.max + }, + throughput: { + value: stats?.iter + } + } + } + }) + .reduce((obj, item) => Object.assign(obj, item), {}) +} export { executeTaskFunction }