1
2
3
4
5
6
7
8
9
10
11
//! Wrappers around the [Nvidia Runtime Compilation (nvrtc) API](https://docs.nvidia.com/cuda/nvrtc/index.html),
//! in three levels. See crate documentation for description of each.
//!
//! Call [compile_ptx()] or [compile_ptx_with_opts()].

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

pub use safe::*;