aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zluda/src/lib.rs')
-rw-r--r--zluda/src/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/zluda/src/lib.rs b/zluda/src/lib.rs
new file mode 100644
index 0000000..0f7d014
--- /dev/null
+++ b/zluda/src/lib.rs
@@ -0,0 +1,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;