matmul

Function matmul 

Source
pub fn matmul<T>(
    a: &GPUNdarray<T, Ix2>,
    b: &GPUNdarray<T, Ix2>,
) -> CoreResult<GPUNdarray<T, Ix2>>
where T: Clone + Mul<Output = T> + Add<Output = T> + Default + Send + Sync + 'static + Zero + Div<f64, Output = T>,
Expand description

Matrix multiplication.

ยงErrors

Returns CoreError::ShapeError if arrays are not compatible for matrix multiplication.