Remove hyperfine debug option
[poolifier.git] / benchmarks / versus-external-pools / fixed-threadwork.js
... / ...
CommitLineData
1// IMPORT LIBRARIES
2const threadPool = require('./pool-threadwork')
3// FINISH IMPORT LIBRARIES
4const iterations = Number(process.env.NUM_ITERATIONS)
5const data = {
6 test: 'MYBENCH',
7 taskType: process.env['TASK_TYPE']
8}
9
10async function run () {
11 const promises = []
12 for (let i = 0; i < iterations; i++) {
13 promises.push(threadPool.run(data))
14 }
15 await Promise.all(promises)
16 process.exit()
17}
18
19run()