]> zoso.dev Git - libnemo.git/commitdiff
Confirm success of reinitialization after a device loss. I wish iOS would just play...
authorChris Duncan <chris@zoso.dev>
Thu, 9 Jan 2025 23:33:48 +0000 (15:33 -0800)
committerChris Duncan <chris@zoso.dev>
Thu, 9 Jan 2025 23:33:48 +0000 (15:33 -0800)
src/lib/nano-pow/classes/gpu.ts

index 36df721143af509feed37e1fa81b566d15d06b66..89cb9a0e0e7c043c730a3086c8d4795c1417901f 100644 (file)
@@ -93,8 +93,7 @@ export class NanoPowGpu {
                })
        }
 
-       static reset (loss?: GPUDeviceLostInfo): void {
-               if (loss) console.dir(loss)
+       static reset (): void {
                console.warn(`GPU device lost. Reinitializing...`)
                NanoPowGpu.#cpuBuffer?.destroy()
                NanoPowGpu.#gpuBuffer?.destroy()
@@ -192,7 +191,6 @@ export class NanoPowGpu {
                                this.#cpuBuffer.unmap()
                        } catch (err) {
                                console.warn(`Error getting data from GPU. ${err}`)
-                               this.reset()
                                return this.search(hash, threshold)
                        }
                        if (data == null) throw new Error(`Failed to get data from buffer.`)