Commit | Line | Data |
---|---|---|
7f685093 JB |
1 | // IMPORT LIBRARIES |
2 | const { ThreadPool } = require('threadwork') | |
3 | // FINISH IMPORT LIBRARIES | |
4 | // IMPORT FUNCTION TO BENCH | |
5 | const functionToBench = require('./functions/function-to-bench') | |
6 | // FINISH IMPORT FUNCTION TO BENCH | |
79e7d368 JB |
7 | const size = Number(process.env.POOL_SIZE) |
8 | const iterations = Number(process.env.NUM_ITERATIONS) | |
7f685093 JB |
9 | const data = { |
10 | test: 'MYBENCH', | |
11 | taskType: process.env['TASK_TYPE'] | |
12 | } | |
13 | ||
14 | const threadPool = new ThreadPool({ task: functionToBench, size: size }) | |
15 | ||
16 | async function run () { | |
17 | const promises = [] | |
18 | for (let i = 0; i < iterations; i++) { | |
19 | promises.push(threadPool.run(data)) | |
20 | } | |
21 | await Promise.all(promises) | |
22 | process.exit() | |
23 | } | |
24 | ||
25 | run() |