cubecl-runtime 0.5.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 index;
mod ring;

mod base;
mod exclusive_pool;
mod handle;
mod sliced_pool;

pub(crate) use base::*;
pub(crate) use exclusive_pool::*;
pub(crate) use ring::*;
pub(crate) use sliced_pool::*;

pub use handle::*;