cubecl-std 0.9.0

CubeCL Standard Library.
Documentation
1
2
3
4
5
6
7
8
9
use cubecl_core::prelude::CubePrimitive;

/// Run an arbitrary function with the quantization types from the scheme.
/// Useful when concrete types aren't available.
pub trait RunWithQuantType {
    type Output;

    fn execute<Q: CubePrimitive, S: CubePrimitive>(self) -> Self::Output;
}