oxicuda_memory/compression/mod.rs
1//! Hardware-accelerated memory compression support (Ampere+).
2//!
3//! This module groups the host-side bookkeeping for the CUDA virtual-memory
4//! compression feature. See [`compressed_buffer`] for the descriptor and
5//! allocation-planning types.
6
7pub mod compressed_buffer;
8
9pub use compressed_buffer::{
10 CompressedDeviceBuffer, CompressionPlan, CompressionSupport, CompressionType,
11 DEFAULT_COMPRESSION_GRANULARITY,
12};