burn_tensor/tensor/
mod.rs1pub(crate) mod stats;
2
3mod api;
4
5pub use api::*;
6
7pub use burn_backend::{
9 BoolDType, BoolStore, DType, DataError, FloatDType, IntDType, TensorData, TensorMetadata,
10 TensorPrimitive, Tolerance,
11 distribution::*,
12 element::*,
13 indexing::*,
14 ops::TransactionPrimitive,
15 shape::*,
16 slice::*,
17 tensor::{Bool, Float, Int, TensorKind},
18};
19
20pub mod activation;
22
23pub mod backend {
25 pub use burn_backend::backend::*;
26}
27
28pub mod container {
30 pub use burn_backend::tensor::TensorContainer;
31}
32
33pub mod grid;
35
36pub mod linalg;
38
39pub mod loss;
41
42pub mod module;
44
45pub mod signal;
47
48pub mod ops {
50 pub use burn_backend::backend::ops::*;
51 pub use burn_backend::tensor::{
52 BoolElem, BoolTensor, Device, FloatElem, FloatTensor, IntElem, IntTensor, QuantizedTensor,
53 };
54}
55
56pub mod quantization;
58
59#[cfg(feature = "std")]
60pub use report::*;
61
62#[cfg(feature = "std")]
63mod report;
64
65pub use ops::Device;