lak-kernels 0.1.0

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

pub use dot::dot; 
pub use axpy::axpy; 
pub use asum::asum; 
pub use scal::scal; 
pub use nrm2::nrm2; 
pub use copy::copy; 
pub use swap::swap; 
pub use iamax::iamax;