Skip to main content

oxicuda_memory/numa/
mod.rs

1//! NUMA-aware host allocation support.
2//!
3//! This module groups the host-side NUMA topology and allocation-binding
4//! bookkeeping.  See [`numa_buffer`] for the topology, node-selection, and
5//! per-node accounting types.
6
7pub mod numa_buffer;
8
9pub use numa_buffer::{
10    LOCAL_NUMA_DISTANCE, NumaAllocTracker, NumaBuffer, NumaTopology, closest_node_to_gpu,
11};