pub trait TensorKind<B>: Clone + Debugwhere
    B: Backend,{
    type Primitive<const D: usize>: Clone + Debug;

    // Required method
    fn name() -> &'static str;
}

Required Associated Types§

source

type Primitive<const D: usize>: Clone + Debug

Required Methods§

source

fn name() -> &'static str

Implementors§

source§

impl<B> TensorKind<B> for Boolwhere B: Backend,

source§

impl<B> TensorKind<B> for Floatwhere B: Backend,

source§

impl<B> TensorKind<B> for Intwhere B: Backend,