2 const workerpool
= require('workerpool')
3 // FINISH IMPORT LIBRARIES
4 const size
= parseInt(process
.env
.POOL_SIZE
)
5 const iterations
= parseInt(process
.env
.NUM_ITERATIONS
)
9 parseInt(process
.env
.TASK_SIZE
)
12 const workerPool
= workerpool
.pool(
13 './workers/workerpool/function-to-bench-worker.js',
21 async
function run () {
23 for (let i
= 0; i
< iterations
; i
++) {
24 promises
.push(workerPool
.exec('functionToBench', dataArray
))
26 await Promise
.all(promises
)
27 // eslint-disable-next-line n/no-process-exit