|
PLASMA
2.6.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
| int CORE_dgeadd | ( | int | M, |
| int | N, | ||
| double | alpha, | ||
| const double * | A, | ||
| int | LDA, | ||
| double * | B, | ||
| int | LDB | ||
| ) |
CORE_dgeadd adds to matrices together.
B <- alpha * A + B
| [in] | M | Number of rows of the matrices A and B. |
| [in] | N | Number of columns of the matrices A and B. |
| [in] | alpha | Scalar factor of A. |
| [in] | A | Matrix of size LDA-by-N. |
| [in] | LDA | Leading dimension of the array A. LDA >= max(1,M) |
| [in,out] | B | Matrix of size LDB-by-N. |
| [in] | LDB | Leading dimension of the array B. LDB >= max(1,M) |
| PLASMA_SUCCESS | successful exit |
| <0 | if -i, the i-th argument had an illegal value |