docs: add changelog entry
[poolifier.git] / benchmarks / internal / bench.mjs
index 7ef61bc6cba31225a4d8732b721422494deeb4d3..5ea11e18414b6f9c474a32ec92c0eba3d0538cb1 100644 (file)
@@ -1,13 +1,11 @@
+import { exit } from 'node:process'
 import {
   PoolTypes,
   WorkerTypes,
   availableParallelism
 } from '../../lib/index.mjs'
 import { TaskFunctions } from '../benchmarks-types.js'
-import {
-  buildPoolifierPool,
-  runPoolifierPoolBenchmark
-} from '../benchmarks-utils.js'
+import { runPoolifierPoolBenchmark } from '../benchmarks-utils.js'
 
 const poolSize = availableParallelism()
 const taskExecutions = 1
@@ -18,8 +16,10 @@ const workerData = {
 
 // FixedThreadPool
 await runPoolifierPoolBenchmark(
-  'Poolifier FixedThreadPool',
-  buildPoolifierPool(WorkerTypes.thread, PoolTypes.fixed, poolSize),
+  'FixedThreadPool',
+  WorkerTypes.thread,
+  PoolTypes.fixed,
+  poolSize,
   {
     taskExecutions,
     workerData
@@ -28,8 +28,10 @@ await runPoolifierPoolBenchmark(
 
 // DynamicThreadPool
 await runPoolifierPoolBenchmark(
-  'Poolifier DynamicThreadPool',
-  buildPoolifierPool(WorkerTypes.thread, PoolTypes.dynamic, poolSize),
+  'DynamicThreadPool',
+  WorkerTypes.thread,
+  PoolTypes.dynamic,
+  poolSize,
   {
     taskExecutions,
     workerData
@@ -38,8 +40,10 @@ await runPoolifierPoolBenchmark(
 
 // FixedClusterPool
 await runPoolifierPoolBenchmark(
-  'Poolifier FixedClusterPool',
-  buildPoolifierPool(WorkerTypes.cluster, PoolTypes.fixed, poolSize),
+  'FixedClusterPool',
+  WorkerTypes.cluster,
+  PoolTypes.fixed,
+  poolSize,
   {
     taskExecutions,
     workerData
@@ -48,10 +52,14 @@ await runPoolifierPoolBenchmark(
 
 // DynamicClusterPool
 await runPoolifierPoolBenchmark(
-  'Poolifier DynamicClusterPool',
-  buildPoolifierPool(WorkerTypes.cluster, PoolTypes.dynamic, poolSize),
+  'DynamicClusterPool',
+  WorkerTypes.cluster,
+  PoolTypes.dynamic,
+  poolSize,
   {
     taskExecutions,
     workerData
   }
 )
+
+exit()