|
PLASMA
2.7.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
| int CORE_sgeadd | ( | int | M, |
| int | N, | ||
| float | alpha, | ||
| const float * | A, | ||
| int | LDA, | ||
| float * | B, | ||
| int | LDB | ||
| ) |
CORE_sgeadd 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 |