#sparse-matrix #dimension #csr #structure #coo

no-std ndsparse

Sparse structures for N-dimensions

18 releases

0.8.1 Jul 24, 2021
0.7.3 Sep 12, 2020
0.7.0 Jul 2, 2020
0.5.3 Mar 25, 2020

#986 in Data structures

26 downloads per month
Used in 4 crates (via mop-blocks)

Apache-2.0

76KB
1.5K SLoC

ndsparse

CI crates.io Documentation License Rustc

Structures to store and retrieve N-dimensional sparse data. Well, not any N ∈ ℕ but any natural number that fits into the pointer size of the machine that you are using. E.g., an 8-bit microcontroller can manipulate any sparse structure with up to 255 dimensions.

For those that might be wondering about why this crate should be used, it generally comes down to space-efficiency, ergometrics and retrieving speed. The following snippet shows some use-cases for potential replacement with _cube_of_vecs being the most inefficient of all.

let _vec_of_options: Vec<Option<i32>> = Default::default();
let _matrix_of_options: [Option<[Option<i32>; 8]>; 16] = Default::default();
let _cube_of_vecs: Vec<Vec<Vec<i32>>> = Default::default();
// The list worsens exponentially for higher dimensions

See this blog post for more information.

Example

use ndsparse::{coo::CooArray, csl::CslVec};

fn main() -> ndsparse::Result<()> {
  // A CSL and COO cube.
  //
  //      ___ ___
  //    /   /   /\
  //   /___/___/ /\
  //  / 1 /   /\/2/
  // /_1_/___/ /\/
  // \_1_\___\/ /
  //  \___\___\/
  let coo = CooArray::new([2, 2, 2], [([0, 0, 0], 1.0), ([1, 1, 1], 2.0)])?;
  let mut csl = CslVec::default();
  csl
    .constructor()?
    .next_outermost_dim(2)?
    .push_line([(0, 1.0)].iter().copied())?
    .next_outermost_dim(2)?
    .push_empty_line()?
    .next_outermost_dim(2)?
    .push_empty_line()?
    .push_line([(1, 2.0)].iter().copied())?;
  assert_eq!(coo.value([0, 0, 0]), csl.value([0, 0, 0]));
  assert_eq!(coo.value([1, 1, 1]), csl.value([1, 1, 1]));
  Ok(())
}

Supported structures

  • Compressed Sparse Line (CSL)
  • Coordinate format (COO)

Features

  • no_std w/o opt-out flags
  • Different storages (Array, Vec, Slice and more!)
  • Fully documented
  • Fuzz testing
  • No unsafe

Optional features

  • alloc and std
  • Bindings (Py03, wasm-bindgen)
  • Deserialization/Serialization (serde)
  • Parallel iterators (rayon)
  • Random instances (rand)

Future

Although CSR and COO are general sparse structures, they aren't good enough for certain situations, therefore, the existence of DIA, JDS, ELL, LIL, DOK and many others.

If there are enough interest, the mentioned sparse storages might be added at some point in the future.

Algebra library

This project isn't and will never be a sparse algebra library because of its own self-contained responsibility and complexity. Futhermore, a good implementation of such library would require a titanic amount of work and research for different algorithms, operations, decompositions, solvers and hardwares.

Alternatives

One of these libraries might suit you better:

  • sprs: Sparse linear algebra.
  • ndarray: Dense N-dimensional operations.
  • nalgebra: Dense linear algebra.

Dependencies

~99–620KB
~13K SLoC