From: Jérôme Benoit Date: Sat, 16 Mar 2024 21:08:17 +0000 (+0100) Subject: perf: remove unneeded estimated cpu speed computation X-Git-Tag: v3.1.23~19 X-Git-Url: https://git.piment-noir.org/?p=poolifier.git;a=commitdiff_plain;h=bbbf303c069e3763defd0452177340d805e9b1f6 perf: remove unneeded estimated cpu speed computation Signed-off-by: Jérôme Benoit --- diff --git a/src/pools/utils.ts b/src/pools/utils.ts index 7c1b7866..533ca9cc 100644 --- a/src/pools/utils.ts +++ b/src/pools/utils.ts @@ -100,27 +100,14 @@ const getDefaultWeights = ( return weights } -const estimatedCpuSpeed = (): number => { - const runs = 150000000 - const begin = performance.now() - // eslint-disable-next-line no-empty - for (let i = runs; i > 0; i--) {} - const end = performance.now() - const duration = end - begin - return Math.trunc(runs / duration / 1000) // in MHz -} - -const estCpuSpeed = estimatedCpuSpeed() - -const getDefaultWorkerWeight = (estimatedCpuSpeed = estCpuSpeed): number => { +const getDefaultWorkerWeight = (): number => { let cpusCycleTimeWeight = 0 for (const cpu of cpus()) { // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition if (cpu.speed == null || cpu.speed === 0) { cpu.speed = - // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition - cpus().find(cpu => cpu.speed != null && cpu.speed !== 0)?.speed ?? - estimatedCpuSpeed + // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, @typescript-eslint/no-non-null-assertion, + cpus().find(cpu => cpu.speed != null && cpu.speed !== 0)!.speed } // CPU estimated cycle time const numberOfDigits = cpu.speed.toString().length - 1