PLASMA
2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
void CORE_dtrmm | ( | PLASMA_enum | side, |
PLASMA_enum | uplo, | ||
PLASMA_enum | transA, | ||
PLASMA_enum | diag, | ||
int | M, | ||
int | N, | ||
double | alpha, | ||
const double * | A, | ||
int | LDA, | ||
double * | B, | ||
int | LDB | ||
) |
CORE_dtrmm - Computes B = alpha*op( A )*B or B = alpha*B*op( A ).
[in] | side | Specifies whether A appears on the left or on the right of X: = PlasmaLeft: B = alpha*op( A )*B. = PlasmaRight: B = alpha*B*op( A ). |
[in] | uplo | Specifies whether the matrix A is upper triangular or lower triangular: = PlasmaUpper: Upper triangle of A is stored; = PlasmaLower: Lower triangle of A is stored. |
[in] | transA | Specifies whether the matrix A is transposed, not transposed or ugate transposed: = PlasmaNoTrans: A is transposed; = PlasmaTrans: A is not transposed; = PlasmaTrans: A is ugate transposed. |
[in] | diag | Specifies whether or not A is unit triangular: = PlasmaNonUnit: A is non unit; = PlasmaUnit: A us unit. |
[in] | M | The number of rows of the matrix B. M >= 0. |
[in] | N | The number of columns pf the matrix B. N >= 0. |
[in] | alpha | alpha specifies the scalar alpha. |
[in] | A | A is an array of dimansion LDA-by-k, where k = M if side = PlasmaLeft and k =N when side = PlasmaRight. The triangular matrix A. If uplo = PlasmaUpper, the leading k-by-k upper triangular part of the array A contains the upper triangular matrix, and the strictly lower triangular part of A is not referenced. If uplo = PlasmaLower, the leading k-by-k lower triangular part of the array A contains the lower triangular matrix, and the strictly upper triangular part of A is not referenced. If diag = PlasmaUnit, the diagonal elements of A are also not referenced and are assumed to be 1. |
[in] | LDA | The leading dimension of the array A. LDA >= max(1,k). Where k = M if side = PlasmaLeft and k =N when side = PlasmaRight. |
[in,out] | B | On entry, the LDB-by-N matrix B. On exit, if return value = 0, the M-by-N matrix is overwritten by the transformed matrix. |
[in] | LDB | The leading dimension of the array B. LDB >= max(1,M). |