weave VS matrixmultiply

Compare weave vs matrixmultiply and see what are their differences.

weave

A state-of-the-art multithreading runtime: message-passing based, fast, scalable, ultra-low overhead (by mratsim)

matrixmultiply

General matrix multiplication of f32 and f64 matrices in Rust. Supports matrices with general strides. (by bluss)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
weave matrixmultiply
7 4
523 202
- -
3.0 6.0
5 months ago about 2 months ago
Nim Rust
GNU General Public License v3.0 or later Apache License 2.0
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.

weave

Posts with mentions or reviews of weave. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-11.
  • The GIL can now be disabled in Python's main branch
    8 projects | news.ycombinator.com | 11 Mar 2024
  • Maybe Everything Is a Coroutine
    3 projects | news.ycombinator.com | 14 Feb 2024
    GPU drivers provide an event system:

    - Cuda: https://github.com/mratsim/weave/issues/133

  • Benchmarking 20 programming languages on N-queens and matrix multiplication
    15 projects | news.ycombinator.com | 2 Jan 2024
    ```

    Note: the Theoretical peak limit is hardcoded and used my previous machine i9-9980XE.

    It maybe that your BLAS library is not named libopenblas.so, you can change that here: https://github.com/mratsim/laser/blob/master/benchmarks/thir...

    Implementation is in this folder: https://github.com/mratsim/laser/tree/master/laser/primitive...

    in particular, tiling, cache and register optimization: https://github.com/mratsim/laser/blob/master/laser/primitive...

    AVX512 code generator: https://github.com/mratsim/laser/blob/master/laser/primitive...

    And generic Scalar/SSE/AVX/AVX2/AVX512 microkernel generator (this is Nim macros to generate code at compile-time): https://github.com/mratsim/laser/blob/master/laser/primitive...

    I'll come back later with details on how to use my custom HPC threadpool Weave instead of OpenMP (https://github.com/mratsim/weave/tree/master/benchmarks/matm...)

  • Nim vs Rust Benchmarks
    10 projects | news.ycombinator.com | 7 Feb 2022
    In my benchmarks, Nim is faster than Rust:

    - multithreading runtime (i.e Rayon vs Weave https://github.com/mratsim/weave)

    - Cryptography: https://hackmd.io/@gnark/eccbench#Pairing

    - Scientific computing / matrix multiplication: https://github.com/bluss/matrixmultiply/issues/34#issuecomme...

    There is no inherent reason why a Nim program would be slower than Rust.

  • Aren't green threads just better than async/await?
    4 projects | /r/ProgrammingLanguages | 20 Sep 2021
    If you're interested into diving into this I have reviewed solutions to cactus stacks / split stacks here https://github.com/mratsim/weave/blob/master/weave/memory/multithreaded_memory_management.md
  • Nim 2.0 – Thoughts
    7 projects | news.ycombinator.com | 15 May 2021
    [4] https://github.com/mratsim/weave

matrixmultiply

Posts with mentions or reviews of matrixmultiply. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-09.
  • Help understanding the state of ndarrays and linalg in Rust.
    2 projects | /r/rust | 9 Jul 2023
    The matrixmultiply crate from the ndarray author (https://github.com/bluss/matrixmultiply) is one such implementation. It uses the same algorithm as the BLIS project (https://www.cs.utexas.edu/users/flame/pubs/TOMS-BLIS-Analytical.pdf) to partition the problem and exploit the cache hierarchy. It isn't as well tuned as eg. Intel MKL or BLIS, but the results are very respectable.
  • faer 0.8.0 release
    6 projects | /r/rust | 21 Apr 2023
    Do you plan to support integers as native types? I know there is an issue for the crate matrixmultiply for that, it seems it can be problematic because of overflow.
  • Faster `matrixmultiply` ?
    3 projects | /r/rust | 27 Aug 2022
    There's a famous crate [matrixmultiply](https://github.com/bluss/matrixmultiply) for matrix-matrix multiplication in Rust. But it's a bit slow for me.
  • Nim vs Rust Benchmarks
    10 projects | news.ycombinator.com | 7 Feb 2022
    In my benchmarks, Nim is faster than Rust:

    - multithreading runtime (i.e Rayon vs Weave https://github.com/mratsim/weave)

    - Cryptography: https://hackmd.io/@gnark/eccbench#Pairing

    - Scientific computing / matrix multiplication: https://github.com/bluss/matrixmultiply/issues/34#issuecomme...

    There is no inherent reason why a Nim program would be slower than Rust.

What are some alternatives?

When comparing weave and matrixmultiply you can also consider the following projects:

eioio - Effects-based direct-style IO for multicore OCaml

rust-ndarray - ndarray: an N-dimensional array with array views, multidimensional slicing, and efficient operations

httpbeast - A highly performant, multi-threaded HTTP 1.1 server written in Nim.

Programming-Language-Benchmarks - Yet another implementation of computer language benchmarks game

Edith - Electronic Design in Swithft

Programming-Language-Benchmark

ocaml-multicore - Multicore OCaml

Graal - GraalVM compiles Java applications into native executables that start instantly, scale fast, and use fewer compute resources 🚀

cosmopolitan - build-once run-anywhere c library

faer-rs - Linear algebra foundation for the Rust programming language

roast - 🦋 Raku test suite

matrixmultiply_mt - A Multithreaded, processor specialized, fork of the matrixmultiply crate