]> zoso.dev Git - libnemo.git/commitdiff
Tweak layout of web page used for platform testing.
authorChris Duncan <chris@zoso.dev>
Wed, 8 Jan 2025 22:37:04 +0000 (14:37 -0800)
committerChris Duncan <chris@zoso.dev>
Wed, 8 Jan 2025 22:37:04 +0000 (14:37 -0800)
index.html

index dfd2c71abbe3a8aec34d7db60bcfaae885725e8f..c8ffa100b4be3a4846f617a13b62cb35974afdcd 100644 (file)
                                await block.pow()
                                const end = performance.now()
                                times.push(end - start)
-                               works.innerHTML += `libnemo-powgpu: ${block.work} (${end - start} ms)<br/>`
+                               works.innerHTML += `${block.work} (${end - start} ms)<br/>`
                                console.log(block.work)
                        }
-                       let sum = 0, reciprocals = 0, product = 1, count = times.length
+                       let sum = 0, reciprocals = 0, logarithms = 0, count = times.length, min = 0xffff, max = 0
                        for (let i = 0; i < count; i++) {
                                sum += times[i]
                                reciprocals += 1 / times[i]
-                               product *= times[i]
+                               logarithms += Math.log(times[i])
+                               min = Math.min(min, times[i])
+                               max = Math.max(max, times[i])
                        }
                        const t = document.getElementById('times')
-                       t.innerHTML = `libnemo-powgpu<br/>
-Total: ${sum} ms<br/>
+                       t.innerHTML = `Total: ${sum} ms<br/>
 Average: ${sum / count} ms<br/>
 Harmonic: ${count / reciprocals} ms<br/>
-Geometric: ${Math.pow(product, 1 / count)} ms<br/>`
+Geometric: ${Math.exp(logarithms / count)} ms<br/>
+Minimum: ${min} ms<br/>
+Maximum: ${max} ms<br/>`
                })()
        </script>
        <script type="module">
@@ -72,7 +75,8 @@ Geometric: ${Math.pow(product, 1 / count)} ms<br/>`
 </head>
 
 <body>
-       <p id="times"></p>
+       <h1>nano-pow</h1>
+       <p id="times">Total: <br />Average: <br />Harmonic: <br />Geometric: <br />Minimum: <br />Maximum: <br /></p>
        <p id="works"></p>
 </body>