From f0f115f1d0c4fcebbdcfec6c20d2b8897ff8fef6 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 16 Jun 2025 06:03:08 -0700 Subject: [PATCH] Update thread count messaging on test page. --- test/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.html b/test/index.html index 1532621..19b73f6 100644 --- a/test/index.html +++ b/test/index.html @@ -43,7 +43,7 @@ SPDX-License-Identifier: GPL-3.0-or-later function average (times, type, effort) { const averages = stats(times) const title = type === 'WebGPU' - ? `NanoPow (${type}) | Effort: ${effort} | Dispatch: ${(0x100 * effort) ** 2} | Threads: ${8 * 8 * (0x100 * effort) ** 2}` + ? `NanoPow (${type}) | Effort: ${effort} | Dispatch: ${(0x100 * effort) ** 2} | Threads: ${64 * (0x100 * effort) ** 2}` : type === 'WebGL' ? `NanoPow (${type}) | Effort: ${effort} | Work per frame: ${Math.min(0x100 * effort, glSize) ** 2}` : `NanoPow (${type}) | Effort: ${effort}` -- 2.47.3