X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fbenchmarks-utils.mjs;h=5db55b3b11c9b8c956e46397674e71a34471d241;hb=5b95eb9bcafda56ce57003da834cf4e153bb0509;hp=0971e683413c4fc420586a6d4423e5be27f5a0a2;hpb=6aec0be366216d2bf76eafb51cbf1c05521e9df8;p=poolifier.git diff --git a/benchmarks/benchmarks-utils.mjs b/benchmarks/benchmarks-utils.mjs index 0971e683..5db55b3b 100644 --- a/benchmarks/benchmarks-utils.mjs +++ b/benchmarks/benchmarks-utils.mjs @@ -80,22 +80,55 @@ export const runPoolifierBenchmarkBenchmarkJs = async ( workerType, poolType, poolSize, + poolOptions, { taskExecutions, workerData } ) => { return await new Promise((resolve, reject) => { - const pool = buildPoolifierPool(workerType, poolType, poolSize) - try { - const suite = new Benchmark.Suite(name, { - onComplete: () => { + const pool = buildPoolifierPool(workerType, poolType, poolSize, poolOptions) + let workerChoiceStrategy + let enableTasksQueue + let workerChoiceStrategyOptions + if (poolOptions != null) { + ({ + workerChoiceStrategy, + enableTasksQueue, + workerChoiceStrategyOptions + } = poolOptions) + } + const measurement = workerChoiceStrategyOptions?.measurement + new Benchmark( + `${name} with ${workerChoiceStrategy ?? pool.opts.workerChoiceStrategy}${ + measurement != null ? `, with ${measurement}` : '' + } and ${enableTasksQueue ? 'with' : 'without'} tasks queue`, + async () => { + await runPoolifierPool(pool, { + taskExecutions, + workerData + }) + }, + { + onStart: () => { + if (workerChoiceStrategy != null) { + strictEqual(pool.opts.workerChoiceStrategy, workerChoiceStrategy) + } + if (enableTasksQueue != null) { + strictEqual(pool.opts.enableTasksQueue, enableTasksQueue) + } + if (measurement != null) { + strictEqual( + pool.opts.workerChoiceStrategyOptions.measurement, + measurement + ) + } + }, + onComplete: event => { + console.info(event.target.toString()) if (pool.started && !pool.destroying) { pool.destroy().then(resolve).catch(reject) } else { resolve() } }, - onCycle: event => { - console.info(event.target.toString()) - }, onError: event => { if (pool.started && !pool.destroying) { pool @@ -108,48 +141,50 @@ export const runPoolifierBenchmarkBenchmarkJs = async ( reject(event.target.error) } } - }) - 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 ${ - enableTasksQueue ? 'with' : 'without' - } tasks queue`, - async () => { - await runPoolifierPool(pool, { - taskExecutions, - workerData - }) - }, - { - onStart: () => { - pool.setWorkerChoiceStrategy(workerChoiceStrategy, { - measurement - }) - pool.enableTasksQueue(enableTasksQueue) - strictEqual( - pool.opts.workerChoiceStrategy, - workerChoiceStrategy - ) - strictEqual(pool.opts.enableTasksQueue, enableTasksQueue) - strictEqual( - pool.opts.workerChoiceStrategyOptions.measurement, - measurement - ) - } - } - ) - } - } else { + } + ).run({ async: true }) + }) +} + +export const runPoolifierBenchmarkBenchmarkJsSuite = async ( + name, + workerType, + poolType, + poolSize, + { taskExecutions, workerData } +) => { + return await new Promise((resolve, reject) => { + const pool = buildPoolifierPool(workerType, poolType, poolSize) + const suite = new Benchmark.Suite(name, { + onComplete: () => { + if (pool.started && !pool.destroying) { + pool.destroy().then(resolve).catch(reject) + } else { + resolve() + } + }, + onCycle: event => { + console.info(event.target.toString()) + }, + onError: event => { + if (pool.started && !pool.destroying) { + pool + .destroy() + .then(() => { + return reject(event.target.error) + }) + .catch(() => {}) + } else { + reject(event.target.error) + } + } + }) + 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} and ${ + `${name} with ${workerChoiceStrategy}, with ${measurement} and ${ enableTasksQueue ? 'with' : 'without' } tasks queue`, async () => { @@ -160,35 +195,57 @@ export const runPoolifierBenchmarkBenchmarkJs = async ( }, { onStart: () => { - pool.setWorkerChoiceStrategy(workerChoiceStrategy) + pool.setWorkerChoiceStrategy(workerChoiceStrategy, { + measurement + }) pool.enableTasksQueue(enableTasksQueue) strictEqual( pool.opts.workerChoiceStrategy, workerChoiceStrategy ) strictEqual(pool.opts.enableTasksQueue, enableTasksQueue) + strictEqual( + pool.opts.workerChoiceStrategyOptions.measurement, + measurement + ) } } ) } + } else { + suite.add( + `${name} with ${workerChoiceStrategy} and ${ + enableTasksQueue ? 'with' : 'without' + } tasks queue`, + async () => { + await runPoolifierPool(pool, { + taskExecutions, + workerData + }) + }, + { + onStart: () => { + pool.setWorkerChoiceStrategy(workerChoiceStrategy) + pool.enableTasksQueue(enableTasksQueue) + strictEqual( + pool.opts.workerChoiceStrategy, + workerChoiceStrategy + ) + strictEqual(pool.opts.enableTasksQueue, enableTasksQueue) + } + } + ) } } - 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(() => {}) } + suite + .on('complete', function () { + console.info( + 'Fastest is ' + + LIST_FORMATTER.format(this.filter('fastest').map('name')) + ) + }) + .run({ async: true }) }) }