Skip to main content

cubecl_server/storage/
mod.rs

1//! Storage implementations. The [`ComputeStorage`] contract is
2//! `cubecl-runtime`'s and re-exported here.
3
4pub use cubecl_runtime::storage::*;
5
6mod pinned;
7pub use pinned::*;
8
9#[cfg(feature = "storage-bytes")]
10mod bytes_cpu;
11#[cfg(feature = "storage-bytes")]
12pub use bytes_cpu::*;