1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#[macro_use] pub mod lut; #[macro_use] pub mod mmm; pub mod pack_a; pub mod pack_b; #[macro_use] pub mod sigmoid; #[macro_use] pub mod tanh; pub use pack_a::PackA; pub use pack_b::PackB; pub use self::mmm::{MatMatMul, MatMatMulImpl, QMatMatMul, QMatMatMulImpl}; pub use self::sigmoid::SigmoidImpl; pub use self::tanh::TanhImpl;