Skip to main content

lumen_core/
lib.rs

1#![feature(mapped_lock_guards)]
2#![feature(float_erf)]
3mod shape;
4mod layout;
5mod dtype;
6mod storage;
7mod tensor;
8mod error;
9mod grad;
10mod variable;
11mod scalar;
12mod dynamic;
13
14pub use shape::*;
15pub use layout::*;
16pub use dtype::*;
17pub use storage::*;
18pub use tensor::*;
19pub use error::*;
20pub use grad::*;
21pub use variable::*;
22pub use scalar::*;
23pub use dynamic::*;