PLASMA  2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
int PLASMA_dtradd_Tile ( PLASMA_enum  uplo,
PLASMA_enum  trans,
double  alpha,
PLASMA_desc A,
double  beta,
PLASMA_desc B 
)

PLASMA_dtradd_Tile - Performs a matrix addition similarly to the pdtradd() function from the PBLAS library. Tile equivalent of PLASMA_dtradd(). Operates on matrices stored by tiles. All matrices are passed through descriptors. All dimensions are taken from the descriptors.

Parameters
[in]uploSpecifies the shape of A and B matrices: = PlasmaUpperLower: A and B are general matrices. = PlasmaUpper: op(A) and B are upper trapezoidal matrices. = PlasmaLower: op(A) and B are lower trapezoidal matrices.
[in]transSpecifies whether the matrix A is transposed, not transposed or ugate transposed: = PlasmaNoTrans: A is not transposed; = PlasmaTrans: A is transposed; = PlasmaTrans: A is ugate transposed.
[in]alphaalpha specifies the scalar alpha
[in]AA is a LDA-by-ka matrix, where ka is N when trans = PlasmaNoTrans, and is M otherwise.
[in]betabeta specifies the scalar beta
[in,out]BB is a LDB-by-N matrix.
Returns
Return values
PLASMA_SUCCESSsuccessful exit
See also
PLASMA_dtradd
PLASMA_dtradd_Tile_Async
PLASMA_ctradd_Tile
PLASMA_dtradd_Tile
PLASMA_stradd_Tile