throw new Error('Query reported result but nonce value not found')
}
}
-
-export default `
- const NanoPowGlFragmentShader = \`${NanoPowGlFragmentShader}\`
- const NanoPowGlVertexShader = \`${NanoPowGlVertexShader}\`
- const PowGl = ${NanoPowGl}
-`
this.#device.queue.submit([commandEncoder.finish()])
// Read results back to Javascript and then unmap buffer after reading
- await this.#cpuBuffer.mapAsync(GPUMapMode.READ)
- await this.#device.queue.onSubmittedWorkDone()
+ await this.#cpuBuffer.mapAsync(GPUMapMode.READ)
+ await this.#device.queue.onSubmittedWorkDone()
try {
- const data = new DataView(this.#cpuBuffer.getMappedRange())
- const nonce = data.getBigUint64(0, true)
- const found = !!data.getUint32(8)
- this.#cpuBuffer.unmap()
-
- if (found) {
- const hex = nonce.toString(16).padStart(16, '0')
- return hex
- } else {
+ const data = new DataView(this.#cpuBuffer.getMappedRange())
+ const nonce = data.getBigUint64(0, true)
+ const found = !!data.getUint32(8)
+ this.#cpuBuffer.unmap()
+
+ if (found) {
+ const hex = nonce.toString(16).padStart(16, '0')
+ return hex
+ } else {
return await this.search(hash, threshold)
}
} catch (err) {
}
}
}
-
-export default `
- const NanoPowGpuComputeShader = \`${NanoPowGpuComputeShader}\`
- const NanoPowGpu = ${NanoPowGpu}
-`