acme-tensor 0.3.1

A comprehensive tensor library for Rust with support for automatic-differentiation.
Documentation
/*
    Appellation: ops <mod>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
pub use self::{backprop::*, kinds::*, op::*};

pub(crate) mod backprop;
pub(crate) mod op;

pub(crate) mod kinds {
    pub use self::reshape::*;

    pub(crate) mod reshape;
}

pub trait BaseOperation {
    type Output;

    fn name(&self) -> &str;
}

#[cfg(test)]
mod tests {}