Remove hyperfine debug option
[poolifier.git] / benchmarks / versus-external-pools / static-suchmokuo-node-worker-threads-pool.js
1 // IMPORT LIBRARIES
2 const { StaticPool } = require('node-worker-threads-pool')
3 // FINISH IMPORT LIBRARIES
4 // IMPORT FUNCTION TO BENCH
5 const functionToBench = require('./functions/function-to-bench')
6 // FINISH IMPORT FUNCTION TO BENCH
7 const size = Number(process.env.POOL_SIZE)
8 const iterations = Number(process.env.NUM_ITERATIONS)
9 const data = {
10 test: 'MYBENCH',
11 taskType: process.env['TASK_TYPE']
12 }
13
14 const pool = new StaticPool({
15 size: size,
16 task: functionToBench
17 })
18
19 async function run () {
20 const promises = []
21 for (let i = 0; i < iterations; i++) {
22 promises.push(pool.exec(data))
23 }
24 await Promise.all(promises)
25 process.exit()
26 }
27
28 run()