Skip to main content

cubecl_runtime/config/
throughput.rs

1/// Configuration for throughput in `CubeCL`.
2#[derive(Default, Clone, Debug, serde::Serialize, serde::Deserialize)]
3pub struct ThroughputConfig {
4    /// Whether to enable caching of throughput results.
5    #[serde(default)]
6    pub disable_cache: bool,
7}