]> zoso.dev Git - libnemo.git/commitdiff
Upload new bundle for platform testing.
authorChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 22:34:10 +0000 (14:34 -0800)
committerChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 22:34:10 +0000 (14:34 -0800)
global.min.js

index 6b7a55a687596e47440305e5aac6bd3c604a00fe..091473438006e682ece2b17d6f17fba66d01fe91 100644 (file)
@@ -3501,6 +3501,10 @@ var init_powgpu = __esm({
           }
           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
@@ -3604,8 +3608,7 @@ var init_powgpu = __esm({
           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());