}
adapter.requestDevice().then((device) => {
this.#device = device;
+ this.#device.lost.then((loss) => {
+ console.warn(`(${loss.reason}) ${loss.message}. Reinitializing device.`);
+ this.init();
+ });
this.#uboBuffer = this.#device.createBuffer({
size: 48,
usage: GPUBufferUsage.UNIFORM | GPUBufferUsage.COPY_DST
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(hash2, threshold);
}
const data = new DataView(this.#cpuBuffer.getMappedRange());