CUDA
C/C++    Fortran   

Matrix multiply. More...

List of all members.

Public Member Functions

type(arrayarray_matmul (A, B)
 Multiply two array matrices.

Detailed Description

Matrix multiply.

Parameters:
[in]A-- type array of size M x K
[in]B-- type array of size K x N
Returns:
C of size M x N which is the matrix product of A, B
 type(array) A, B, C
 A = randu(20, 25)  ! Random matrix
 B = randu(25, 10)  ! Random matrix
 C = matmul(A, B)   ! Matrix multiply

The documentation for this interface was generated from the following file: