#linear-algebra #matrix-operations #ndarray #interface #sprs #high-level #super-lu

sprs-superlu

The package provides a high level interface between SuperLU, sprs and ndarray

6 releases

0.1.5 Apr 16, 2024
0.1.4 Jan 30, 2024

#398 in Math

Download history 5/week @ 2024-01-01 8/week @ 2024-01-15 134/week @ 2024-01-22 67/week @ 2024-01-29 34/week @ 2024-02-12 3/week @ 2024-02-26 19/week @ 2024-03-11 84/week @ 2024-03-18 142/week @ 2024-03-25 21/week @ 2024-04-01 15/week @ 2024-04-08 155/week @ 2024-04-15

333 downloads per month

MIT license

25KB
620 lines

SuperLU

A Rust interface for SuperLU, utilizing ndarray and sprs for matrix operations.

Example Usage

use std::time::Duration;
use ndarray::arr1;
use sprs::CsMat;
use crate::{Options, solve_super_lu};

fn main() {
    let values = vec![
        19.0, 12.0, 12.0, 21.0, 12.0, 12.0, 21.0, 16.0, 21.0, 5.0, 21.0, 18.0,
    ];
    let row_indices = vec![0, 1, 4, 1, 2, 4, 0, 2, 0, 3, 3, 4];
    let col_ptrs = vec![0, 3, 6, 8, 10, 12];
    let a_mat = CsMat::new_csc((5, 5), col_ptrs, row_indices, values);
    let rhs_1 = arr1(&[1., 1., 1., 1., 1.]);
    let rhs_2 = arr1(&[2., 2., 2., 2., 2.]);
    let b_mat = vec![rhs_1, rhs_2];
    let mut options = Options::default();
    let res = solve_super_lu(a_mat, &b_mat, Some(Duration::from_secs(60)), &mut options);
    let x_1 = res[0];
    let x_2 = res[1];
    println!("A x_1 = rhs_1 -> x_1 =:\n{:?}", x_1);
    println!("A x_2 = rhs_2 -> x_2 =:\n{:?}", x_2);
}

Dependencies

~5.5–7.5MB
~140K SLoC