PLASMA  2.7.1
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
int CORE_zgeadd ( int  M,
int  N,
PLASMA_Complex64_t  alpha,
const PLASMA_Complex64_t *  A,
int  LDA,
PLASMA_Complex64_t *  B,
int  LDB 
)

CORE_zgeadd adds to matrices together.

 B <- alpha * A  + B
Parameters
[in]MNumber of rows of the matrices A and B.
[in]NNumber of columns of the matrices A and B.
[in]alphaScalar factor of A.
[in]AMatrix of size LDA-by-N.
[in]LDALeading dimension of the array A. LDA >= max(1,M)
[in,out]BMatrix of size LDB-by-N.
[in]LDBLeading dimension of the array B. LDB >= max(1,M)
Returns
Return values
PLASMA_SUCCESSsuccessful exit
<0if -i, the i-th argument had an illegal value