unison VS pocl

Compare unison vs pocl and see what are their differences.

pocl

Predictive Optimizing Code Loading (by avodonosov)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
unison pocl
17 3
5,525 59
0.9% -
9.9 0.0
7 days ago over 8 years ago
Haskell
GNU General Public License v3.0 or later -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

unison

Posts with mentions or reviews of unison. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-07.

pocl

Posts with mentions or reviews of pocl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-13.
  • Tree-shaking, the horticulturally misguided algorithm
    6 projects | news.ycombinator.com | 13 Apr 2024
  • Web bloat impacts users with slow devices
    6 projects | news.ycombinator.com | 16 Mar 2024
    https://github.com/avodonosov/pocl

    The unused javascript code can be removed (and loaded on demand). Although I am not sure how valuable that would be for the world. It only saves network traffic, parsing time and some browser memory for compiled code. But js traffic in the Internet is neglidgible comparing to, say, video and images. Will the user experience be signifiqanty better if browser is the saved from the unnesessary js parsing? I don't know of a good way to measure that.

  • Red and blue functions are a good thing
    4 projects | news.ycombinator.com | 26 Apr 2021
    > for such a small piece of work

    Don't take the example too literally, some functions calls can be here.

    Running computations in parallel is often valuable. Or run computations in parallel with waiting for external resource - why does not the code in the article compute something while waiting for a, b and c?

    Anyways, if async functions are so good, why not have all functions async?

    The article says this a kind of "documentation" that tells you what functions can wait for some external data and what functions are "pure computation". If it was so, it would be OK. Such a documentation could be computed automatically based on the called function implementations and developer is hinted: "these two functions you call are both async, consider waiting for both in parallel". In reality, the async / await implementations prevent the non-async functions from becoming async without code change and rebuild. This restriction is just a limitation of how async / await is implemented, not something useful.

    As other commenter says, the article "embraces a defect introduced for BC reasons as if it's sound engineering. It really isn't."

    When my code is called by a 3rd party library, I can not change my code to async. That's the most unpleasant property of today's async / await. What yesterday was quick computation tomorrow can become a network call. For example, I may want to bodies of rarely used functions to only load when called first time (https://github.com/avodonosov/pocl).

    The article suggest we have to decide upfront, at the top-level of the application / call stack, which parts can be implemented with as waiting blocks and which should never wait for anything external. This is not practical.

    > It's almost always faster to do them in parallel if possible.

What are some alternatives?

When comparing unison and pocl you can also consider the following projects:

nvim-treesitter-context - Show code context

lawvere - A categorical programming language with effects

dark - Darklang main repo, including language, backend, and infra

project-m36 - Project: M36 Relational Algebra Engine

cone - Cone Programming Language

structured-haskell-mode - Structured editing minor mode for Haskell in Emacs

nbdime - Tools for diffing and merging of Jupyter notebooks.

UwUpp - The next generation esoteric language

structured-haskell-m

syntactic_versioning - What if Git worked with Programming Languages?

git-merge-driver - Example of how to configure a custom git merge driver