refactor: shorten benchmark names
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 21 Oct 2023 17:32:33 +0000 (19:32 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 21 Oct 2023 17:32:33 +0000 (19:32 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
benchmarks/internal/bench.mjs

index 368cf29c949f487b3223b5dd90c74beedcd359d1..adff36153241f7843f702547237280a509bb7326 100644 (file)
@@ -15,7 +15,7 @@ const workerData = {
 
 // FixedThreadPool
 await runPoolifierPoolBenchmark(
-  'Poolifier FixedThreadPool',
+  'FixedThreadPool',
   WorkerTypes.thread,
   PoolTypes.fixed,
   poolSize,
@@ -27,7 +27,7 @@ await runPoolifierPoolBenchmark(
 
 // DynamicThreadPool
 await runPoolifierPoolBenchmark(
-  'Poolifier DynamicThreadPool',
+  'DynamicThreadPool',
   WorkerTypes.thread,
   PoolTypes.dynamic,
   poolSize,
@@ -39,7 +39,7 @@ await runPoolifierPoolBenchmark(
 
 // FixedClusterPool
 await runPoolifierPoolBenchmark(
-  'Poolifier FixedClusterPool',
+  'FixedClusterPool',
   WorkerTypes.cluster,
   PoolTypes.fixed,
   poolSize,
@@ -51,7 +51,7 @@ await runPoolifierPoolBenchmark(
 
 // DynamicClusterPool
 await runPoolifierPoolBenchmark(
-  'Poolifier DynamicClusterPool',
+  'DynamicClusterPool',
   WorkerTypes.cluster,
   PoolTypes.dynamic,
   poolSize,