cubecl-runtime 0.9.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
mod base;
mod exclusive_pool;
pub(crate) mod handle;
mod memory_page;
mod persistent_pool;
mod sliced_pool;

pub(crate) use base::*;
pub(crate) use exclusive_pool::*;
pub(crate) use memory_page::*;
pub(crate) use persistent_pool::*;
pub(crate) use sliced_pool::*;

pub use handle::*;