Bump rollup from 2.41.5 to 2.42.0 (#283)
[poolifier.git] / benchmarks / versus-external-pools / dynamic-poolifier.js
CommitLineData
be0676b3 1// IMPORT LIBRARIES
144f78e0 2const { DynamicThreadPool } = require('poolifier')
be0676b3
APA
3// FINISH IMPORT LIBRARIES
4const size = process.env.POOL_SIZE
5const iterations = process.env.NUM_ITERATIONS
6const data = {
9f7e7a99 7 test: 'MYBENCH',
8 taskType: process.env['TASK_TYPE']
be0676b3
APA
9}
10
11const dynamicPool = new DynamicThreadPool(
3474e5d3 12 Number(size),
be0676b3 13 size * 3,
1927ee67 14 './workers/poolifier/function-to-bench-worker.js'
be0676b3
APA
15)
16
17async function run () {
18 const promises = []
19 for (let i = 0; i < iterations; i++) {
20 promises.push(dynamicPool.execute(data))
21 }
22 await Promise.all(promises)
23 process.exit()
24}
25
26run()