PLASMA  2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
int PLASMA_dsyrk ( PLASMA_enum  uplo,
PLASMA_enum  trans,
int  N,
int  K,
double  alpha,
double *  A,
int  LDA,
double  beta,
double *  C,
int  LDC 
)

PLASMA_dsyrk - Performs one of the hermitian rank k operations

\[ C = \alpha [ op( A ) \times g( op( A )' )] + \beta C \]

,

where op( X ) is one of

op( X ) = X or op( X ) = g( X' )

where alpha and beta are real scalars, C is an n-by-n hermitian matrix and A is an n-by-k matrix in the first case and a k-by-n matrix in the second case.

Parameters
[in]uplo= PlasmaUpper: Upper triangle of C is stored; = PlasmaLower: Lower triangle of C is stored.
[in]transSpecifies whether the matrix A is transposed or ugate transposed: = PlasmaNoTrans: A is not transposed; = PlasmaTrans : A is transposed.
[in]NN specifies the order of the matrix C. N must be at least zero.
[in]KK specifies the number of columns of the matrix op( A ).
[in]alphaalpha specifies the scalar alpha.
[in]AA is a LDA-by-ka matrix, where ka is K when trans = PlasmaNoTrans, and is N otherwise.
[in]LDAThe leading dimension of the array A. LDA must be at least max( 1, N ) if trans == PlasmaNoTrans, otherwise LDA must be at least max( 1, K ).
[in]betabeta specifies the scalar beta
[in,out]CC is a LDC-by-N matrix. On exit, the array uplo part of the matrix is overwritten by the uplo part of the updated matrix.
[in]LDCThe leading dimension of the array C. LDC >= max( 1, N ).
Returns
Return values
PLASMA_SUCCESSsuccessful exit
See also
PLASMA_dsyrk_Tile
PLASMA_dsyrk_Tile_Async
PLASMA_csyrk
PLASMA_dsyrk
PLASMA_ssyrk