|
Functions |
void | cCreate_CompCol_Matrix (SuperMatrix *A, int m, int n, int nnz, complex *nzval, int *rowind, int *colptr, Stype_t stype, Dtype_t dtype, Mtype_t mtype) |
| Supernodal LU factor related.
|
void | cCreate_CompRow_Matrix (SuperMatrix *A, int m, int n, int nnz, complex *nzval, int *colind, int *rowptr, Stype_t stype, Dtype_t dtype, Mtype_t mtype) |
void | cCopy_CompCol_Matrix (SuperMatrix *A, SuperMatrix *B) |
| Copy matrix A into matrix B.
|
void | cCreate_Dense_Matrix (SuperMatrix *X, int m, int n, complex *x, int ldx, Stype_t stype, Dtype_t dtype, Mtype_t mtype) |
void | cCopy_Dense_Matrix (int M, int N, complex *X, int ldx, complex *Y, int ldy) |
| Copies a two-dimensional matrix X to another matrix Y.
|
void | cCreate_SuperNode_Matrix (SuperMatrix *L, int m, int n, int nnz, complex *nzval, int *nzval_colptr, int *rowind, int *rowind_colptr, int *col_to_sup, int *sup_to_col, Stype_t stype, Dtype_t dtype, Mtype_t mtype) |
void | cCompRow_to_CompCol (int m, int n, int nnz, complex *a, int *colind, int *rowptr, complex **at, int **rowind, int **colptr) |
| Convert a row compressed storage into a column compressed storage.
|
void | cPrint_CompCol_Matrix (char *what, SuperMatrix *A) |
| Routines for debugging.
|
void | cPrint_SuperNode_Matrix (char *what, SuperMatrix *A) |
void | cPrint_Dense_Matrix (char *what, SuperMatrix *A) |
void | cprint_lu_col (char *msg, int jcol, int pivrow, int *xprune, GlobalLU_t *Glu) |
| Diagnostic print of column "jcol" in the U/L factor.
|
void | ccheck_tempv (int n, complex *tempv) |
| Check whether tempv[] == 0. This should be true before and after calling any numeric routines, i.e., "panel_bmod" and "column_bmod".
|
void | cGenXtrue (int n, int nrhs, complex *x, int ldx) |
void | cFillRHS (trans_t trans, int nrhs, complex *x, int ldx, SuperMatrix *A, SuperMatrix *B) |
| Let rhs[i] = sum of i-th row of A, so the solution vector is all 1's.
|
void | cfill (complex *a, int alen, complex dval) |
| Fills a complex precision array with a given value.
|
void | cinf_norm_error (int nrhs, SuperMatrix *X, complex *xtrue) |
| Check the inf-norm of the error vector.
|
void | cPrintPerf (SuperMatrix *L, SuperMatrix *U, mem_usage_t *mem_usage, float rpg, float rcond, float *ferr, float *berr, char *equed, SuperLUStat_t *stat) |
| Print performance of the code.
|
| print_complex_vec (char *what, int n, complex *vec) |