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">
</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>