1use cubecl_core::prelude::Scalar;
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: Scalar, S: Scalar>(self) -> Self::Output;
9}