From b15ff04e363dfd9b9537ca2590034d42b627ba91 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 24 Dec 2022 22:07:36 +0100 Subject: [PATCH] Fixlet to tasks distribution tests MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- benchmarks/worker-selection/lru.js | 2 +- benchmarks/worker-selection/round-robin.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/worker-selection/lru.js b/benchmarks/worker-selection/lru.js index a4b2c69a..80d78893 100644 --- a/benchmarks/worker-selection/lru.js +++ b/benchmarks/worker-selection/lru.js @@ -168,7 +168,7 @@ function quickSelectRecursionRandomPivot (tasksMap) { } Benchmark.suite( - 'Tasks selection', + 'Less used worker tasks distribution', Benchmark.add('Loop select', () => { loopSelect(tasksMap) }), diff --git a/benchmarks/worker-selection/round-robin.js b/benchmarks/worker-selection/round-robin.js index 0b8b9ec2..67d3a365 100644 --- a/benchmarks/worker-selection/round-robin.js +++ b/benchmarks/worker-selection/round-robin.js @@ -37,7 +37,7 @@ function roundRobinIncrementModulo () { } Benchmark.suite( - 'Less recently used', + 'Round robin tasks distribution', Benchmark.add('Ternary off by one', () => { nextWorkerIndex = 0 roundRobinTernaryOffByOne() -- 2.34.1