opensrdk_linear_algebra/lib.rs
1extern crate blas;
2#[cfg(test)]
3extern crate blas_src;
4extern crate lapack;
5#[cfg(test)]
6extern crate lapack_src;
7extern crate rand;
8extern crate rayon;
9extern crate thiserror;
10
11pub mod macros;
12pub mod matrix;
13pub mod number;
14pub mod tensor;
15
16pub use matrix::*;
17pub use number::*;
18pub use tensor::*;