cubecl-std 0.10.0-pre.3

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

/// 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: Scalar, S: Scalar>(self) -> Self::Output;
}