cubecl-runtime 0.10.0-pre.3

Crate that helps creating high performance async runtimes for CubeCL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Scheduler based multi-stream support.
pub mod scheduler;

mod base;

#[cfg(multi_threading)]
mod event;

pub use base::*;

#[cfg(multi_threading)]
pub use event::*;