]> zoso.dev Git - libnemo.git/commitdiff
Set up canvas size for proper pow comparison testing.
authorChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 21:29:10 +0000 (13:29 -0800)
committerChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 21:29:10 +0000 (13:29 -0800)
perf/block.perf.js

index d988e466ae8f4b7ad648bbab63b15094243bca8a..37c681c1ffeb722392c1b88ebc78f8d23a29d861 100644 (file)
@@ -90,6 +90,10 @@ await suite('Block performance', async () => {
        })
 
        await test(`nano-webgl-pow: Time to calculate proof-of-work for a send block ${COUNT} times`, async () => {
+               //@ts-expect-error
+               window.NanoWebglPow.width = 256 * Math.max(1, Math.floor(navigator.hardwareConcurrency))
+               //@ts-expect-error
+               window.NanoWebglPow.height = 256 * Math.max(1, Math.floor(navigator.hardwareConcurrency))
                const times = []
                for (let i = 0; i < COUNT; i++) {
                        const start = performance.now()