Commit | Line | Data |
---|---|---|
144f78e0 JB |
1 | // IMPORT LIBRARIES |
2 | const workerpool = require('workerpool') | |
3 | // FINISH IMPORT LIBRARIES | |
6bd72cd0 JB |
4 | const size = parseInt(process.env.POOL_SIZE) |
5 | const iterations = parseInt(process.env.NUM_ITERATIONS) | |
6 | const dataArray = [ | |
7 | 'MYBENCH', | |
8 | process.env.TASK_TYPE, | |
9 | parseInt(process.env.TASK_SIZE) | |
10 | ] | |
144f78e0 JB |
11 | |
12 | const workerPool = workerpool.pool( | |
13 | './workers/workerpool/function-to-bench-worker.js', | |
14 | { | |
79e7d368 | 15 | minWorkers: size, |
144f78e0 JB |
16 | maxWorkers: size * 3, |
17 | workerType: 'thread' | |
18 | } | |
19 | ) | |
20 | ||
21 | async 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) | |
2f8c5b5c | 27 | // eslint-disable-next-line n/no-process-exit |
144f78e0 JB |
28 | process.exit() |
29 | } | |
30 | ||
31 | run() |