]> zoso.dev Git - libnemo.git/commitdiff
If reset is called, cpuBuffer is destroyed, so it does not make sense to then unmap...
authorChris Duncan <chris@zoso.dev>
Thu, 9 Jan 2025 14:59:46 +0000 (06:59 -0800)
committerChris Duncan <chris@zoso.dev>
Thu, 9 Jan 2025 14:59:46 +0000 (06:59 -0800)
src/lib/nano-pow/classes/gpu.ts

index c6555adefbcbf9942fa90c4c64839713ed9c090c..cf0f2d93a109fe6f3baa5fe21bf89f977d23cd34 100644 (file)
@@ -193,11 +193,11 @@ export class NanoPowGpu {
                                await this.#cpuBuffer.mapAsync(GPUMapMode.READ)
                                await this.#device.queue.onSubmittedWorkDone()
                                data = new DataView(this.#cpuBuffer.getMappedRange().slice(0))
+                               this.#cpuBuffer.unmap()
                        } catch (err) {
                                console.warn(`Error getting data from GPU. ${err}`)
                                this.reset()
-                       } finally {
-                               this.#cpuBuffer.unmap()
+                               return this.search(hash, threshold)
                        }
 
                        if (data == null) throw new Error(`Failed to get data from buffer.`)