[][src]Trait tract_core::datum::FloatLike

pub trait FloatLike: Datum {
    fn mmm(m: usize, k: usize, n: usize) -> Box<dyn MatMatMul<Self>>;
fn packed_vec_mat_mul(k: usize, n: usize) -> Box<dyn VecMatMul<Self>>;
fn sigmoid() -> Box<dyn Sigmoid<Self>>;
fn tanh() -> Box<dyn Tanh<Self>>; }

Required methods

fn mmm(m: usize, k: usize, n: usize) -> Box<dyn MatMatMul<Self>>

fn packed_vec_mat_mul(k: usize, n: usize) -> Box<dyn VecMatMul<Self>>

fn sigmoid() -> Box<dyn Sigmoid<Self>>

fn tanh() -> Box<dyn Tanh<Self>>

Loading content...

Implementations on Foreign Types

impl FloatLike for f32[src]

impl FloatLike for f64[src]

Loading content...

Implementors

impl FloatLike for f16[src]

Loading content...