1use cubecl_core::prelude::CubePrimitive;
23/// Run an arbitrary function with the quantization types from the scheme.
4/// Useful when concrete types aren't available.
5pub trait RunWithQuantType {
6type Output;
78fn execute<Q: CubePrimitive, S: CubePrimitive>(self) -> Self::Output;
9}