aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda/src/lib.rs
blob: 0f7d0144f20b289b7db1c64819d770fd699e2063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
extern crate lz4;
#[cfg(test)]
#[macro_use]
extern crate paste;
extern crate ptx;

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