cubecl-runtime 0.6.0

Crate that helps creating high performance async runtimes for CubeCL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Autotune config module.
pub mod autotune;
/// Compilation config module.
pub mod compilation;
/// Profiling config module.
pub mod profiling;

mod base;
#[cfg(std_io)]
pub(crate) mod cache;
mod logger;

pub use base::*;
pub use logger::Logger;