#sparse-matrix #column #row #csr #data #package #graph

sparsetools

2-D sparse matrix package for numeric data

6 releases

0.2.2 Apr 19, 2024
0.2.1 Apr 12, 2024
0.2.0 Sep 19, 2023
0.1.2 Sep 16, 2023

#813 in Algorithms

Download history 5/week @ 2024-02-23 4/week @ 2024-03-01 3/week @ 2024-03-08 1/week @ 2024-03-15 39/week @ 2024-03-22 8/week @ 2024-03-29 1/week @ 2024-04-05 135/week @ 2024-04-12 137/week @ 2024-04-19 3/week @ 2024-04-26

277 downloads per month
Used in 2 crates

BSD-3-Clause

165KB
4.5K SLoC

sparsetools

2-D sparse matrix crate for numeric data.

The operations supported by SciPy sparse matrices are implemented using functions written in C++/Cython. This crate contains translations of those functions to Rust. Sparse matrix types with methods that wrap the functions are provided in submodules:

  • CSR (Compressed Sparse Row format)
  • CSC (Compressed Sparse Column format)
  • Coo (Coordinate format, aka IJV or triplet format)
  • DoK (Dictionary of Keys, backed by HashMap)

Some compressed sparse graph routines from SciPy are also included.

License

The source code is distributed under the same BSD 3-clause license (LICENSE or https://opensource.org/license/bsd-3-clause/) as SciPy.

Dependencies

~1–1.7MB
~34K SLoC