build: refine ignored files
[poolifier.git] / benchmarks / versus-external-pools / dynamic-suchmokuo-node-worker-threads-pool.js
... / ...
CommitLineData
1// IMPORT LIBRARIES
2const { DynamicPool } = require('node-worker-threads-pool')
3// FINISH IMPORT LIBRARIES
4// IMPORT FUNCTION TO BENCH
5const functionToBench = require('./functions/function-to-bench')
6// FINISH IMPORT FUNCTION TO BENCH
7const size = parseInt(process.env.POOL_SIZE)
8const iterations = parseInt(process.env.NUM_ITERATIONS)
9const data = {
10 test: 'MYBENCH',
11 taskType: process.env.TASK_TYPE,
12 taskSize: parseInt(process.env.TASK_SIZE)
13}
14
15const pool = new DynamicPool(size)
16
17async function run () {
18 const promises = []
19 for (let i = 0; i < iterations; i++) {
20 promises.push(
21 pool.exec({
22 task: functionToBench,
23 param: data
24 })
25 )
26 }
27 await Promise.all(promises)
28 // eslint-disable-next-line n/no-process-exit
29 process.exit()
30}
31
32run()