build: refine ignored files
[poolifier.git] / benchmarks / versus-external-pools / fixed-workerpool.js
... / ...
CommitLineData
1// IMPORT LIBRARIES
2const workerpool = require('workerpool')
3// FINISH IMPORT LIBRARIES
4const size = parseInt(process.env.POOL_SIZE)
5const iterations = parseInt(process.env.NUM_ITERATIONS)
6const dataArray = [
7 'MYBENCH',
8 process.env.TASK_TYPE,
9 parseInt(process.env.TASK_SIZE)
10]
11
12const workerPool = workerpool.pool(
13 './workers/workerpool/function-to-bench-worker.js',
14 {
15 minWorkers: size,
16 maxWorkers: size,
17 workerType: 'thread'
18 }
19)
20
21async function run () {
22 const promises = []
23 for (let i = 0; i < iterations; i++) {
24 promises.push(workerPool.exec('functionToBench', dataArray))
25 }
26 await Promise.all(promises)
27 // eslint-disable-next-line n/no-process-exit
28 process.exit()
29}
30
31run()