lak-kernels 0.1.1

BLAS-like linear algebra kernels in fully-safe Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod asum;
pub mod axpy;
pub mod copy;
pub mod dot;
pub mod iamax;
pub mod nrm2;
pub mod scal;
pub mod swap;

pub use asum::{asum_ilp64, asum_lp64};
pub use axpy::{axpy_ilp64, axpy_lp64};
pub use copy::{copy_ilp64, copy_lp64};
pub use dot::{dot_ilp64, dot_lp64};
pub use iamax::{iamax_ilp64, iamax_lp64};
pub use nrm2::{nrm2_ilp64, nrm2_lp64};
pub use scal::{scal_ilp64, scal_lp64};
pub use swap::{swap_ilp64, swap_lp64};