Fixlet to tasks distribution tests
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 24 Dec 2022 21:07:36 +0000 (22:07 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 24 Dec 2022 21:07:36 +0000 (22:07 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
benchmarks/worker-selection/lru.js
benchmarks/worker-selection/round-robin.js

index a4b2c69a330e0394cd82eff32e4f7768ed111a09..80d78893061e5d943eb467736759cc4adbc76ce5 100644 (file)
@@ -168,7 +168,7 @@ function quickSelectRecursionRandomPivot (tasksMap) {
 }
 
 Benchmark.suite(
-  'Tasks selection',
+  'Less used worker tasks distribution',
   Benchmark.add('Loop select', () => {
     loopSelect(tasksMap)
   }),
index 0b8b9ec23de9d3d49c753e4aa81914d0940fa84b..67d3a365e7e9f96394e46a970d97cced6689a2a0 100644 (file)
@@ -37,7 +37,7 @@ function roundRobinIncrementModulo () {
 }
 
 Benchmark.suite(
-  'Less recently used',
+  'Round robin tasks distribution',
   Benchmark.add('Ternary off by one', () => {
     nextWorkerIndex = 0
     roundRobinTernaryOffByOne()