.then(device => {
this.#device = device
this.#device.lost.then(loss => {
- console.warn(`(${loss.reason}) ${loss.message}. Reinitializing device.`)
+ console.dir(loss)
+ console.warn(loss.reason, loss.message)
+ console.warn(`Device lost. Reinitializing...`)
this.init()
})
this.#device.queue.submit([commandEncoder.finish()])
// Read results back to Javascript and then unmap buffer after reading
- try {
await this.#cpuBuffer.mapAsync(GPUMapMode.READ)
await this.#device.queue.onSubmittedWorkDone()
- } catch (err) {
- console.warn(`Error getting data from GPU, retrying. ${err}`)
- return await this.search(hash, threshold)
- }
+ try {
const data = new DataView(this.#cpuBuffer.getMappedRange())
const nonce = data.getBigUint64(0, true)
const found = !!data.getUint32(8)
const hex = nonce.toString(16).padStart(16, '0')
return hex
} else {
+ return await this.search(hash, threshold)
+ }
+ } catch (err) {
+ console.warn(`Error getting data from GPU, retrying. ${err}`)
return await this.search(hash, threshold)
}
}