1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#[macro_use]
pub mod lut;
#[macro_use]
pub mod mmm;
pub mod pack;
#[macro_use]
pub mod sigmoid;
#[macro_use]
pub mod tanh;

pub use pack::Packer;

pub use self::mmm::{MatMatMul, MatMatMulImpl};

pub use self::sigmoid::SigmoidImpl;
pub use self::tanh::TanhImpl;