perf(ci): initial GH action to run benchmark vs. external pools
[poolifier.git] / benchmarks / versus-external-pools / dynamic-poolifier.mjs
... / ...
CommitLineData
1import { DynamicThreadPool } from 'poolifier'
2import { executeAsyncFn } from '../benchmarks-utils.mjs'
3
4const size = parseInt(process.env.POOL_SIZE)
5const iterations = parseInt(process.env.NUM_ITERATIONS)
6const data = {
7 test: 'MYBENCH',
8 taskType: process.env.TASK_TYPE,
9 taskSize: parseInt(process.env.TASK_SIZE)
10}
11
12const dynamicThreadPool = new DynamicThreadPool(
13 Math.floor(size / 2),
14 size,
15 './workers/poolifier/function-to-bench-worker.mjs',
16 {
17 enableTasksQueue: false
18 }
19)
20
21async function run () {
22 const promises = new Set()
23 for (let i = 0; i < iterations; i++) {
24 promises.add(dynamicThreadPool.execute(data))
25 }
26 await Promise.all(promises)
27 // eslint-disable-next-line n/no-process-exit
28 process.exit()
29}
30
31await executeAsyncFn(run)