cubecl-runtime 0.4.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
15
16
mod local;
mod operation;
mod tune_benchmark;
mod tune_cache;
#[cfg(feature = "channel-mpsc")]
mod tuner;
mod util;

pub use crate::tune_with;
pub use local::*;
pub use operation::*;
pub use tune_benchmark::*;
pub use tune_cache::*;
#[cfg(feature = "channel-mpsc")]
pub use tuner::*;
pub use util::*;