1pub type Real = f32;
2
3pub mod convolution;
4pub mod gpu_device;
5mod image;
6pub mod kernels;
7mod pipeline;
8
9pub use crate::image::Image;
10pub use kernels::Kernel;
11pub use pipeline::Pipeline;
12
13pub enum BorderType {
14 Crop,
15 Mirror,
16 Zero,
17}