1#![cfg_attr(not(feature = "std"), no_std)]
2#![warn(missing_docs)]
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5#[cfg(any(
8 feature = "blas-netlib",
9 feature = "blas-openblas",
10 feature = "blas-openblas-system",
11))]
12extern crate blas_src;
13
14mod backend;
15mod element;
16mod ops;
17mod parallel;
18mod rand;
19mod sharing;
20mod storage;
21mod tensor;
22
23pub use backend::*;
24pub use element::*;
25pub(crate) use sharing::*;
26pub(crate) use storage::*;
27pub use tensor::*;
28
29extern crate alloc;