10 releases (5 breaking)

Uses old Rust 2015

0.5.0 Apr 18, 2021
0.4.0 Apr 18, 2021
0.3.0 Feb 13, 2021
0.2.0 May 26, 2018
0.0.1 Nov 14, 2017

#2014 in Math

Download history 128/week @ 2024-11-14 247/week @ 2024-11-21 212/week @ 2024-11-28 236/week @ 2024-12-05 490/week @ 2024-12-12 132/week @ 2024-12-19 32/week @ 2024-12-26 146/week @ 2025-01-02 266/week @ 2025-01-09 310/week @ 2025-01-16 223/week @ 2025-01-23 318/week @ 2025-01-30 525/week @ 2025-02-06 216/week @ 2025-02-13 226/week @ 2025-02-20 196/week @ 2025-02-27

1,243 downloads per month
Used in 21 crates (6 directly)

Apache-2.0/MIT

1MB
63K SLoC

LAPACKE Package Documentation Build

The package provides wrappers for LAPACKE (C).

Architecture

Example

use lapacke::*;

let n = 3;
let mut a = vec![
    3.0, 1.0, 1.0,
    1.0, 3.0, 1.0,
    1.0, 1.0, 3.0,
];
let mut w = vec![0.0; n as usize];
let info;

unsafe {
    info = dsyev(Layout::ColumnMajor, b'V', b'U', n, &mut a, n, &mut w);
}

assert!(info == 0);
for (one, another) in w.iter().zip(&[2.0, 2.0, 5.0]) {
    assert!((one - another).abs() < 1e-14);
}

Development

The code is generated via a Python script based on the content the lapacke-sys submodule. To re-generate, run the following commands:

./bin/generate.py > src/lapacke-sys.rs
rustfmt src/lapacke-sys.rs

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

~1MB
~36K SLoC