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
//! NUMA-aware host allocation support.
//!
//! This module groups the host-side NUMA topology and allocation-binding
//! bookkeeping.  See [`numa_buffer`] for the topology, node-selection, and
//! per-node accounting types.

pub mod numa_buffer;

pub use numa_buffer::{
    LOCAL_NUMA_DISTANCE, NumaAllocTracker, NumaBuffer, NumaTopology, closest_node_to_gpu,
};