54 releases

0.23.0 Feb 8, 2025
0.22.0 Apr 10, 2021
0.21.0 Feb 13, 2021
0.20.0 May 26, 2018
0.0.2 Nov 21, 2014

#1056 in Math

Download history 1546/week @ 2026-01-02 2142/week @ 2026-01-09 1980/week @ 2026-01-16 2315/week @ 2026-01-23 2375/week @ 2026-01-30 3803/week @ 2026-02-06 2776/week @ 2026-02-13 5228/week @ 2026-02-20 4046/week @ 2026-02-27 3098/week @ 2026-03-06 3876/week @ 2026-03-13 4061/week @ 2026-03-20 3639/week @ 2026-03-27 2866/week @ 2026-04-03 4276/week @ 2026-04-10 3746/week @ 2026-04-17

15,215 downloads per month
Used in 46 crates (29 directly)

Apache-2.0 OR MIT

64KB
3K SLoC

Rust 2.5K SLoC Python 317 SLoC

BLAS Package Documentation Build

The package provides wrappers for BLAS (Fortran).

Architecture

Example

use blas::*;

let (m, n, k) = (2, 4, 3);
let a = vec![
    1.0, 4.0,
    2.0, 5.0,
    3.0, 6.0,
];
let b = vec![
    1.0, 5.0,  9.0,
    2.0, 6.0, 10.0,
    3.0, 7.0, 11.0,
    4.0, 8.0, 12.0,
];
let mut c = vec![
    2.0, 7.0,
    6.0, 2.0,
    0.0, 7.0,
    4.0, 2.0,
];

unsafe {
    dgemm(b'N', b'N', m, n, k, 1.0, &a, m, &b, k, 1.0, &mut c, m);
}

assert!(
    c == vec![
        40.0,  90.0,
        50.0, 100.0,
        50.0, 120.0,
        60.0, 130.0,
    ]
);

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Dependencies

~225–330KB