X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Finternal%2Fbench.mjs;h=3484951cfb187a42bf1af5f325cd1c436adb6baf;hb=9536123094d1ab7212e1980662d952a1d590ab8a;hp=258854f864702ecf92816e151b33d14f38c96840;hpb=4735284627d276d3532cb3bd4b6d7fe392bb6b8b;p=poolifier.git diff --git a/benchmarks/internal/bench.mjs b/benchmarks/internal/bench.mjs index 258854f8..3484951c 100644 --- a/benchmarks/internal/bench.mjs +++ b/benchmarks/internal/bench.mjs @@ -1,92 +1,37 @@ -import Benchmark from 'benchmark' import { - Measurements, PoolTypes, - WorkerChoiceStrategies, WorkerTypes, availableParallelism } from '../../lib/index.mjs' import { TaskFunctions } from '../benchmarks-types.mjs' import { - LIST_FORMATTER, buildPoolifierPool, - runPoolifierTest + runPoolifierPoolBenchmark } from '../benchmarks-utils.mjs' -const poolifierSuite = new Benchmark.Suite('Poolifier', { - onCycle: event => { - console.info(event.target.toString()) - }, - onComplete: function () { - console.info( - 'Fastest is ' + LIST_FORMATTER.format(this.filter('fastest').map('name')) - ) - } -}) - const poolSize = availableParallelism() -const benchmarkSettings = [] -for (const poolType of Object.values(PoolTypes)) { - for (const workerType of Object.values(WorkerTypes)) { - if (workerType === WorkerTypes.cluster) { - continue - } - 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]) { - benchmarkSettings.push([ - `${poolType}|${workerType}|${workerChoiceStrategy}|tasks queue:${enableTasksQueue}|measurement:${measurement}`, - workerType, - poolType, - poolSize, - { - workerChoiceStrategy, - workerChoiceStrategyOptions: { - measurement - }, - enableTasksQueue - } - ]) - } - } else { - benchmarkSettings.push([ - `${poolType}|${workerType}|${workerChoiceStrategy}|tasks queue:${enableTasksQueue}`, - workerType, - poolType, - poolSize, - { - workerChoiceStrategy, - enableTasksQueue - } - ]) - } - } - } - } -} - const taskExecutions = 1 const workerData = { function: TaskFunctions.jsonIntegerSerialization, - taskSize: 100 + taskSize: 1000 } -for (const [ - name, - workerType, - poolType, - poolSize, - poolOptions -] of benchmarkSettings) { - poolifierSuite.add(name, async () => { - const pool = buildPoolifierPool(workerType, poolType, poolSize, poolOptions) - await runPoolifierTest(pool, { - taskExecutions, - workerData - }) - await pool.destroy() - }) -} +// FixedThreadPool +await runPoolifierPoolBenchmark( + 'Poolifier FixedThreadPool', + buildPoolifierPool(WorkerTypes.thread, PoolTypes.fixed, poolSize), + { + taskExecutions, + workerData + } +) -poolifierSuite.run({ async: true }) +// DynamicThreadPool +await runPoolifierPoolBenchmark( + 'Poolifier DynamicThreadPool', + buildPoolifierPool(WorkerTypes.thread, PoolTypes.dynamic, poolSize), + { + taskExecutions, + workerData + } +)