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

pub trait FloatLike: Datum {
    fn packed_direct_conv(
        m: usize,
        kernel_offsets: Vec<isize>,
        data_offsets: Vec<isize>
    ) -> Box<dyn Conv<Self>>;
fn packed_mat_mul(m: usize, k: usize, n: usize) -> Box<dyn MatMul<Self>>;
fn packed_vec_mat_mul(k: usize, n: usize) -> Box<dyn VecMatMul<Self>>; }

Required methods

fn packed_direct_conv(
    m: usize,
    kernel_offsets: Vec<isize>,
    data_offsets: Vec<isize>
) -> Box<dyn Conv<Self>>

fn packed_mat_mul(m: usize, k: usize, n: usize) -> Box<dyn MatMul<Self>>

fn packed_vec_mat_mul(k: usize, n: usize) -> Box<dyn VecMatMul<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...