]> zoso.dev Git - libnemo.git/commitdiff
Remove unused default exports that are now included in separate pow worker file.
authorChris Duncan <chris@zoso.dev>
Wed, 8 Jan 2025 22:53:35 +0000 (14:53 -0800)
committerChris Duncan <chris@zoso.dev>
Wed, 8 Jan 2025 22:53:35 +0000 (14:53 -0800)
src/lib/nano-pow/classes/gl.ts
src/lib/nano-pow/classes/gpu.ts

index 34edf17ca5c60cdc49bb95bd40c9cb02fab0d397..e2bca1bd84a399516328267d729af4ba5f0463b8 100644 (file)
@@ -197,9 +197,3 @@ export class NanoPowGl {
                throw new Error('Query reported result but nonce value not found')
        }
 }
-
-export default `
-       const NanoPowGlFragmentShader = \`${NanoPowGlFragmentShader}\`
-       const NanoPowGlVertexShader = \`${NanoPowGlVertexShader}\`
-       const PowGl = ${NanoPowGl}
-`
index e1bac77a5f71ab84474dfdc76609eb6867ebc7d5..35b6eb498d22263f3d38ee317d8ad289ff4c055a 100644 (file)
@@ -168,18 +168,18 @@ export class NanoPowGpu {
                this.#device.queue.submit([commandEncoder.finish()])
 
                // Read results back to Javascript and then unmap buffer after reading
-                       await this.#cpuBuffer.mapAsync(GPUMapMode.READ)
-                       await this.#device.queue.onSubmittedWorkDone()
+               await this.#cpuBuffer.mapAsync(GPUMapMode.READ)
+               await this.#device.queue.onSubmittedWorkDone()
                try {
-               const data = new DataView(this.#cpuBuffer.getMappedRange())
-               const nonce = data.getBigUint64(0, true)
-               const found = !!data.getUint32(8)
-               this.#cpuBuffer.unmap()
-
-               if (found) {
-                       const hex = nonce.toString(16).padStart(16, '0')
-                       return hex
-               } else {
+                       const data = new DataView(this.#cpuBuffer.getMappedRange())
+                       const nonce = data.getBigUint64(0, true)
+                       const found = !!data.getUint32(8)
+                       this.#cpuBuffer.unmap()
+
+                       if (found) {
+                               const hex = nonce.toString(16).padStart(16, '0')
+                               return hex
+                       } else {
                                return await this.search(hash, threshold)
                        }
                } catch (err) {
@@ -188,8 +188,3 @@ export class NanoPowGpu {
                }
        }
 }
-
-export default `
-       const NanoPowGpuComputeShader = \`${NanoPowGpuComputeShader}\`
-       const NanoPowGpu = ${NanoPowGpu}
-`