Commit | Line | Data |
---|---|---|
8fca9288 | 1 | import workerpool from 'workerpool' |
479ba9f6 JB |
2 | import { executeAsyncFn } from '../benchmarks-utils.mjs' |
3 | ||
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( | |
8fca9288 | 13 | './workers/workerpool/function-to-bench-worker.mjs', |
144f78e0 | 14 | { |
02749105 JB |
15 | minWorkers: Math.floor(size / 2), |
16 | maxWorkers: size, | |
144f78e0 JB |
17 | workerType: 'thread' |
18 | } | |
19 | ) | |
20 | ||
21 | async function run () { | |
1655b92e | 22 | const promises = new Set() |
144f78e0 | 23 | for (let i = 0; i < iterations; i++) { |
1655b92e | 24 | promises.add(workerPool.exec('functionToBench', dataArray)) |
144f78e0 JB |
25 | } |
26 | await Promise.all(promises) | |
2f8c5b5c | 27 | // eslint-disable-next-line n/no-process-exit |
144f78e0 JB |
28 | process.exit() |
29 | } | |
30 | ||
479ba9f6 | 31 | await executeAsyncFn(run) |