PLASMA
2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
void CORE_zlaset | ( | PLASMA_enum | uplo, |
int | M, | ||
int | N, | ||
PLASMA_Complex64_t | alpha, | ||
PLASMA_Complex64_t | beta, | ||
PLASMA_Complex64_t * | A, | ||
int | LDA | ||
) |
CORE_zlaset - Sets the elements of the matrix A on the diagonal to beta and on the off-diagonals to alpha
[in] | uplo | Specifies which elements of the matrix are to be set = PlasmaUpper: Upper part of A is set; = PlasmaLower: Lower part of A is set; = PlasmaUpperLower: ALL elements of A are set. |
[in] | M | The number of rows of the matrix A. M >= 0. |
[in] | N | The number of columns of the matrix A. N >= 0. |
[in] | alpha | The constant to which the off-diagonal elements are to be set. |
[in] | beta | The constant to which the diagonal elements are to be set. |
[in,out] | A | On entry, the M-by-N tile A. On exit, A has been set accordingly. |
[in] | LDA | The leading dimension of the array A. LDA >= max(1,M). |