1
 2
 3
 4
 5
 6
 7
 8
 9
10
#[macro_use]
pub extern crate arrayfire;

mod utils;
pub mod functions;
pub mod layers;
pub mod model;

pub type Weight = f64;
pub type Matrix = arrayfire::Array<Weight>;