aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda/src/lib.rs
blob: 72ca51c0b25456c7e61ee9042f17b35b5eee2088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use]
extern crate lazy_static;
#[cfg(test)]
extern crate cuda_driver_sys;
#[cfg(test)]
#[macro_use]
extern crate paste;
extern crate ptx;

#[allow(warnings)]
pub mod cuda;
mod cuda_impl;
pub(crate) mod r#impl;