From a848d809495f1c8185f7cdfc1e96f9bcfb44f998 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 25 Jul 2026 22:49:20 -0700 Subject: [PATCH] Swap runs and size in output. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 84a7e49..ee053a2 100644 --- a/index.html +++ b/index.html @@ -212,13 +212,13 @@ SPDX-License-Identifier: GPL-3.0-or-later api = type.toLowerCase() await selfCheck(api) Cache.clear() - logger.log(`%cNanoPow ${type}`, 'color:green', `Calculate truncated harmonic mean of the truncated arithmetic rate of generating proof-of-work across ${runs} runs of ${size} samples.`) + logger.log(`%cNanoPow ${type}`, 'color:green', `Calculate truncated harmonic mean of the truncated arithmetic rate of generating proof-of-work for ${size} samples over ${runs} test runs.`) const rates = [] for (let i = 0; i < runs; i++) { await new Promise(r => setTimeout(r)) const times = [] for (let j = 0; j < size; j++) { - document.getElementById('status').innerHTML = `TESTING IN PROGRESS. THIS MAY TAKE A LONG TIME. ${i}/${runs} ${j}/${size}
` + document.getElementById('status').innerHTML = `TESTING IN PROGRESS. THIS MAY TAKE A LONG TIME. ${j}/${size} ${i}/${runs}
` try { const duration = await sequenceGenerateValidate(api, difficulty, effort) times.push(duration) -- 2.52.0