logo

Trait neuronika::MatMatMul[][src]

pub trait MatMatMul<Rhs> {
    type Output;
    fn mm(self, other: Rhs) -> Self::Output;
}
Expand description

Matrix-matrix multiplication.

Associated Types

The type of the matrix-matrix multiplication’s result. See the differentiability arithmetic for more details.

Required methods

Computes the matrix-matrix multiplication between self and other.

Implementors