cubecl_runtime/config/mod.rs
1/// Autotune config module.
2pub mod autotune;
3/// Cache config module, re-exported from `cubecl-environment`.
4#[cfg(std_io)]
5pub mod cache {
6 pub use cubecl_environment::persistence::CacheConfig;
7}
8/// Compilation config module.
9pub mod compilation;
10/// Which named environment the process warms into.
11pub mod environment;
12/// Memory config module.
13pub mod memory;
14/// Profiling config module.
15pub mod profiling;
16/// Human-readable byte sizes for config files.
17pub mod size;
18/// Streaming config module.
19pub mod streaming;
20/// Throughput config module.
21pub mod throughput;
22
23mod base;
24mod logger;
25
26pub use base::*;
27pub use cubecl_environment::config::RuntimeConfig;
28pub use logger::Logger;