1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![warn(missing_docs)] #![doc = include_str!("../README.md")] #[cfg(feature = "gpu")] mod gpu; #[cfg(feature = "gpu")] pub use gpu::*; #[cfg(feature = "cpu")] mod cpu; #[cfg(feature = "cpu")] pub use cpu::*;