oxicuda-memory 0.4.0

OxiCUDA Memory - Type-safe GPU memory management with Rust ownership semantics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Hardware-accelerated memory compression support (Ampere+).
//!
//! This module groups the host-side bookkeeping for the CUDA virtual-memory
//! compression feature.  See [`compressed_buffer`] for the descriptor and
//! allocation-planning types.

pub mod compressed_buffer;

pub use compressed_buffer::{
    CompressedDeviceBuffer, CompressionPlan, CompressionSupport, CompressionType,
    DEFAULT_COMPRESSION_GRANULARITY,
};