pub trait MatMulTrTyping<B> {
    type C;
}
Expand description

Enables concrete output types for generic matmul functions. Without this you’d have to specify type of output.

Required Associated Types

Implementors