PLASMA  2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
void CORE_clacpy ( PLASMA_enum  uplo,
int  M,
int  N,
const PLASMA_Complex32_t *  A,
int  LDA,
PLASMA_Complex32_t *  B,
int  LDB 
)

CORE_clacpy copies all or part of a two-dimensional matrix A to another matrix B

Parameters
[in]uploSpecifies the part of the matrix A to be copied to B. = PlasmaUpperLower: All the matrix A = PlasmaUpper: Upper triangular part = PlasmaLower: Lower triangular part
[in]MThe number of rows of the matrices A and B. M >= 0.
[in]NThe number of columns of the matrices A and B. N >= 0.
[in]AThe M-by-N matrix to copy.
[in]LDAThe leading dimension of the array A. LDA >= max(1,M).
[out]BThe M-by-N copy of the matrix A. On exit, B = A ONLY in the locations specified by uplo.
[in]LDBThe leading dimension of the array B. LDB >= max(1,M).