pub fn matmul<T>(
a: &GPUNdarray<T, Ix2>,
b: &GPUNdarray<T, Ix2>,
) -> CoreResult<GPUNdarray<T, Ix2>>
Expand description
Matrix multiplication.
ยงErrors
Returns CoreError::ShapeError
if arrays are not compatible for matrix multiplication.