PLASMA  2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
int CORE_cgessm ( int  M,
int  N,
int  K,
int  IB,
const int *  IPIV,
const PLASMA_Complex32_t *  L,
int  LDL,
PLASMA_Complex32_t *  A,
int  LDA 
)

CORE_cgessm applies the factors L computed by CORE_cgetrf_incpiv to a complex M-by-N tile A.

Parameters
[in]MThe number of rows of the tile A. M >= 0.
[in]NThe number of columns of the tile A. N >= 0.
[in]KThe number of columns of the tile L. K >= 0.
[in]IBThe inner-blocking size. IB >= 0.
[in]IPIVThe pivot indices array of size K as returned by CORE_cgetrf_incpiv.
[in]LThe M-by-K lower triangular tile.
[in]LDLThe leading dimension of the array L. LDL >= max(1,M).
[in,out]AOn entry, the M-by-N tile A. On exit, updated by the application of L.
[in]LDAThe leading dimension of the array A. LDA >= max(1,M).
Returns
Return values
PLASMA_SUCCESSsuccessful exit
<0if INFO = -k, the k-th argument had an illegal value