cubecl-server 0.11.0-pre.4

Toolkit for implementing a CubeCL runtime: memory pools, streams, drivers and the compilation pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! One unit of work against the device, and what a backend supplies for it.

mod backend;
mod base;
mod capture;
mod collective;
mod staging;

pub use backend::*;
pub use base::*;
pub use capture::*;
pub use collective::*;
pub use staging::*;