pub trait MatrixDual<O>: NDArray + Debug
where O: NDArray<DType = Self::DType> + Debug,
{ type Output: Access<Self::DType>; // Required method fn matmul( self, other: O ) -> Result<Array<Self::DType, Self::Output, Self::Platform>, Error>; }
Expand description

Matrix dual operations

Required Associated Types§

Required Methods§

source

fn matmul( self, other: O ) -> Result<Array<Self::DType, Self::Output, Self::Platform>, Error>

Construct an operation to multiply this matrix or batch of matrices with the other.

Object Safety§

This trait is not object safe.

Implementors§