Compute the dense matrix multiplication .
Given matrices of shape and of shape , produce matrix of shape such that
All matrices are stored in row-major order.
Input
A- input matrix of shape[m][k]stored in row-major order.B- input matrix of shape[k][n]stored in row-major order.m- the number of rows inAandC.n- the number of columns inBandC.k- the number of columns inAand rows inB.
Output
C- output matrix of shape[m][n]such that .