1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
mod base;
mod binary_elemwise;
mod cast;
mod cat;
mod clamp;
mod comparison;
mod index;
mod mask;
mod source;
mod unary;
mod unary_scalar;

pub use base::*;
pub use binary_elemwise::*;
pub use cast::*;
pub use source::*;
pub use unary::*;
pub use unary_scalar::*;

/// Convolution kernels
pub mod conv;
/// Matmul kernels
pub mod matmul;
/// Pooling kernels
pub mod pool;
/// Pseudo-random number generator kernels
pub mod prng;
/// Reduction algorithms
pub mod reduce;

pub(crate) use cat::*;
pub(crate) use clamp::*;
pub(crate) use comparison::*;
pub(crate) use index::*;
pub(crate) use mask::*;