1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Provides a safe wrapper around the CUDA Driver API. pub use self::error::Error; #[derive(Debug, Copy, Clone)] /// Defines the Cuda API. pub struct API; mod context; mod device; mod error; pub mod ffi; mod memory; mod utils;