Giter Club home page Giter Club logo

Comments (2)

Daninet avatar Daninet commented on June 1, 2024

By default, WebAssembly is executed on the main thread. The only thing, which is parallelized, is the compilation of the binary: Chrome doesn't allow compiling larger binaries than 4kb in a sync manner. I also did some experiments running the hash calculation in Web Workers, but the communication latency is too high to be worth it. So the only reason, why hash-wasm is using promises, is because the restrictions imposed by the browser APIs.

Why would you need cancelation? In my point of view, the streaming input (createXYZ() functions) can be already used to hash large files in smaller blocks. You can stop anytime feeding update() with new chunks.

from hash-wasm.

toastal avatar toastal commented on June 1, 2024

You can stop anytime feeding update() with new chunks.

I guess I didn't think about that. I need to wrap these computations in asynchronous effects for another library, and as a part of the async effect spec, I need to be able to cancel. I will probably use the update then. I can't say I fully understand the performance characteristics of making new Wasm instance as noted in the README, but it does appear to be the way to run it in parallel.

It's good to know that the worker option wasn't valuable in many cases. Thanks.

from hash-wasm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.