1
2
3
4
5
6
7
8
9
//! Wrappers around the [cuRAND API](https://docs.nvidia.com/cuda/curand/index.html)
//! in three levels. See crate documentation for description of each.

pub mod result;
pub mod safe;
#[allow(warnings)]
pub mod sys;

pub use safe::*;