atomr-accel-cuda 0.10.0

GPU acceleration via the actor model. Wraps NVIDIA CUDA libraries (cuBLAS, cuDNN, cuFFT, cuRAND, cuSOLVER, cuSPARSE, cuTENSOR, cuBLASLt, NVRTC, NCCL) as supervised atomr actors with generation-validated buffers and a uniform async surface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Top-level multi-device actors that span multiple `DeviceActor`s.
//!
//! F4 ships:
//! - [`world_actor::NcclWorldActor`] — supervises N `DeviceActor`s
//!   and N `CollectiveActor`s for a single NCCL group.

#[cfg(feature = "nccl")]
mod world_actor;

#[cfg(feature = "nccl")]
pub use world_actor::{NcclWorldActor, NcclWorldConfig, NcclWorldMsg};