Skip to main content

burn_backend/element/
mod.rs

1//! Traits and helpers for working with element types and conversions.
2
3mod base;
4mod scalar;
5
6/// Tensor element casting.
7pub mod cast;
8
9pub use base::*;
10pub use scalar::*;