X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fversus-external-pools%2Ffixed-threadwork.js;h=eb316b5354902b231438345305089aea96fabcce;hb=73cda44834b69b6120f256d40351a504fb86c1ae;hp=fcc370ff1922f1a06b2f9b05e300872f67bc405e;hpb=89e3192b83322814b62e5f5e575d3b8300fcadaa;p=poolifier.git diff --git a/benchmarks/versus-external-pools/fixed-threadwork.js b/benchmarks/versus-external-pools/fixed-threadwork.js index fcc370ff..eb316b53 100644 --- a/benchmarks/versus-external-pools/fixed-threadwork.js +++ b/benchmarks/versus-external-pools/fixed-threadwork.js @@ -1,18 +1,12 @@ // IMPORT LIBRARIES -const { ThreadPool } = require('threadwork') +const threadPool = require('./pool-threadwork') // FINISH IMPORT LIBRARIES -// IMPORT FUNCTION TO BENCH -const functionToBench = require('./functions/function-to-bench') -// FINISH IMPORT FUNCTION TO BENCH -const size = Number(process.env.POOL_SIZE) const iterations = Number(process.env.NUM_ITERATIONS) const data = { test: 'MYBENCH', taskType: process.env['TASK_TYPE'] } -const threadPool = new ThreadPool({ task: functionToBench, size: size }) - async function run () { const promises = [] for (let i = 0; i < iterations; i++) {