adapter.requestDevice()
.then(device => {
this.#device = device
+ this.#device.lost.then(loss => {
+ console.warn(`(${loss.reason}) ${loss.message}. Reinitializing device.`)
+ this.init()
+ })
// Create buffers for writing GPU calculations and reading from Javascript
this.#uboBuffer = this.#device.createBuffer({
await this.#cpuBuffer.mapAsync(GPUMapMode.READ)
await this.#device.queue.onSubmittedWorkDone()
} catch (err) {
- console.warn(`Reinitializing after catching error ${err}`)
- this.init()
+ console.warn(`Error getting data from GPU, retrying. ${err}`)
return await this.search(hash, threshold)
}
const data = new DataView(this.#cpuBuffer.getMappedRange())