burn_tensor/tensor/
mod.rs1pub(crate) mod stats;
2
3mod api;
4
5pub use api::*;
6
7pub use burn_std::{
9 BoolDType, BoolStore, DType, DataError, FloatDType, IndexingUpdateOp, IntDType, TensorData,
10 Tolerance, distribution::*, element::*, indexing::*, s, shape::*, slice::*,
11};
12
13pub mod kind;
15pub use kind::{Bool, Float, Int};
16
17pub mod activation;
19
20pub mod container {
22 pub use burn_std::tensor::container::TensorContainer;
23}
24
25pub mod grid;
27
28pub mod linalg;
30
31pub mod loss;
33
34pub mod module;
36
37pub mod signal;
39
40pub mod ops {
42 pub(crate) use crate::bridge::*;
43 pub use burn_std::ops::*;
44}
45
46pub mod quantization;
48
49#[cfg(feature = "std")]
50pub mod distributed;
51
52#[cfg(feature = "std")]
53pub use report::*;
54
55#[cfg(feature = "std")]
56mod report;