cubecl_std/
lib.rs

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