aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda/src/lib.rs
blob: c0ddd5bf178eb8884abf18f9dff3836e40470560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate level_zero as l0;
extern crate level_zero_sys as l0_sys;
#[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;