cubecl_std/lib.rs
1//! Cubecl standard library.
2extern crate alloc;
3
4mod reinterpret_slice;
5pub use reinterpret_slice::*;
6mod fast_math;
7pub use fast_math::*;
8
9mod option;
10pub use option::*;
11
12/// Quantization functionality required in views
13pub mod quant;
14pub mod tensor;
15
16#[cfg(feature = "export_tests")]
17pub mod tests;