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
//! Storage implementations. The [`ComputeStorage`] contract is
//! `cubecl-runtime`'s and re-exported here.

pub use cubecl_runtime::storage::*;

mod pinned;
pub use pinned::*;

#[cfg(feature = "storage-bytes")]
mod bytes_cpu;
#[cfg(feature = "storage-bytes")]
pub use bytes_cpu::*;