13bf14a46SMatthew Knepley /* 23bf14a46SMatthew Knepley Provides an interface to the PaStiX sparse solver 33bf14a46SMatthew Knepley */ 4c6db04a5SJed Brown #include <../src/mat/impls/aij/seq/aij.h> 5c6db04a5SJed Brown #include <../src/mat/impls/aij/mpi/mpiaij.h> 6c6db04a5SJed Brown #include <../src/mat/impls/sbaij/seq/sbaij.h> 7c6db04a5SJed Brown #include <../src/mat/impls/sbaij/mpi/mpisbaij.h> 83bf14a46SMatthew Knepley 95ec454cfSSatish Balay #if defined(PETSC_USE_COMPLEX) && defined(__cplusplus) 105ec454cfSSatish Balay #define _H_COMPLEX 115ec454cfSSatish Balay #endif 125ec454cfSSatish Balay 133bf14a46SMatthew Knepley EXTERN_C_BEGIN 14c6db04a5SJed Brown #include <pastix.h> 153bf14a46SMatthew Knepley EXTERN_C_END 163bf14a46SMatthew Knepley 17519f805aSKarl Rupp #if defined(PETSC_USE_COMPLEX) 18519f805aSKarl Rupp #if defined(PETSC_USE_REAL_SINGLE) 195ec454cfSSatish Balay #define PASTIX_CALL c_pastix 205ec454cfSSatish Balay #define PASTIX_CHECKMATRIX c_pastix_checkMatrix 215ec454cfSSatish Balay #define PastixScalar COMPLEX 225ec454cfSSatish Balay #else 235ec454cfSSatish Balay #define PASTIX_CALL z_pastix 245ec454cfSSatish Balay #define PASTIX_CHECKMATRIX z_pastix_checkMatrix 255ec454cfSSatish Balay #define PastixScalar DCOMPLEX 265ec454cfSSatish Balay #endif 27d41469e0Sxavier lacoste 28d41469e0Sxavier lacoste #else /* PETSC_USE_COMPLEX */ 29d41469e0Sxavier lacoste 30519f805aSKarl Rupp #if defined(PETSC_USE_REAL_SINGLE) 315ec454cfSSatish Balay #define PASTIX_CALL s_pastix 325ec454cfSSatish Balay #define PASTIX_CHECKMATRIX s_pastix_checkMatrix 335ec454cfSSatish Balay #define PastixScalar float 345ec454cfSSatish Balay #else 355ec454cfSSatish Balay #define PASTIX_CALL d_pastix 365ec454cfSSatish Balay #define PASTIX_CHECKMATRIX d_pastix_checkMatrix 375ec454cfSSatish Balay #define PastixScalar double 385ec454cfSSatish Balay #endif 39d41469e0Sxavier lacoste 40d41469e0Sxavier lacoste #endif /* PETSC_USE_COMPLEX */ 41d41469e0Sxavier lacoste 423bf14a46SMatthew Knepley typedef struct Mat_Pastix_ { 433bf14a46SMatthew Knepley pastix_data_t *pastix_data; /* Pastix data storage structure */ 443bf14a46SMatthew Knepley MatStructure matstruc; 453bf14a46SMatthew Knepley PetscInt n; /* Number of columns in the matrix */ 463bf14a46SMatthew Knepley PetscInt *colptr; /* Index of first element of each column in row and val */ 473bf14a46SMatthew Knepley PetscInt *row; /* Row of each element of the matrix */ 483bf14a46SMatthew Knepley PetscScalar *val; /* Value of each element of the matrix */ 493bf14a46SMatthew Knepley PetscInt *perm; /* Permutation tabular */ 503bf14a46SMatthew Knepley PetscInt *invp; /* Reverse permutation tabular */ 513bf14a46SMatthew Knepley PetscScalar *rhs; /* Rhight-hand-side member */ 523bf14a46SMatthew Knepley PetscInt rhsnbr; /* Rhight-hand-side number (must be 1) */ 533bf14a46SMatthew Knepley PetscInt iparm[64]; /* Integer parameters */ 543bf14a46SMatthew Knepley double dparm[64]; /* Floating point parameters */ 553bf14a46SMatthew Knepley MPI_Comm pastix_comm; /* PaStiX MPI communicator */ 563bf14a46SMatthew Knepley PetscMPIInt commRank; /* MPI rank */ 573bf14a46SMatthew Knepley PetscMPIInt commSize; /* MPI communicator size */ 58ace3abfcSBarry Smith PetscBool CleanUpPastix; /* Boolean indicating if we call PaStiX clean step */ 593bf14a46SMatthew Knepley VecScatter scat_rhs; 603bf14a46SMatthew Knepley VecScatter scat_sol; 61f31ce8a6SBarry Smith Vec b_seq; 62ace3abfcSBarry Smith PetscBool isAIJ; 63bf0cc555SLisandro Dalcin PetscErrorCode (*Destroy)(Mat); 643bf14a46SMatthew Knepley } Mat_Pastix; 653bf14a46SMatthew Knepley 6609573ac7SBarry Smith extern PetscErrorCode MatDuplicate_Pastix(Mat,MatDuplicateOption,Mat*); 673bf14a46SMatthew Knepley 68eb1f6c34SBarry Smith #undef __FUNCT__ 69eb1f6c34SBarry Smith #define __FUNCT__ "MatConvertToCSC" 703bf14a46SMatthew Knepley /* 713bf14a46SMatthew Knepley convert Petsc seqaij matrix to CSC: colptr[n], row[nz], val[nz] 723bf14a46SMatthew Knepley 733bf14a46SMatthew Knepley input: 743bf14a46SMatthew Knepley A - matrix in seqaij or mpisbaij (bs=1) format 753bf14a46SMatthew Knepley valOnly - FALSE: spaces are allocated and values are set for the CSC 763bf14a46SMatthew Knepley TRUE: Only fill values 773bf14a46SMatthew Knepley output: 783bf14a46SMatthew Knepley n - Size of the matrix 793bf14a46SMatthew Knepley colptr - Index of first element of each column in row and val 803bf14a46SMatthew Knepley row - Row of each element of the matrix 813bf14a46SMatthew Knepley values - Value of each element of the matrix 823bf14a46SMatthew Knepley */ 83ace3abfcSBarry Smith PetscErrorCode MatConvertToCSC(Mat A,PetscBool valOnly,PetscInt *n,PetscInt **colptr,PetscInt **row,PetscScalar **values) 8441c8de11SBarry Smith { 853bf14a46SMatthew Knepley Mat_SeqAIJ *aa = (Mat_SeqAIJ*)A->data; 863bf14a46SMatthew Knepley PetscInt *rowptr = aa->i; 873bf14a46SMatthew Knepley PetscInt *col = aa->j; 883bf14a46SMatthew Knepley PetscScalar *rvalues = aa->a; 893bf14a46SMatthew Knepley PetscInt m = A->rmap->N; 90745c78f7SBarry Smith PetscInt nnz; 913bf14a46SMatthew Knepley PetscInt i,j, k; 923bf14a46SMatthew Knepley PetscInt base = 1; 933bf14a46SMatthew Knepley PetscInt idx; 943bf14a46SMatthew Knepley PetscErrorCode ierr; 953bf14a46SMatthew Knepley PetscInt colidx; 963bf14a46SMatthew Knepley PetscInt *colcount; 97ace3abfcSBarry Smith PetscBool isSBAIJ; 98ace3abfcSBarry Smith PetscBool isSeqSBAIJ; 99ace3abfcSBarry Smith PetscBool isMpiSBAIJ; 100ace3abfcSBarry Smith PetscBool isSym; 101d41469e0Sxavier lacoste PetscBool flg; 102d41469e0Sxavier lacoste PetscInt icntl; 103d41469e0Sxavier lacoste PetscInt verb; 104d41469e0Sxavier lacoste PetscInt check; 1053bf14a46SMatthew Knepley 1063bf14a46SMatthew Knepley PetscFunctionBegin; 10741c8de11SBarry Smith ierr = MatIsSymmetric(A,0.0,&isSym);CHKERRQ(ierr); 108251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)A,MATSBAIJ,&isSBAIJ);CHKERRQ(ierr); 109251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)A,MATSEQSBAIJ,&isSeqSBAIJ);CHKERRQ(ierr); 110251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)A,MATMPISBAIJ,&isMpiSBAIJ);CHKERRQ(ierr); 1113bf14a46SMatthew Knepley 112745c78f7SBarry Smith *n = A->cmap->N; 113745c78f7SBarry Smith 114745c78f7SBarry Smith /* PaStiX only needs triangular matrix if matrix is symmetric 115745c78f7SBarry Smith */ 1162205254eSKarl Rupp if (isSym && !(isSBAIJ || isSeqSBAIJ || isMpiSBAIJ)) nnz = (aa->nz - *n)/2 + *n; 1172205254eSKarl Rupp else nnz = aa->nz; 1183bf14a46SMatthew Knepley 1193bf14a46SMatthew Knepley if (!valOnly) { 1203bf14a46SMatthew Knepley ierr = PetscMalloc(((*n)+1) *sizeof(PetscInt) ,colptr);CHKERRQ(ierr); 1213bf14a46SMatthew Knepley ierr = PetscMalloc(nnz *sizeof(PetscInt) ,row);CHKERRQ(ierr); 1223bf14a46SMatthew Knepley ierr = PetscMalloc(nnz *sizeof(PetscScalar),values);CHKERRQ(ierr); 1233bf14a46SMatthew Knepley 12441c8de11SBarry Smith if (isSBAIJ || isSeqSBAIJ || isMpiSBAIJ) { 12541c8de11SBarry Smith ierr = PetscMemcpy (*colptr, rowptr, ((*n)+1)*sizeof(PetscInt));CHKERRQ(ierr); 1262205254eSKarl Rupp for (i = 0; i < *n+1; i++) (*colptr)[i] += base; 12741c8de11SBarry Smith ierr = PetscMemcpy (*row, col, (nnz)*sizeof(PetscInt));CHKERRQ(ierr); 1282205254eSKarl Rupp for (i = 0; i < nnz; i++) (*row)[i] += base; 12941c8de11SBarry Smith ierr = PetscMemcpy (*values, rvalues, (nnz)*sizeof(PetscScalar));CHKERRQ(ierr); 13041c8de11SBarry Smith } else { 13141c8de11SBarry Smith ierr = PetscMalloc((*n)*sizeof(PetscInt),&colcount);CHKERRQ(ierr); 13241c8de11SBarry Smith 133f31ce8a6SBarry Smith for (i = 0; i < m; i++) colcount[i] = 0; 1343bf14a46SMatthew Knepley /* Fill-in colptr */ 135f31ce8a6SBarry Smith for (i = 0; i < m; i++) { 136f31ce8a6SBarry Smith for (j = rowptr[i]; j < rowptr[i+1]; j++) { 137f31ce8a6SBarry Smith if (!isSym || col[j] <= i) colcount[col[j]]++; 138f31ce8a6SBarry Smith } 139f31ce8a6SBarry Smith } 140745c78f7SBarry Smith 1413bf14a46SMatthew Knepley (*colptr)[0] = base; 1423bf14a46SMatthew Knepley for (j = 0; j < *n; j++) { 1433bf14a46SMatthew Knepley (*colptr)[j+1] = (*colptr)[j] + colcount[j]; 144745c78f7SBarry Smith /* in next loop we fill starting from (*colptr)[colidx] - base */ 1453bf14a46SMatthew Knepley colcount[j] = -base; 1463bf14a46SMatthew Knepley } 1473bf14a46SMatthew Knepley 1483bf14a46SMatthew Knepley /* Fill-in rows and values */ 1493bf14a46SMatthew Knepley for (i = 0; i < m; i++) { 1503bf14a46SMatthew Knepley for (j = rowptr[i]; j < rowptr[i+1]; j++) { 15141c8de11SBarry Smith if (!isSym || col[j] <= i) { 1523bf14a46SMatthew Knepley colidx = col[j]; 1533bf14a46SMatthew Knepley idx = (*colptr)[colidx] + colcount[colidx]; 1543bf14a46SMatthew Knepley (*row)[idx] = i + base; 1553bf14a46SMatthew Knepley (*values)[idx] = rvalues[j]; 1563bf14a46SMatthew Knepley colcount[colidx]++; 1573bf14a46SMatthew Knepley } 1583bf14a46SMatthew Knepley } 1593bf14a46SMatthew Knepley } 16041c8de11SBarry Smith ierr = PetscFree(colcount);CHKERRQ(ierr); 161745c78f7SBarry Smith } 16241c8de11SBarry Smith } else { 163745c78f7SBarry Smith /* Fill-in only values */ 1643bf14a46SMatthew Knepley for (i = 0; i < m; i++) { 1653bf14a46SMatthew Knepley for (j = rowptr[i]; j < rowptr[i+1]; j++) { 1663bf14a46SMatthew Knepley colidx = col[j]; 1672205254eSKarl Rupp if ((isSBAIJ || isSeqSBAIJ || isMpiSBAIJ) ||!isSym || col[j] <= i) { 168745c78f7SBarry Smith /* look for the value to fill */ 169f31ce8a6SBarry Smith for (k = (*colptr)[colidx] - base; k < (*colptr)[colidx + 1] - base; k++) { 170eb1f6c34SBarry Smith if (((*row)[k]-base) == i) { 1713bf14a46SMatthew Knepley (*values)[k] = rvalues[j]; 1723bf14a46SMatthew Knepley break; 1733bf14a46SMatthew Knepley } 1743bf14a46SMatthew Knepley } 175f31ce8a6SBarry Smith /* data structure of sparse matrix has changed */ 176e32f2f54SBarry Smith if (k == (*colptr)[colidx + 1] - base) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_PLIB,"overflow on k %D",k); 1773bf14a46SMatthew Knepley } 1783bf14a46SMatthew Knepley } 1793bf14a46SMatthew Knepley } 180745c78f7SBarry Smith } 181d41469e0Sxavier lacoste 182d41469e0Sxavier lacoste icntl =-1; 183d41469e0Sxavier lacoste check = 0; 184d41469e0Sxavier lacoste ierr = PetscOptionsInt("-mat_pastix_check","Check the matrix 0 : no, 1 : yes)","None",check,&icntl,&flg);CHKERRQ(ierr); 1852205254eSKarl Rupp if ((flg && icntl >= 0) || PetscLogPrintInfo) check = icntl; 1862205254eSKarl Rupp 187d41469e0Sxavier lacoste if (check == 1) { 18870fe17b1SSatish Balay PetscScalar *tmpvalues; 18970fe17b1SSatish Balay PetscInt *tmprows,*tmpcolptr; 1900f11a792SBarry Smith tmpvalues = (PetscScalar*)malloc(nnz*sizeof(PetscScalar)); if (!tmpvalues) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_MEM,"Unable to allocate memory"); 1910f11a792SBarry Smith tmprows = (PetscInt*) malloc(nnz*sizeof(PetscInt)); if (!tmprows) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_MEM,"Unable to allocate memory"); 1920f11a792SBarry Smith tmpcolptr = (PetscInt*) malloc((*n+1)*sizeof(PetscInt)); if (!tmpcolptr) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_MEM,"Unable to allocate memory"); 19343801a69SSatish Balay 19470fe17b1SSatish Balay ierr = PetscMemcpy(tmpcolptr,*colptr,(*n+1)*sizeof(PetscInt));CHKERRQ(ierr); 19570fe17b1SSatish Balay ierr = PetscMemcpy(tmprows,*row,nnz*sizeof(PetscInt));CHKERRQ(ierr); 19670fe17b1SSatish Balay ierr = PetscMemcpy(tmpvalues,*values,nnz*sizeof(PetscScalar));CHKERRQ(ierr); 19743801a69SSatish Balay ierr = PetscFree(*row);CHKERRQ(ierr); 19843801a69SSatish Balay ierr = PetscFree(*values);CHKERRQ(ierr); 19943801a69SSatish Balay 200d41469e0Sxavier lacoste icntl=-1; 201d41469e0Sxavier lacoste verb = API_VERBOSE_NOT; 202d41469e0Sxavier lacoste ierr = PetscOptionsInt("-mat_pastix_verbose","iparm[IPARM_VERBOSE] : level of printing (0 to 2)","None",verb,&icntl,&flg);CHKERRQ(ierr); 203d41469e0Sxavier lacoste if ((flg && icntl >= 0) || PetscLogPrintInfo) { 204d41469e0Sxavier lacoste verb = icntl; 205d41469e0Sxavier lacoste } 2065ec454cfSSatish Balay PASTIX_CHECKMATRIX(MPI_COMM_WORLD,verb,((isSym != 0) ? API_SYM_YES : API_SYM_NO),API_YES,*n,&tmpcolptr,&tmprows,(PastixScalar**)&tmpvalues,NULL,1); 20743801a69SSatish Balay 20870fe17b1SSatish Balay ierr = PetscMemcpy(*colptr,tmpcolptr,(*n+1)*sizeof(PetscInt));CHKERRQ(ierr); 20943801a69SSatish Balay ierr = PetscMalloc(((*colptr)[*n]-1)*sizeof(PetscInt),row);CHKERRQ(ierr); 21070fe17b1SSatish Balay ierr = PetscMemcpy(*row,tmprows,((*colptr)[*n]-1)*sizeof(PetscInt));CHKERRQ(ierr); 21143801a69SSatish Balay ierr = PetscMalloc(((*colptr)[*n]-1)*sizeof(PetscScalar),values);CHKERRQ(ierr); 21270fe17b1SSatish Balay ierr = PetscMemcpy(*values,tmpvalues,((*colptr)[*n]-1)*sizeof(PetscScalar));CHKERRQ(ierr); 213be76a908SBarry Smith free(tmpvalues); 214be76a908SBarry Smith free(tmprows); 215be76a908SBarry Smith free(tmpcolptr); 216be76a908SBarry Smith 21743801a69SSatish Balay } 2183bf14a46SMatthew Knepley PetscFunctionReturn(0); 2193bf14a46SMatthew Knepley } 2203bf14a46SMatthew Knepley 2213bf14a46SMatthew Knepley 2223bf14a46SMatthew Knepley 2233bf14a46SMatthew Knepley #undef __FUNCT__ 2243bf14a46SMatthew Knepley #define __FUNCT__ "MatDestroy_Pastix" 2253bf14a46SMatthew Knepley /* 2263bf14a46SMatthew Knepley Call clean step of PaStiX if lu->CleanUpPastix == true. 2273bf14a46SMatthew Knepley Free the CSC matrix. 2283bf14a46SMatthew Knepley */ 2293bf14a46SMatthew Knepley PetscErrorCode MatDestroy_Pastix(Mat A) 2303bf14a46SMatthew Knepley { 2313bf14a46SMatthew Knepley Mat_Pastix *lu=(Mat_Pastix*)A->spptr; 2323bf14a46SMatthew Knepley PetscErrorCode ierr; 2333bf14a46SMatthew Knepley PetscMPIInt size=lu->commSize; 234745c78f7SBarry Smith 2353bf14a46SMatthew Knepley PetscFunctionBegin; 236bf0cc555SLisandro Dalcin if (lu && lu->CleanUpPastix) { 2373bf14a46SMatthew Knepley /* Terminate instance, deallocate memories */ 2383bf14a46SMatthew Knepley if (size > 1) { 2396bf464f9SBarry Smith ierr = VecScatterDestroy(&lu->scat_rhs);CHKERRQ(ierr); 2406bf464f9SBarry Smith ierr = VecDestroy(&lu->b_seq);CHKERRQ(ierr); 2416bf464f9SBarry Smith ierr = VecScatterDestroy(&lu->scat_sol);CHKERRQ(ierr); 2423bf14a46SMatthew Knepley } 2433bf14a46SMatthew Knepley 2443bf14a46SMatthew Knepley lu->iparm[IPARM_START_TASK]=API_TASK_CLEAN; 2453bf14a46SMatthew Knepley lu->iparm[IPARM_END_TASK] =API_TASK_CLEAN; 2463bf14a46SMatthew Knepley 247d41469e0Sxavier lacoste PASTIX_CALL(&(lu->pastix_data), 2483bf14a46SMatthew Knepley lu->pastix_comm, 249d41469e0Sxavier lacoste lu->n, 250d41469e0Sxavier lacoste lu->colptr, 251d41469e0Sxavier lacoste lu->row, 2525ec454cfSSatish Balay (PastixScalar*)lu->val, 253d41469e0Sxavier lacoste lu->perm, 254d41469e0Sxavier lacoste lu->invp, 2555ec454cfSSatish Balay (PastixScalar*)lu->rhs, 256d41469e0Sxavier lacoste lu->rhsnbr, 257d41469e0Sxavier lacoste lu->iparm, 2583bf14a46SMatthew Knepley lu->dparm); 2593bf14a46SMatthew Knepley 2603bf14a46SMatthew Knepley ierr = PetscFree(lu->colptr);CHKERRQ(ierr); 2613bf14a46SMatthew Knepley ierr = PetscFree(lu->row);CHKERRQ(ierr); 2623bf14a46SMatthew Knepley ierr = PetscFree(lu->val);CHKERRQ(ierr); 2633bf14a46SMatthew Knepley ierr = PetscFree(lu->perm);CHKERRQ(ierr); 2643bf14a46SMatthew Knepley ierr = PetscFree(lu->invp);CHKERRQ(ierr); 2653bf14a46SMatthew Knepley ierr = MPI_Comm_free(&(lu->pastix_comm));CHKERRQ(ierr); 2663bf14a46SMatthew Knepley } 267bf0cc555SLisandro Dalcin if (lu && lu->Destroy) { 268bf0cc555SLisandro Dalcin ierr = (lu->Destroy)(A);CHKERRQ(ierr); 269bf0cc555SLisandro Dalcin } 270bf0cc555SLisandro Dalcin ierr = PetscFree(A->spptr);CHKERRQ(ierr); 2713bf14a46SMatthew Knepley PetscFunctionReturn(0); 2723bf14a46SMatthew Knepley } 2733bf14a46SMatthew Knepley 2743bf14a46SMatthew Knepley #undef __FUNCT__ 2753bf14a46SMatthew Knepley #define __FUNCT__ "MatSolve_PaStiX" 2763bf14a46SMatthew Knepley /* 2773bf14a46SMatthew Knepley Gather right-hand-side. 2783bf14a46SMatthew Knepley Call for Solve step. 2793bf14a46SMatthew Knepley Scatter solution. 2803bf14a46SMatthew Knepley */ 2813bf14a46SMatthew Knepley PetscErrorCode MatSolve_PaStiX(Mat A,Vec b,Vec x) 2823bf14a46SMatthew Knepley { 2833bf14a46SMatthew Knepley Mat_Pastix *lu=(Mat_Pastix*)A->spptr; 2843bf14a46SMatthew Knepley PetscScalar *array; 2853bf14a46SMatthew Knepley Vec x_seq; 2863bf14a46SMatthew Knepley PetscErrorCode ierr; 2873bf14a46SMatthew Knepley 2883bf14a46SMatthew Knepley PetscFunctionBegin; 2893bf14a46SMatthew Knepley lu->rhsnbr = 1; 2903bf14a46SMatthew Knepley x_seq = lu->b_seq; 2913bf14a46SMatthew Knepley if (lu->commSize > 1) { 2923bf14a46SMatthew Knepley /* PaStiX only supports centralized rhs. Scatter b into a seqential rhs vector */ 2933bf14a46SMatthew Knepley ierr = VecScatterBegin(lu->scat_rhs,b,x_seq,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 2943bf14a46SMatthew Knepley ierr = VecScatterEnd(lu->scat_rhs,b,x_seq,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 295b5e56a35SBarry Smith ierr = VecGetArray(x_seq,&array);CHKERRQ(ierr); 29641c8de11SBarry Smith } else { /* size == 1 */ 2973bf14a46SMatthew Knepley ierr = VecCopy(b,x);CHKERRQ(ierr); 2983bf14a46SMatthew Knepley ierr = VecGetArray(x,&array);CHKERRQ(ierr); 2993bf14a46SMatthew Knepley } 3003bf14a46SMatthew Knepley lu->rhs = array; 3013bf14a46SMatthew Knepley if (lu->commSize == 1) { 3023bf14a46SMatthew Knepley ierr = VecRestoreArray(x,&array);CHKERRQ(ierr); 3033bf14a46SMatthew Knepley } else { 3043bf14a46SMatthew Knepley ierr = VecRestoreArray(x_seq,&array);CHKERRQ(ierr); 3053bf14a46SMatthew Knepley } 3063bf14a46SMatthew Knepley 3073bf14a46SMatthew Knepley /* solve phase */ 3083bf14a46SMatthew Knepley /*-------------*/ 3093bf14a46SMatthew Knepley lu->iparm[IPARM_START_TASK] = API_TASK_SOLVE; 3103bf14a46SMatthew Knepley lu->iparm[IPARM_END_TASK] = API_TASK_REFINE; 311745c78f7SBarry Smith lu->iparm[IPARM_RHS_MAKING] = API_RHS_B; 3123bf14a46SMatthew Knepley 313d41469e0Sxavier lacoste PASTIX_CALL(&(lu->pastix_data), 314d41469e0Sxavier lacoste lu->pastix_comm, 315d41469e0Sxavier lacoste lu->n, 316d41469e0Sxavier lacoste lu->colptr, 317d41469e0Sxavier lacoste lu->row, 3185ec454cfSSatish Balay (PastixScalar*)lu->val, 319d41469e0Sxavier lacoste lu->perm, 320d41469e0Sxavier lacoste lu->invp, 3215ec454cfSSatish Balay (PastixScalar*)lu->rhs, 322d41469e0Sxavier lacoste lu->rhsnbr, 323d41469e0Sxavier lacoste lu->iparm, 324d41469e0Sxavier lacoste lu->dparm); 3253bf14a46SMatthew Knepley 32665e19b50SBarry Smith if (lu->iparm[IPARM_ERROR_NUMBER] < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_LIB,"Error reported by PaStiX in solve phase: lu->iparm[IPARM_ERROR_NUMBER] = %d\n",lu->iparm[IPARM_ERROR_NUMBER]); 3273bf14a46SMatthew Knepley 3283bf14a46SMatthew Knepley if (lu->commSize == 1) { 3293bf14a46SMatthew Knepley ierr = VecRestoreArray(x,&(lu->rhs));CHKERRQ(ierr); 3303bf14a46SMatthew Knepley } else { 3313bf14a46SMatthew Knepley ierr = VecRestoreArray(x_seq,&(lu->rhs));CHKERRQ(ierr); 3323bf14a46SMatthew Knepley } 3333bf14a46SMatthew Knepley 3343bf14a46SMatthew Knepley if (lu->commSize > 1) { /* convert PaStiX centralized solution to petsc mpi x */ 3353bf14a46SMatthew Knepley ierr = VecScatterBegin(lu->scat_sol,x_seq,x,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 3363bf14a46SMatthew Knepley ierr = VecScatterEnd(lu->scat_sol,x_seq,x,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 3373bf14a46SMatthew Knepley } 3383bf14a46SMatthew Knepley PetscFunctionReturn(0); 3393bf14a46SMatthew Knepley } 3403bf14a46SMatthew Knepley 3413bf14a46SMatthew Knepley /* 3423bf14a46SMatthew Knepley Numeric factorisation using PaStiX solver. 3433bf14a46SMatthew Knepley 3443bf14a46SMatthew Knepley */ 3453bf14a46SMatthew Knepley #undef __FUNCT__ 34653c77d0aSJed Brown #define __FUNCT__ "MatFactorNumeric_PaStiX" 3473bf14a46SMatthew Knepley PetscErrorCode MatFactorNumeric_PaStiX(Mat F,Mat A,const MatFactorInfo *info) 3483bf14a46SMatthew Knepley { 3493bf14a46SMatthew Knepley Mat_Pastix *lu =(Mat_Pastix*)(F)->spptr; 35041c8de11SBarry Smith Mat *tseq; 3513bf14a46SMatthew Knepley PetscErrorCode ierr = 0; 352b5e56a35SBarry Smith PetscInt icntl; 353b5e56a35SBarry Smith PetscInt M=A->rmap->N; 354ace3abfcSBarry Smith PetscBool valOnly,flg, isSym; 3553bf14a46SMatthew Knepley Mat F_diag; 3563bf14a46SMatthew Knepley IS is_iden; 3573bf14a46SMatthew Knepley Vec b; 3583bf14a46SMatthew Knepley IS isrow; 35951a30905SBarry Smith PetscBool isSeqAIJ,isSeqSBAIJ,isMPIAIJ; 3603bf14a46SMatthew Knepley 3613bf14a46SMatthew Knepley PetscFunctionBegin; 362251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)A,MATSEQAIJ,&isSeqAIJ);CHKERRQ(ierr); 363251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)A,MATMPIAIJ,&isMPIAIJ);CHKERRQ(ierr); 364251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)A,MATSEQSBAIJ,&isSeqSBAIJ);CHKERRQ(ierr); 3653bf14a46SMatthew Knepley if (lu->matstruc == DIFFERENT_NONZERO_PATTERN) { 3663bf14a46SMatthew Knepley (F)->ops->solve = MatSolve_PaStiX; 3673bf14a46SMatthew Knepley 3683bf14a46SMatthew Knepley /* Initialize a PASTIX instance */ 369ce94432eSBarry Smith ierr = MPI_Comm_dup(PetscObjectComm((PetscObject)A),&(lu->pastix_comm));CHKERRQ(ierr); 3703bf14a46SMatthew Knepley ierr = MPI_Comm_rank(lu->pastix_comm, &lu->commRank);CHKERRQ(ierr); 3713bf14a46SMatthew Knepley ierr = MPI_Comm_size(lu->pastix_comm, &lu->commSize);CHKERRQ(ierr); 3723bf14a46SMatthew Knepley 3733bf14a46SMatthew Knepley /* Set pastix options */ 3743bf14a46SMatthew Knepley lu->iparm[IPARM_MODIFY_PARAMETER] = API_NO; 3753bf14a46SMatthew Knepley lu->iparm[IPARM_START_TASK] = API_TASK_INIT; 3763bf14a46SMatthew Knepley lu->iparm[IPARM_END_TASK] = API_TASK_INIT; 3772205254eSKarl Rupp 3783bf14a46SMatthew Knepley lu->rhsnbr = 1; 3793bf14a46SMatthew Knepley 3803bf14a46SMatthew Knepley /* Call to set default pastix options */ 381d41469e0Sxavier lacoste PASTIX_CALL(&(lu->pastix_data), 382d41469e0Sxavier lacoste lu->pastix_comm, 383d41469e0Sxavier lacoste lu->n, 384d41469e0Sxavier lacoste lu->colptr, 385d41469e0Sxavier lacoste lu->row, 3865ec454cfSSatish Balay (PastixScalar*)lu->val, 387d41469e0Sxavier lacoste lu->perm, 388d41469e0Sxavier lacoste lu->invp, 3895ec454cfSSatish Balay (PastixScalar*)lu->rhs, 390d41469e0Sxavier lacoste lu->rhsnbr, 391d41469e0Sxavier lacoste lu->iparm, 392d41469e0Sxavier lacoste lu->dparm); 3933bf14a46SMatthew Knepley 394ce94432eSBarry Smith ierr = PetscOptionsBegin(PetscObjectComm((PetscObject)A),((PetscObject)A)->prefix,"PaStiX Options","Mat");CHKERRQ(ierr); 3953bf14a46SMatthew Knepley 3963bf14a46SMatthew Knepley icntl = -1; 3972205254eSKarl Rupp 39841c8de11SBarry Smith lu->iparm[IPARM_VERBOSE] = API_VERBOSE_NOT; 3992205254eSKarl Rupp 40041c8de11SBarry Smith ierr = PetscOptionsInt("-mat_pastix_verbose","iparm[IPARM_VERBOSE] : level of printing (0 to 2)","None",lu->iparm[IPARM_VERBOSE],&icntl,&flg);CHKERRQ(ierr); 401d41469e0Sxavier lacoste if ((flg && icntl >= 0) || PetscLogPrintInfo) { 4023bf14a46SMatthew Knepley lu->iparm[IPARM_VERBOSE] = icntl; 4033bf14a46SMatthew Knepley } 4043bf14a46SMatthew Knepley icntl=-1; 405e4e47003SBarry Smith ierr = PetscOptionsInt("-mat_pastix_threadnbr","iparm[IPARM_THREAD_NBR] : Number of thread by MPI node","None",lu->iparm[IPARM_THREAD_NBR],&icntl,&flg);CHKERRQ(ierr); 4063bf14a46SMatthew Knepley if ((flg && icntl > 0)) { 4073bf14a46SMatthew Knepley lu->iparm[IPARM_THREAD_NBR] = icntl; 4083bf14a46SMatthew Knepley } 4093bf14a46SMatthew Knepley PetscOptionsEnd(); 4103bf14a46SMatthew Knepley valOnly = PETSC_FALSE; 41141c8de11SBarry Smith } else { 4125d6241c8SBarry Smith if (isSeqAIJ || isMPIAIJ) { 4135d6241c8SBarry Smith ierr = PetscFree(lu->colptr);CHKERRQ(ierr); 4145d6241c8SBarry Smith ierr = PetscFree(lu->row);CHKERRQ(ierr); 4155d6241c8SBarry Smith ierr = PetscFree(lu->val);CHKERRQ(ierr); 4165d6241c8SBarry Smith valOnly = PETSC_FALSE; 4175d6241c8SBarry Smith } else valOnly = PETSC_TRUE; 4183bf14a46SMatthew Knepley } 4193bf14a46SMatthew Knepley 4203bf14a46SMatthew Knepley lu->iparm[IPARM_MATRIX_VERIFICATION] = API_YES; 4213bf14a46SMatthew Knepley 4223bf14a46SMatthew Knepley /* convert mpi A to seq mat A */ 4233bf14a46SMatthew Knepley ierr = ISCreateStride(PETSC_COMM_SELF,M,0,1,&isrow);CHKERRQ(ierr); 4243bf14a46SMatthew Knepley ierr = MatGetSubMatrices(A,1,&isrow,&isrow,MAT_INITIAL_MATRIX,&tseq);CHKERRQ(ierr); 4256bf464f9SBarry Smith ierr = ISDestroy(&isrow);CHKERRQ(ierr); 4263bf14a46SMatthew Knepley 42741c8de11SBarry Smith ierr = MatConvertToCSC(*tseq,valOnly, &lu->n, &lu->colptr, &lu->row, &lu->val);CHKERRQ(ierr); 42841c8de11SBarry Smith ierr = MatIsSymmetric(*tseq,0.0,&isSym);CHKERRQ(ierr); 42941c8de11SBarry Smith ierr = MatDestroyMatrices(1,&tseq);CHKERRQ(ierr); 43041c8de11SBarry Smith 4315d6241c8SBarry Smith if (!lu->perm) { 4323bf14a46SMatthew Knepley ierr = PetscMalloc((lu->n)*sizeof(PetscInt),&(lu->perm));CHKERRQ(ierr); 4333bf14a46SMatthew Knepley ierr = PetscMalloc((lu->n)*sizeof(PetscInt),&(lu->invp));CHKERRQ(ierr); 4345d6241c8SBarry Smith } 4353bf14a46SMatthew Knepley 4363bf14a46SMatthew Knepley if (isSym) { 437745c78f7SBarry Smith /* On symmetric matrix, LLT */ 4383bf14a46SMatthew Knepley lu->iparm[IPARM_SYM] = API_SYM_YES; 43941c8de11SBarry Smith lu->iparm[IPARM_FACTORIZATION] = API_FACT_LDLT; 440f31ce8a6SBarry Smith } else { 441745c78f7SBarry Smith /* On unsymmetric matrix, LU */ 4423bf14a46SMatthew Knepley lu->iparm[IPARM_SYM] = API_SYM_NO; 4433bf14a46SMatthew Knepley lu->iparm[IPARM_FACTORIZATION] = API_FACT_LU; 4443bf14a46SMatthew Knepley } 4453bf14a46SMatthew Knepley 4463bf14a46SMatthew Knepley /*----------------*/ 4473bf14a46SMatthew Knepley if (lu->matstruc == DIFFERENT_NONZERO_PATTERN) { 4483bf14a46SMatthew Knepley if (!(isSeqAIJ || isSeqSBAIJ)) { 4493bf14a46SMatthew Knepley /* PaStiX only supports centralized rhs. Create scatter scat_rhs for repeated use in MatSolve() */ 4503bf14a46SMatthew Knepley ierr = VecCreateSeq(PETSC_COMM_SELF,A->cmap->N,&lu->b_seq);CHKERRQ(ierr); 4513bf14a46SMatthew Knepley ierr = ISCreateStride(PETSC_COMM_SELF,A->cmap->N,0,1,&is_iden);CHKERRQ(ierr); 452ce94432eSBarry Smith ierr = VecCreate(PetscObjectComm((PetscObject)A),&b);CHKERRQ(ierr); 4533bf14a46SMatthew Knepley ierr = VecSetSizes(b,A->rmap->n,PETSC_DECIDE);CHKERRQ(ierr); 4543bf14a46SMatthew Knepley ierr = VecSetFromOptions(b);CHKERRQ(ierr); 4553bf14a46SMatthew Knepley 4563bf14a46SMatthew Knepley ierr = VecScatterCreate(b,is_iden,lu->b_seq,is_iden,&lu->scat_rhs);CHKERRQ(ierr); 4573bf14a46SMatthew Knepley ierr = VecScatterCreate(lu->b_seq,is_iden,b,is_iden,&lu->scat_sol);CHKERRQ(ierr); 4586bf464f9SBarry Smith ierr = ISDestroy(&is_iden);CHKERRQ(ierr); 4596bf464f9SBarry Smith ierr = VecDestroy(&b);CHKERRQ(ierr); 4603bf14a46SMatthew Knepley } 4613bf14a46SMatthew Knepley lu->iparm[IPARM_START_TASK] = API_TASK_ORDERING; 4623bf14a46SMatthew Knepley lu->iparm[IPARM_END_TASK] = API_TASK_NUMFACT; 4633bf14a46SMatthew Knepley 464d41469e0Sxavier lacoste PASTIX_CALL(&(lu->pastix_data), 465d41469e0Sxavier lacoste lu->pastix_comm, 466d41469e0Sxavier lacoste lu->n, 467d41469e0Sxavier lacoste lu->colptr, 468d41469e0Sxavier lacoste lu->row, 4695ec454cfSSatish Balay (PastixScalar*)lu->val, 470d41469e0Sxavier lacoste lu->perm, 471d41469e0Sxavier lacoste lu->invp, 4725ec454cfSSatish Balay (PastixScalar*)lu->rhs, 473d41469e0Sxavier lacoste lu->rhsnbr, 474d41469e0Sxavier lacoste lu->iparm, 475d41469e0Sxavier lacoste lu->dparm); 47665e19b50SBarry Smith if (lu->iparm[IPARM_ERROR_NUMBER] < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_LIB,"Error reported by PaStiX in analysis phase: iparm(IPARM_ERROR_NUMBER)=%d\n",lu->iparm[IPARM_ERROR_NUMBER]); 47741c8de11SBarry Smith } else { 4783bf14a46SMatthew Knepley lu->iparm[IPARM_START_TASK] = API_TASK_NUMFACT; 4793bf14a46SMatthew Knepley lu->iparm[IPARM_END_TASK] = API_TASK_NUMFACT; 480d41469e0Sxavier lacoste PASTIX_CALL(&(lu->pastix_data), 481d41469e0Sxavier lacoste lu->pastix_comm, 482d41469e0Sxavier lacoste lu->n, 483d41469e0Sxavier lacoste lu->colptr, 484d41469e0Sxavier lacoste lu->row, 4855ec454cfSSatish Balay (PastixScalar*)lu->val, 486d41469e0Sxavier lacoste lu->perm, 487d41469e0Sxavier lacoste lu->invp, 4885ec454cfSSatish Balay (PastixScalar*)lu->rhs, 489d41469e0Sxavier lacoste lu->rhsnbr, 490d41469e0Sxavier lacoste lu->iparm, 491d41469e0Sxavier lacoste lu->dparm); 4923bf14a46SMatthew Knepley 49365e19b50SBarry Smith if (lu->iparm[IPARM_ERROR_NUMBER] < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_LIB,"Error reported by PaStiX in analysis phase: iparm(IPARM_ERROR_NUMBER)=%d\n",lu->iparm[IPARM_ERROR_NUMBER]); 4943bf14a46SMatthew Knepley } 4953bf14a46SMatthew Knepley 4963bf14a46SMatthew Knepley if (lu->commSize > 1) { 497d5f3da31SBarry Smith if ((F)->factortype == MAT_FACTOR_LU) { 4983bf14a46SMatthew Knepley F_diag = ((Mat_MPIAIJ*)(F)->data)->A; 4993bf14a46SMatthew Knepley } else { 5003bf14a46SMatthew Knepley F_diag = ((Mat_MPISBAIJ*)(F)->data)->A; 5013bf14a46SMatthew Knepley } 5023bf14a46SMatthew Knepley F_diag->assembled = PETSC_TRUE; 5033bf14a46SMatthew Knepley } 5043bf14a46SMatthew Knepley (F)->assembled = PETSC_TRUE; 5053bf14a46SMatthew Knepley lu->matstruc = SAME_NONZERO_PATTERN; 5063bf14a46SMatthew Knepley lu->CleanUpPastix = PETSC_TRUE; 5073bf14a46SMatthew Knepley PetscFunctionReturn(0); 5083bf14a46SMatthew Knepley } 5093bf14a46SMatthew Knepley 5103bf14a46SMatthew Knepley /* Note the Petsc r and c permutations are ignored */ 5113bf14a46SMatthew Knepley #undef __FUNCT__ 5123bf14a46SMatthew Knepley #define __FUNCT__ "MatLUFactorSymbolic_AIJPASTIX" 5133bf14a46SMatthew Knepley PetscErrorCode MatLUFactorSymbolic_AIJPASTIX(Mat F,Mat A,IS r,IS c,const MatFactorInfo *info) 5143bf14a46SMatthew Knepley { 5153bf14a46SMatthew Knepley Mat_Pastix *lu = (Mat_Pastix*)F->spptr; 5163bf14a46SMatthew Knepley 5173bf14a46SMatthew Knepley PetscFunctionBegin; 5183bf14a46SMatthew Knepley lu->iparm[IPARM_FACTORIZATION] = API_FACT_LU; 5193bf14a46SMatthew Knepley lu->iparm[IPARM_SYM] = API_SYM_YES; 5203bf14a46SMatthew Knepley lu->matstruc = DIFFERENT_NONZERO_PATTERN; 5213bf14a46SMatthew Knepley F->ops->lufactornumeric = MatFactorNumeric_PaStiX; 5223bf14a46SMatthew Knepley PetscFunctionReturn(0); 5233bf14a46SMatthew Knepley } 5243bf14a46SMatthew Knepley 5253bf14a46SMatthew Knepley 5263bf14a46SMatthew Knepley /* Note the Petsc r permutation is ignored */ 5273bf14a46SMatthew Knepley #undef __FUNCT__ 5283bf14a46SMatthew Knepley #define __FUNCT__ "MatCholeskyFactorSymbolic_SBAIJPASTIX" 5293bf14a46SMatthew Knepley PetscErrorCode MatCholeskyFactorSymbolic_SBAIJPASTIX(Mat F,Mat A,IS r,const MatFactorInfo *info) 5303bf14a46SMatthew Knepley { 5313bf14a46SMatthew Knepley Mat_Pastix *lu = (Mat_Pastix*)(F)->spptr; 5323bf14a46SMatthew Knepley 5333bf14a46SMatthew Knepley PetscFunctionBegin; 5343bf14a46SMatthew Knepley lu->iparm[IPARM_FACTORIZATION] = API_FACT_LLT; 5353bf14a46SMatthew Knepley lu->iparm[IPARM_SYM] = API_SYM_NO; 5363bf14a46SMatthew Knepley lu->matstruc = DIFFERENT_NONZERO_PATTERN; 5373bf14a46SMatthew Knepley (F)->ops->choleskyfactornumeric = MatFactorNumeric_PaStiX; 5383bf14a46SMatthew Knepley PetscFunctionReturn(0); 5393bf14a46SMatthew Knepley } 5403bf14a46SMatthew Knepley 5413bf14a46SMatthew Knepley #undef __FUNCT__ 5423bf14a46SMatthew Knepley #define __FUNCT__ "MatView_PaStiX" 5433bf14a46SMatthew Knepley PetscErrorCode MatView_PaStiX(Mat A,PetscViewer viewer) 5443bf14a46SMatthew Knepley { 5453bf14a46SMatthew Knepley PetscErrorCode ierr; 546ace3abfcSBarry Smith PetscBool iascii; 5473bf14a46SMatthew Knepley PetscViewerFormat format; 5483bf14a46SMatthew Knepley 5493bf14a46SMatthew Knepley PetscFunctionBegin; 550251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr); 5513bf14a46SMatthew Knepley if (iascii) { 5523bf14a46SMatthew Knepley ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr); 5533bf14a46SMatthew Knepley if (format == PETSC_VIEWER_ASCII_INFO) { 554b5e56a35SBarry Smith Mat_Pastix *lu=(Mat_Pastix*)A->spptr; 555b5e56a35SBarry Smith 556b5e56a35SBarry Smith ierr = PetscViewerASCIIPrintf(viewer,"PaStiX run parameters:\n");CHKERRQ(ierr); 557b5e56a35SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Matrix type : %s \n",((lu->iparm[IPARM_SYM] == API_SYM_YES) ? "Symmetric" : "Unsymmetric"));CHKERRQ(ierr); 558b5e56a35SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Level of printing (0,1,2): %d \n",lu->iparm[IPARM_VERBOSE]);CHKERRQ(ierr); 559b5e56a35SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Number of refinements iterations : %d \n",lu->iparm[IPARM_NBITER]);CHKERRQ(ierr); 560b5e56a35SBarry Smith ierr = PetscPrintf(PETSC_COMM_SELF," Error : %g \n",lu->dparm[DPARM_RELATIVE_ERROR]);CHKERRQ(ierr); 5613bf14a46SMatthew Knepley } 5623bf14a46SMatthew Knepley } 5633bf14a46SMatthew Knepley PetscFunctionReturn(0); 5643bf14a46SMatthew Knepley } 5653bf14a46SMatthew Knepley 5663bf14a46SMatthew Knepley 5673bf14a46SMatthew Knepley /*MC 5682692d6eeSBarry Smith MATSOLVERPASTIX - A solver package providing direct solvers (LU) for distributed 5693bf14a46SMatthew Knepley and sequential matrices via the external package PaStiX. 5703bf14a46SMatthew Knepley 571e2e64c6bSBarry Smith Use ./configure --download-pastix to have PETSc installed with PaStiX 5723bf14a46SMatthew Knepley 5733bf14a46SMatthew Knepley Options Database Keys: 574b5e56a35SBarry Smith + -mat_pastix_verbose <0,1,2> - print level 575b5e56a35SBarry Smith - -mat_pastix_threadnbr <integer> - Set the thread number by MPI task. 5763bf14a46SMatthew Knepley 5773bf14a46SMatthew Knepley Level: beginner 5783bf14a46SMatthew Knepley 57941c8de11SBarry Smith .seealso: PCFactorSetMatSolverPackage(), MatSolverPackage 58041c8de11SBarry Smith 5813bf14a46SMatthew Knepley M*/ 5823bf14a46SMatthew Knepley 5833bf14a46SMatthew Knepley 5843bf14a46SMatthew Knepley #undef __FUNCT__ 5853bf14a46SMatthew Knepley #define __FUNCT__ "MatGetInfo_PaStiX" 5863bf14a46SMatthew Knepley PetscErrorCode MatGetInfo_PaStiX(Mat A,MatInfoType flag,MatInfo *info) 5873bf14a46SMatthew Knepley { 5883bf14a46SMatthew Knepley Mat_Pastix *lu =(Mat_Pastix*)A->spptr; 5893bf14a46SMatthew Knepley 5903bf14a46SMatthew Knepley PetscFunctionBegin; 5913bf14a46SMatthew Knepley info->block_size = 1.0; 5923bf14a46SMatthew Knepley info->nz_allocated = lu->iparm[IPARM_NNZEROS]; 5933bf14a46SMatthew Knepley info->nz_used = lu->iparm[IPARM_NNZEROS]; 5943bf14a46SMatthew Knepley info->nz_unneeded = 0.0; 5953bf14a46SMatthew Knepley info->assemblies = 0.0; 5963bf14a46SMatthew Knepley info->mallocs = 0.0; 5973bf14a46SMatthew Knepley info->memory = 0.0; 5983bf14a46SMatthew Knepley info->fill_ratio_given = 0; 5993bf14a46SMatthew Knepley info->fill_ratio_needed = 0; 6003bf14a46SMatthew Knepley info->factor_mallocs = 0; 6013bf14a46SMatthew Knepley PetscFunctionReturn(0); 6023bf14a46SMatthew Knepley } 6033bf14a46SMatthew Knepley 6043bf14a46SMatthew Knepley EXTERN_C_BEGIN 6053bf14a46SMatthew Knepley #undef __FUNCT__ 6063bf14a46SMatthew Knepley #define __FUNCT__ "MatFactorGetSolverPackage_pastix" 6073bf14a46SMatthew Knepley PetscErrorCode MatFactorGetSolverPackage_pastix(Mat A,const MatSolverPackage *type) 6083bf14a46SMatthew Knepley { 6093bf14a46SMatthew Knepley PetscFunctionBegin; 6102692d6eeSBarry Smith *type = MATSOLVERPASTIX; 6113bf14a46SMatthew Knepley PetscFunctionReturn(0); 6123bf14a46SMatthew Knepley } 6133bf14a46SMatthew Knepley EXTERN_C_END 6143bf14a46SMatthew Knepley 6153bf14a46SMatthew Knepley EXTERN_C_BEGIN 6163bf14a46SMatthew Knepley /* 6173bf14a46SMatthew Knepley The seq and mpi versions of this function are the same 6183bf14a46SMatthew Knepley */ 6193bf14a46SMatthew Knepley #undef __FUNCT__ 6203bf14a46SMatthew Knepley #define __FUNCT__ "MatGetFactor_seqaij_pastix" 6213bf14a46SMatthew Knepley PetscErrorCode MatGetFactor_seqaij_pastix(Mat A,MatFactorType ftype,Mat *F) 6223bf14a46SMatthew Knepley { 6233bf14a46SMatthew Knepley Mat B; 6243bf14a46SMatthew Knepley PetscErrorCode ierr; 6253bf14a46SMatthew Knepley Mat_Pastix *pastix; 6263bf14a46SMatthew Knepley 6273bf14a46SMatthew Knepley PetscFunctionBegin; 628e7e72b3dSBarry Smith if (ftype != MAT_FACTOR_LU) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Cannot use PETSc AIJ matrices with PaStiX Cholesky, use SBAIJ matrix"); 6293bf14a46SMatthew Knepley /* Create the factorization matrix */ 630ce94432eSBarry Smith ierr = MatCreate(PetscObjectComm((PetscObject)A),&B);CHKERRQ(ierr); 6313bf14a46SMatthew Knepley ierr = MatSetSizes(B,A->rmap->n,A->cmap->n,A->rmap->N,A->cmap->N);CHKERRQ(ierr); 6323bf14a46SMatthew Knepley ierr = MatSetType(B,((PetscObject)A)->type_name);CHKERRQ(ierr); 6330298fd71SBarry Smith ierr = MatSeqAIJSetPreallocation(B,0,NULL);CHKERRQ(ierr); 6343bf14a46SMatthew Knepley 6353bf14a46SMatthew Knepley B->ops->lufactorsymbolic = MatLUFactorSymbolic_AIJPASTIX; 6363bf14a46SMatthew Knepley B->ops->view = MatView_PaStiX; 6373bf14a46SMatthew Knepley B->ops->getinfo = MatGetInfo_PaStiX; 6382205254eSKarl Rupp 639*00de8ff0SBarry Smith ierr = PetscObjectComposeFunction((PetscObject)B,"MatFactorGetSolverPackage_C","MatFactorGetSolverPackage_pastix", MatFactorGetSolverPackage_pastix);CHKERRQ(ierr); 6402205254eSKarl Rupp 641d5f3da31SBarry Smith B->factortype = MAT_FACTOR_LU; 6423bf14a46SMatthew Knepley 6433bf14a46SMatthew Knepley ierr = PetscNewLog(B,Mat_Pastix,&pastix);CHKERRQ(ierr); 6442205254eSKarl Rupp 6453bf14a46SMatthew Knepley pastix->CleanUpPastix = PETSC_FALSE; 6463bf14a46SMatthew Knepley pastix->isAIJ = PETSC_TRUE; 6470298fd71SBarry Smith pastix->scat_rhs = NULL; 6480298fd71SBarry Smith pastix->scat_sol = NULL; 649bf0cc555SLisandro Dalcin pastix->Destroy = B->ops->destroy; 6503bf14a46SMatthew Knepley B->ops->destroy = MatDestroy_Pastix; 6513bf14a46SMatthew Knepley B->spptr = (void*)pastix; 6523bf14a46SMatthew Knepley 6533bf14a46SMatthew Knepley *F = B; 6543bf14a46SMatthew Knepley PetscFunctionReturn(0); 6553bf14a46SMatthew Knepley } 6563bf14a46SMatthew Knepley EXTERN_C_END 6573bf14a46SMatthew Knepley 658b5e56a35SBarry Smith 6593bf14a46SMatthew Knepley EXTERN_C_BEGIN 6603bf14a46SMatthew Knepley #undef __FUNCT__ 6613bf14a46SMatthew Knepley #define __FUNCT__ "MatGetFactor_mpiaij_pastix" 6623bf14a46SMatthew Knepley PetscErrorCode MatGetFactor_mpiaij_pastix(Mat A,MatFactorType ftype,Mat *F) 6633bf14a46SMatthew Knepley { 6643bf14a46SMatthew Knepley Mat B; 6653bf14a46SMatthew Knepley PetscErrorCode ierr; 6663bf14a46SMatthew Knepley Mat_Pastix *pastix; 6673bf14a46SMatthew Knepley 6683bf14a46SMatthew Knepley PetscFunctionBegin; 669e32f2f54SBarry Smith if (ftype != MAT_FACTOR_LU) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Cannot use PETSc AIJ matrices with PaStiX Cholesky, use SBAIJ matrix"); 6703bf14a46SMatthew Knepley /* Create the factorization matrix */ 671ce94432eSBarry Smith ierr = MatCreate(PetscObjectComm((PetscObject)A),&B);CHKERRQ(ierr); 6723bf14a46SMatthew Knepley ierr = MatSetSizes(B,A->rmap->n,A->cmap->n,A->rmap->N,A->cmap->N);CHKERRQ(ierr); 6733bf14a46SMatthew Knepley ierr = MatSetType(B,((PetscObject)A)->type_name);CHKERRQ(ierr); 6740298fd71SBarry Smith ierr = MatSeqAIJSetPreallocation(B,0,NULL);CHKERRQ(ierr); 6750298fd71SBarry Smith ierr = MatMPIAIJSetPreallocation(B,0,NULL,0,NULL);CHKERRQ(ierr); 6763bf14a46SMatthew Knepley 6773bf14a46SMatthew Knepley B->ops->lufactorsymbolic = MatLUFactorSymbolic_AIJPASTIX; 6783bf14a46SMatthew Knepley B->ops->view = MatView_PaStiX; 6792205254eSKarl Rupp 680*00de8ff0SBarry Smith ierr = PetscObjectComposeFunction((PetscObject)B,"MatFactorGetSolverPackage_C","MatFactorGetSolverPackage_pastix",MatFactorGetSolverPackage_pastix);CHKERRQ(ierr); 6812205254eSKarl Rupp 682d5f3da31SBarry Smith B->factortype = MAT_FACTOR_LU; 6833bf14a46SMatthew Knepley 6843bf14a46SMatthew Knepley ierr = PetscNewLog(B,Mat_Pastix,&pastix);CHKERRQ(ierr); 6852205254eSKarl Rupp 6863bf14a46SMatthew Knepley pastix->CleanUpPastix = PETSC_FALSE; 6873bf14a46SMatthew Knepley pastix->isAIJ = PETSC_TRUE; 6880298fd71SBarry Smith pastix->scat_rhs = NULL; 6890298fd71SBarry Smith pastix->scat_sol = NULL; 690bf0cc555SLisandro Dalcin pastix->Destroy = B->ops->destroy; 6913bf14a46SMatthew Knepley B->ops->destroy = MatDestroy_Pastix; 6923bf14a46SMatthew Knepley B->spptr = (void*)pastix; 6933bf14a46SMatthew Knepley 6943bf14a46SMatthew Knepley *F = B; 6953bf14a46SMatthew Knepley PetscFunctionReturn(0); 6963bf14a46SMatthew Knepley } 6973bf14a46SMatthew Knepley EXTERN_C_END 6983bf14a46SMatthew Knepley 6993bf14a46SMatthew Knepley EXTERN_C_BEGIN 7003bf14a46SMatthew Knepley #undef __FUNCT__ 7013bf14a46SMatthew Knepley #define __FUNCT__ "MatGetFactor_seqsbaij_pastix" 7023bf14a46SMatthew Knepley PetscErrorCode MatGetFactor_seqsbaij_pastix(Mat A,MatFactorType ftype,Mat *F) 7033bf14a46SMatthew Knepley { 7043bf14a46SMatthew Knepley Mat B; 7053bf14a46SMatthew Knepley PetscErrorCode ierr; 7063bf14a46SMatthew Knepley Mat_Pastix *pastix; 7073bf14a46SMatthew Knepley 7083bf14a46SMatthew Knepley PetscFunctionBegin; 709e7e72b3dSBarry Smith if (ftype != MAT_FACTOR_CHOLESKY) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Cannot use PETSc SBAIJ matrices with PaStiX LU, use AIJ matrix"); 7103bf14a46SMatthew Knepley /* Create the factorization matrix */ 711ce94432eSBarry Smith ierr = MatCreate(PetscObjectComm((PetscObject)A),&B);CHKERRQ(ierr); 7123bf14a46SMatthew Knepley ierr = MatSetSizes(B,A->rmap->n,A->cmap->n,A->rmap->N,A->cmap->N);CHKERRQ(ierr); 7133bf14a46SMatthew Knepley ierr = MatSetType(B,((PetscObject)A)->type_name);CHKERRQ(ierr); 7140298fd71SBarry Smith ierr = MatSeqSBAIJSetPreallocation(B,1,0,NULL);CHKERRQ(ierr); 7150298fd71SBarry Smith ierr = MatMPISBAIJSetPreallocation(B,1,0,NULL,0,NULL);CHKERRQ(ierr); 7163bf14a46SMatthew Knepley 7173bf14a46SMatthew Knepley B->ops->choleskyfactorsymbolic = MatCholeskyFactorSymbolic_SBAIJPASTIX; 7183bf14a46SMatthew Knepley B->ops->view = MatView_PaStiX; 7192205254eSKarl Rupp 720*00de8ff0SBarry Smith ierr = PetscObjectComposeFunction((PetscObject)B,"MatFactorGetSolverPackage_C","MatFactorGetSolverPackage_pastix",MatFactorGetSolverPackage_pastix);CHKERRQ(ierr); 7212205254eSKarl Rupp 722d5f3da31SBarry Smith B->factortype = MAT_FACTOR_CHOLESKY; 7233bf14a46SMatthew Knepley 7243bf14a46SMatthew Knepley ierr = PetscNewLog(B,Mat_Pastix,&pastix);CHKERRQ(ierr); 7252205254eSKarl Rupp 7263bf14a46SMatthew Knepley pastix->CleanUpPastix = PETSC_FALSE; 7273bf14a46SMatthew Knepley pastix->isAIJ = PETSC_TRUE; 7280298fd71SBarry Smith pastix->scat_rhs = NULL; 7290298fd71SBarry Smith pastix->scat_sol = NULL; 730bf0cc555SLisandro Dalcin pastix->Destroy = B->ops->destroy; 7313bf14a46SMatthew Knepley B->ops->destroy = MatDestroy_Pastix; 7323bf14a46SMatthew Knepley B->spptr = (void*)pastix; 7333bf14a46SMatthew Knepley 7343bf14a46SMatthew Knepley *F = B; 7353bf14a46SMatthew Knepley PetscFunctionReturn(0); 7363bf14a46SMatthew Knepley } 7373bf14a46SMatthew Knepley EXTERN_C_END 7383bf14a46SMatthew Knepley 7393bf14a46SMatthew Knepley EXTERN_C_BEGIN 7403bf14a46SMatthew Knepley #undef __FUNCT__ 7413bf14a46SMatthew Knepley #define __FUNCT__ "MatGetFactor_mpisbaij_pastix" 7423bf14a46SMatthew Knepley PetscErrorCode MatGetFactor_mpisbaij_pastix(Mat A,MatFactorType ftype,Mat *F) 7433bf14a46SMatthew Knepley { 7443bf14a46SMatthew Knepley Mat B; 7453bf14a46SMatthew Knepley PetscErrorCode ierr; 7463bf14a46SMatthew Knepley Mat_Pastix *pastix; 7473bf14a46SMatthew Knepley 7483bf14a46SMatthew Knepley PetscFunctionBegin; 749e32f2f54SBarry Smith if (ftype != MAT_FACTOR_CHOLESKY) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Cannot use PETSc SBAIJ matrices with PaStiX LU, use AIJ matrix"); 75041c8de11SBarry Smith 7513bf14a46SMatthew Knepley /* Create the factorization matrix */ 752ce94432eSBarry Smith ierr = MatCreate(PetscObjectComm((PetscObject)A),&B);CHKERRQ(ierr); 7533bf14a46SMatthew Knepley ierr = MatSetSizes(B,A->rmap->n,A->cmap->n,A->rmap->N,A->cmap->N);CHKERRQ(ierr); 7543bf14a46SMatthew Knepley ierr = MatSetType(B,((PetscObject)A)->type_name);CHKERRQ(ierr); 7550298fd71SBarry Smith ierr = MatSeqSBAIJSetPreallocation(B,1,0,NULL);CHKERRQ(ierr); 7560298fd71SBarry Smith ierr = MatMPISBAIJSetPreallocation(B,1,0,NULL,0,NULL);CHKERRQ(ierr); 7573bf14a46SMatthew Knepley 7583bf14a46SMatthew Knepley B->ops->choleskyfactorsymbolic = MatCholeskyFactorSymbolic_SBAIJPASTIX; 7593bf14a46SMatthew Knepley B->ops->view = MatView_PaStiX; 7602205254eSKarl Rupp 761*00de8ff0SBarry Smith ierr = PetscObjectComposeFunction((PetscObject)B,"MatFactorGetSolverPackage_C","MatFactorGetSolverPackage_pastix",MatFactorGetSolverPackage_pastix);CHKERRQ(ierr); 7622205254eSKarl Rupp 763d5f3da31SBarry Smith B->factortype = MAT_FACTOR_CHOLESKY; 7643bf14a46SMatthew Knepley 7653bf14a46SMatthew Knepley ierr = PetscNewLog(B,Mat_Pastix,&pastix);CHKERRQ(ierr); 7662205254eSKarl Rupp 7673bf14a46SMatthew Knepley pastix->CleanUpPastix = PETSC_FALSE; 7683bf14a46SMatthew Knepley pastix->isAIJ = PETSC_TRUE; 7690298fd71SBarry Smith pastix->scat_rhs = NULL; 7700298fd71SBarry Smith pastix->scat_sol = NULL; 771bf0cc555SLisandro Dalcin pastix->Destroy = B->ops->destroy; 7723bf14a46SMatthew Knepley B->ops->destroy = MatDestroy_Pastix; 7733bf14a46SMatthew Knepley B->spptr = (void*)pastix; 7743bf14a46SMatthew Knepley 7753bf14a46SMatthew Knepley *F = B; 7763bf14a46SMatthew Knepley PetscFunctionReturn(0); 7773bf14a46SMatthew Knepley } 7783bf14a46SMatthew Knepley EXTERN_C_END 779