X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Futils.ts;h=533ca9cc7c27e6a9dc066315aa2e9560536a5775;hb=bbbf303c069e3763defd0452177340d805e9b1f6;hp=7c1b7866e6d958687ba6dc2e2c29827706caab4f;hpb=10c74f8a996cd15f294bdb31ad31d59ab0177db1;p=poolifier.git 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