collenchyma/frameworks/cuda/api/driver/
mod.rs

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