cubecl-std 0.10.0-pre.3

CubeCL Standard Library.
Documentation
/// Re-export for testgen macros.
pub use test_log;

pub mod event;
pub mod reinterpret_slice;
pub mod tensor;
pub mod trigonometry;
pub mod view;

#[macro_export]
macro_rules! testgen {
    () => {
        mod test_cubecl_std {
            use super::*;
            use half::{bf16, f16};

            cubecl_std::testgen_reinterpret_slice!();
            cubecl_std::testgen_trigonometry!();
            cubecl_std::testgen_event!();
        }
    };
}