PLASMA
2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
int PLASMA_zlaset_Tile | ( | PLASMA_enum | uplo, |
PLASMA_Complex64_t | alpha, | ||
PLASMA_Complex64_t | beta, | ||
PLASMA_desc * | A | ||
) |
PLASMA_zlaset_Tile - Tile equivalent of PLASMA_zlaset(). Operates on matrices stored by tiles. All matrices are passed through descriptors. All dimensions are taken from the descriptors.
[in] | uplo | Specifies the part of the matrix A to be set. = PlasmaUpperLower: All the matrix A = PlasmaUpper: Upper triangular part = PlasmaLower: Lower triangular part |
[in] | alpha | All the offdiagonal array elements are set to alpha. |
[in] | beta | All the diagonal array elements are set to beta. |
[in,out] | A | On entry, the m by n matrix A. On exit, A(i,j) = ALPHA, 1 <= i <= m, 1 <= j <= n, i.ne.j; A(i,i) = BETA, 1 <= i <= min(m,n) |
PLASMA_SUCCESS | successful exit |