12eac72dbSBarry Smith /* 22eac72dbSBarry Smith Include file for the matrix component of PETSc 32eac72dbSBarry Smith */ 40a835dfdSSatish Balay #ifndef __PETSCMAT_H 50a835dfdSSatish Balay #define __PETSCMAT_H 62c8e378dSBarry Smith #include <petscvec.h> 72eac72dbSBarry Smith 8d9274352SBarry Smith /*S 98f6c3df8SBarry Smith Mat - Abstract PETSc matrix object used to manage all linear operators in PETSc, even those without 108f6c3df8SBarry Smith an explicit sparse representation (such as matrix-free operators) 112eac72dbSBarry Smith 12d91e6319SBarry Smith Level: beginner 13d91e6319SBarry Smith 14d9274352SBarry Smith Concepts: matrix; linear operator 15d9274352SBarry Smith 168f6c3df8SBarry Smith .seealso: MatCreate(), MatType, MatSetType(), MatDestroy() 17d9274352SBarry Smith S*/ 18d9274352SBarry Smith typedef struct _p_Mat* Mat; 19d9274352SBarry Smith 2076bdecfbSBarry Smith /*J 218f6c3df8SBarry Smith MatType - String with the name of a PETSc matrix type 22d9274352SBarry Smith 23d9274352SBarry Smith Level: beginner 24d9274352SBarry Smith 258f6c3df8SBarry Smith .seealso: MatSetType(), Mat, MatSolverPackage, MatRegister() 2676bdecfbSBarry Smith J*/ 2719fd82e9SBarry Smith typedef const char* MatType; 28273d9f13SBarry Smith #define MATSAME "same" 295a11e1b2SBarry Smith #define MATMAIJ "maij" 30273d9f13SBarry Smith #define MATSEQMAIJ "seqmaij" 31273d9f13SBarry Smith #define MATMPIMAIJ "mpimaij" 32273d9f13SBarry Smith #define MATIS "is" 335a11e1b2SBarry Smith #define MATAIJ "aij" 34273d9f13SBarry Smith #define MATSEQAIJ "seqaij" 35273d9f13SBarry Smith #define MATMPIAIJ "mpiaij" 365a11e1b2SBarry Smith #define MATAIJCRL "aijcrl" 375a11e1b2SBarry Smith #define MATSEQAIJCRL "seqaijcrl" 385a11e1b2SBarry Smith #define MATMPIAIJCRL "mpiaijcrl" 398154be41SBarry Smith #define MATAIJCUSP "aijcusp" 408154be41SBarry Smith #define MATSEQAIJCUSP "seqaijcusp" 418154be41SBarry Smith #define MATMPIAIJCUSP "mpiaijcusp" 429ae82921SPaul Mullowney #define MATAIJCUSPARSE "aijcusparse" 439ae82921SPaul Mullowney #define MATSEQAIJCUSPARSE "seqaijcusparse" 449ae82921SPaul Mullowney #define MATMPIAIJCUSPARSE "mpiaijcusparse" 45d67ff14aSKarl Rupp #define MATAIJVIENNACL "aijviennacl" 46d67ff14aSKarl Rupp #define MATSEQAIJVIENNACL "seqaijviennacl" 47d67ff14aSKarl Rupp #define MATMPIAIJVIENNACL "mpiaijviennacl" 485a11e1b2SBarry Smith #define MATAIJPERM "aijperm" 495a11e1b2SBarry Smith #define MATSEQAIJPERM "seqaijperm" 505a11e1b2SBarry Smith #define MATMPIAIJPERM "mpiaijperm" 51273d9f13SBarry Smith #define MATSHELL "shell" 525a11e1b2SBarry Smith #define MATDENSE "dense" 53209238afSKris Buschelman #define MATSEQDENSE "seqdense" 54273d9f13SBarry Smith #define MATMPIDENSE "mpidense" 55db31f6deSJed Brown #define MATELEMENTAL "elemental" 565a11e1b2SBarry Smith #define MATBAIJ "baij" 57273d9f13SBarry Smith #define MATSEQBAIJ "seqbaij" 58273d9f13SBarry Smith #define MATMPIBAIJ "mpibaij" 59273d9f13SBarry Smith #define MATMPIADJ "mpiadj" 605a11e1b2SBarry Smith #define MATSBAIJ "sbaij" 61273d9f13SBarry Smith #define MATSEQSBAIJ "seqsbaij" 62273d9f13SBarry Smith #define MATMPISBAIJ "mpisbaij" 63cebc7f6cSBarry Smith #define MATDAAD "daad" 64cebc7f6cSBarry Smith #define MATMFFD "mffd" 65c8a8475eSBarry Smith #define MATNORMAL "normal" 66c5e4d11fSDmitry Karpeev #define MATNORMALHERMITIAN "normalh" 67ab92ecdeSBarry Smith #define MATLRC "lrc" 682a6744ebSBarry Smith #define MATSCATTER "scatter" 69421e10b8SBarry Smith #define MATBLOCKMAT "blockmat" 70793850ffSBarry Smith #define MATCOMPOSITE "composite" 711f8c7532SHong Zhang #define MATFFT "fft" 721f8c7532SHong Zhang #define MATFFTW "fftw" 73e133240eSMatthew G Knepley #define MATSEQCUFFT "seqcufft" 74557cca28SSatish Balay #define MATTRANSPOSEMAT "transpose" 7572ca8751SBarry Smith #define MATSCHURCOMPLEMENT "schurcomplement" 761d6018f0SLisandro Dalcin #define MATPYTHON "python" 7763c07aadSStefano Zampini #define MATHYPRE "hypre" 78f91d8e95SBarry Smith #define MATHYPRESTRUCT "hyprestruct" 79a9e6138eSGlenn Hammond #define MATHYPRESSTRUCT "hypresstruct" 80ee1cef2cSJed Brown #define MATSUBMATRIX "submatrix" 812c0dbf93SJed Brown #define MATLOCALREF "localref" 82d8588912SDave May #define MATNEST "nest" 83c094ef40SMatthew G. Knepley #define MATPREALLOCATOR "preallocator" 84773941d6SBarry Smith 8576bdecfbSBarry Smith /*J 86c7393fdbSBarry Smith MatSolverPackage - String with the name of a PETSc matrix solver type. 879989ab13SBarry Smith 88c2b89b5dSBarry Smith For example: "petsc" indicates what PETSc provides, "superlu_dist" the parallel SuperLU_DIST package etc 899989ab13SBarry Smith 909989ab13SBarry Smith Level: beginner 919989ab13SBarry Smith 925c9eb25fSBarry Smith .seealso: MatGetFactor(), Mat, MatSetType(), MatType 9376bdecfbSBarry Smith J*/ 94c7393fdbSBarry Smith #define MatSolverPackage char* 952692d6eeSBarry Smith #define MATSOLVERSUPERLU "superlu" 962692d6eeSBarry Smith #define MATSOLVERSUPERLU_DIST "superlu_dist" 9708f5efcfSPieter Ghysels #define MATSOLVERSTRUMPACK "strumpack" 982692d6eeSBarry Smith #define MATSOLVERUMFPACK "umfpack" 9920db9a53SJed Brown #define MATSOLVERCHOLMOD "cholmod" 100d89f5e7aSBarry Smith #define MATSOLVERKLU "klu" 101ecddaf3cSBarry Smith #define MATSOLVERCLIQUE "clique" 102d89f5e7aSBarry Smith #define MATSOLVERELEMENTAL "elemental" 1032692d6eeSBarry Smith #define MATSOLVERESSL "essl" 1042692d6eeSBarry Smith #define MATSOLVERLUSOL "lusol" 1052692d6eeSBarry Smith #define MATSOLVERMUMPS "mumps" 106d615f992SSatish Balay #define MATSOLVERMKL_PARDISO "mkl_pardiso" 107d305a81bSVasiliy Kozyrev #define MATSOLVERMKL_CPARDISO "mkl_cpardiso" 1082692d6eeSBarry Smith #define MATSOLVERPASTIX "pastix" 1092692d6eeSBarry Smith #define MATSOLVERMATLAB "matlab" 1102692d6eeSBarry Smith #define MATSOLVERPETSC "petsc" 1112692d6eeSBarry Smith #define MATSOLVERBAS "bas" 1129ae82921SPaul Mullowney #define MATSOLVERCUSPARSE "cusparse" 113c0cdd4a1SDahai Guo 114b24902e0SBarry Smith /*E 115b24902e0SBarry Smith MatFactorType - indicates what type of factorization is requested 116b24902e0SBarry Smith 117b24902e0SBarry Smith Level: beginner 118b24902e0SBarry Smith 119af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 120b24902e0SBarry Smith 121c7393fdbSBarry Smith .seealso: MatSolverPackage, MatGetFactor() 122b24902e0SBarry Smith E*/ 123599ef60dSHong Zhang typedef enum {MAT_FACTOR_NONE, MAT_FACTOR_LU, MAT_FACTOR_CHOLESKY, MAT_FACTOR_ILU, MAT_FACTOR_ICC,MAT_FACTOR_ILUDT} MatFactorType; 124014dd563SJed Brown PETSC_EXTERN const char *const MatFactorTypes[]; 125e92e720dSBarry Smith 126014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactor(Mat,const MatSolverPackage,MatFactorType,Mat*); 127014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactorAvailable(Mat,const MatSolverPackage,MatFactorType,PetscBool *); 128014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFactorGetSolverPackage(Mat,const MatSolverPackage*); 129014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactorType(Mat,MatFactorType*); 13018713533SBarry Smith PETSC_EXTERN PetscErrorCode MatSolverPackageRegister(const MatSolverPackage,const MatType,MatFactorType,PetscErrorCode(*)(Mat,MatFactorType,Mat*)); 13142c9c57cSBarry Smith PETSC_EXTERN PetscErrorCode MatSolverPackageGet(const MatSolverPackage,const MatType,MatFactorType,PetscBool*,PetscBool*,PetscErrorCode (**)(Mat,MatFactorType,Mat*)); 1329989ab13SBarry Smith 133c06d978dSMatthew Knepley /* Logging support */ 1340700a824SBarry Smith #define MAT_FILE_CLASSID 1211216 /* used to indicate matrices in binary files */ 135014dd563SJed Brown PETSC_EXTERN PetscClassId MAT_CLASSID; 136335efc43SPeter Brune PETSC_EXTERN PetscClassId MAT_COLORING_CLASSID; 137014dd563SJed Brown PETSC_EXTERN PetscClassId MAT_FDCOLORING_CLASSID; 138014dd563SJed Brown PETSC_EXTERN PetscClassId MAT_TRANSPOSECOLORING_CLASSID; 139014dd563SJed Brown PETSC_EXTERN PetscClassId MAT_PARTITIONING_CLASSID; 140014dd563SJed Brown PETSC_EXTERN PetscClassId MAT_COARSEN_CLASSID; 141014dd563SJed Brown PETSC_EXTERN PetscClassId MAT_NULLSPACE_CLASSID; 142014dd563SJed Brown PETSC_EXTERN PetscClassId MATMFFD_CLASSID; 143c06d978dSMatthew Knepley 144ceb03754SKris Buschelman /*E 145cf37664fSBarry Smith MatReuse - Indicates if matrices obtained from a previous call to MatGetSubMatrices(), MatGetSubMatrix(), MatConvert() or several other functions 146cf37664fSBarry Smith are to be reused to store the new matrix values. 147cf37664fSBarry Smith 148cf37664fSBarry Smith $ MAT_INITIAL_MATRIX - create a new matrix 149cf37664fSBarry Smith $ MAT_REUSE_MATRIX - reuse the matrix created with a previous call that used MAT_INITIAL_MATRIX 150cf37664fSBarry Smith $ MAT_INPLACE_MATRIX - replace the first input matrix with the new matrix (not applicable to all functions) 151cf37664fSBarry Smith $ MAT_IGNORE_MATRIX - do not create a new matrix or reuse a give matrix, just ignore that matrix argument (not applicable to all functions) 152ceb03754SKris Buschelman 153ceb03754SKris Buschelman Level: beginner 154ceb03754SKris Buschelman 155af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 156ceb03754SKris Buschelman 1570c451bc4SBarry Smith .seealso: MatGetSubMatrices(), MatGetSubMatrix(), MatDestroyMatrices(), MatConvert() 158ceb03754SKris Buschelman E*/ 159511c6705SHong Zhang typedef enum {MAT_INITIAL_MATRIX,MAT_REUSE_MATRIX,MAT_IGNORE_MATRIX,MAT_INPLACE_MATRIX} MatReuse; 160ceb03754SKris Buschelman 1615494a064SHong Zhang /*E 1625494a064SHong Zhang MatGetSubMatrixOption - Indicates if matrices obtained from a call to MatGetSubMatrices() 163829201f2SHong Zhang include the matrix values. Currently it is only used by MatGetSeqNonzerostructure(). 1645494a064SHong Zhang 1655494a064SHong Zhang Level: beginner 1665494a064SHong Zhang 167829201f2SHong Zhang .seealso: MatGetSeqNonzerostructure() 1685494a064SHong Zhang E*/ 1695494a064SHong Zhang typedef enum {MAT_DO_NOT_GET_VALUES,MAT_GET_VALUES} MatGetSubMatrixOption; 1705494a064SHong Zhang 171607a6623SBarry Smith PETSC_EXTERN PetscErrorCode MatInitializePackage(void); 172c06d978dSMatthew Knepley 173014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreate(MPI_Comm,Mat*); 174014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetSizes(Mat,PetscInt,PetscInt,PetscInt,PetscInt); 17519fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatSetType(Mat,MatType); 176014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetFromOptions(Mat); 177685405a1SBarry Smith PETSC_STATIC_INLINE PetscErrorCode MatViewFromOptions(Mat A,PetscObject obj,const char name[]) {return PetscObjectViewFromOptions((PetscObject)A,obj,name);} 178bdf89e91SBarry Smith PETSC_EXTERN PetscErrorCode MatRegister(const char[],PetscErrorCode(*)(Mat)); 179014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRegisterBaseName(const char[],const char[],const char[]); 180014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetOptionsPrefix(Mat,const char[]); 181014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatAppendOptionsPrefix(Mat,const char[]); 182014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetOptionsPrefix(Mat,const char*[]); 18384d44b13SHong Zhang PETSC_EXTERN PetscErrorCode MatSetErrorIfFailure(Mat,PetscBool); 184f69a0ea3SMatthew Knepley 185140e18c1SBarry Smith PETSC_EXTERN PetscFunctionList MatList; 186140e18c1SBarry Smith PETSC_EXTERN PetscFunctionList MatColoringList; 187140e18c1SBarry Smith PETSC_EXTERN PetscFunctionList MatPartitioningList; 18828988994SBarry Smith 1893b224e63SBarry Smith /*E 190aa6c7ce3SBarry Smith MatStructure - Indicates if two matrices have the same nonzero structure 1913b224e63SBarry Smith 1923b224e63SBarry Smith Level: beginner 1933b224e63SBarry Smith 194af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 1953b224e63SBarry Smith 196aa6c7ce3SBarry Smith .seealso: MatCopy(), MatAXPY() 1973b224e63SBarry Smith E*/ 198aa6c7ce3SBarry Smith typedef enum {DIFFERENT_NONZERO_PATTERN,SUBSET_NONZERO_PATTERN,SAME_NONZERO_PATTERN} MatStructure; 1993b224e63SBarry Smith 200014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqDense(MPI_Comm,PetscInt,PetscInt,PetscScalar[],Mat*); 201014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateDense(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscScalar[],Mat*); 202014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqAIJ(MPI_Comm,PetscInt,PetscInt,PetscInt,const PetscInt[],Mat*); 203014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateAIJ(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[],Mat*); 204014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIAIJWithArrays(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],const PetscInt[],const PetscScalar[],Mat *); 205014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIAIJWithSplitArrays(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt[],PetscInt[],PetscScalar[],PetscInt[],PetscInt[],PetscScalar[],Mat*); 2068d7a6e47SBarry Smith 207014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqBAIJ(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],Mat*); 208014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateBAIJ(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[],Mat*); 209014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIBAIJWithArrays(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],const PetscInt[],const PetscScalar[],Mat*); 210d21a29f3SJed Brown 211014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIAdj(MPI_Comm,PetscInt,PetscInt,PetscInt[],PetscInt[],PetscInt[],Mat*); 212014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqSBAIJ(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],Mat*); 213d21a29f3SJed Brown 214014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSBAIJ(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[],Mat*); 215014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPISBAIJWithArrays(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],const PetscInt[],const PetscScalar[],Mat *); 21638f409ebSLisandro Dalcin PETSC_EXTERN PetscErrorCode MatSeqSBAIJSetPreallocationCSR(Mat,PetscInt,const PetscInt[],const PetscInt[],const PetscScalar[]); 217014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPISBAIJSetPreallocationCSR(Mat,PetscInt,const PetscInt[],const PetscInt[],const PetscScalar[]); 2184cce697cSJed Brown PETSC_EXTERN PetscErrorCode MatXAIJSetPreallocation(Mat,PetscInt,const PetscInt[],const PetscInt[],const PetscInt[],const PetscInt[]); 219dfb205c3SBarry Smith 220014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateShell(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,void *,Mat*); 221014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateNormal(Mat,Mat*); 222c5e4d11fSDmitry Karpeev PETSC_EXTERN PetscErrorCode MatCreateNormalHermitian(Mat,Mat*); 223986c4d72SJose E. Roman PETSC_EXTERN PetscErrorCode MatCreateLRC(Mat,Mat,Vec,Mat,Mat*); 224267ca84cSJose E. Roman PETSC_EXTERN PetscErrorCode MatLRCGetMats(Mat,Mat*,Mat*,Vec*,Mat*); 225c5e4d11fSDmitry Karpeev PETSC_EXTERN PetscErrorCode MatCreateIS(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,ISLocalToGlobalMapping,ISLocalToGlobalMapping,Mat*); 226014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqAIJCRL(MPI_Comm,PetscInt,PetscInt,PetscInt,const PetscInt[],Mat*); 227014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIAIJCRL(MPI_Comm,PetscInt,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[],Mat*); 228c0cdd4a1SDahai Guo 229014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateScatter(MPI_Comm,VecScatter,Mat*); 230014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatScatterSetVecScatter(Mat,VecScatter); 231014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatScatterGetVecScatter(Mat,VecScatter*); 232014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateBlockMat(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt*,Mat*); 233014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCompositeAddMat(Mat,Mat); 234014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCompositeMerge(Mat); 235014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateComposite(MPI_Comm,PetscInt,const Mat*,Mat*); 2366d7c1e57SBarry Smith typedef enum {MAT_COMPOSITE_ADDITIVE,MAT_COMPOSITE_MULTIPLICATIVE} MatCompositeType; 237014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCompositeSetType(Mat,MatCompositeType); 2386d7c1e57SBarry Smith 23919fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatCreateFFT(MPI_Comm,PetscInt,const PetscInt[],MatType,Mat*); 240014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqCUFFT(MPI_Comm,PetscInt,const PetscInt[],Mat*); 241dedccee8SHong Zhang 242014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateTranspose(Mat,Mat*); 2438060fb66Sstefano_zampini PETSC_EXTERN PetscErrorCode MatTransposeGetMat(Mat,Mat*); 244d0de2241SAndrew Spott PETSC_EXTERN PetscErrorCode MatCreateHermitianTranspose(Mat,Mat*); 245014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSubMatrix(Mat,IS,IS,Mat*); 246014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSubMatrixUpdate(Mat,Mat,IS,IS); 247014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateLocalRef(Mat,IS,IS,Mat*); 2481472f72bSBarry Smith 249978814f1SStefano Zampini #if defined(PETSC_HAVE_HYPRE) 250d975228cSstefano_zampini PETSC_EXTERN PetscErrorCode MatHYPRESetPreallocation(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[]); 251978814f1SStefano Zampini #endif 252978814f1SStefano Zampini 253014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPythonSetType(Mat,const char[]); 2541d6018f0SLisandro Dalcin 255014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetUp(Mat); 256014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDestroy(Mat*); 257e56f5c9eSBarry Smith PETSC_EXTERN PetscErrorCode MatGetNonzeroState(Mat,PetscObjectState*); 25821c89e3eSBarry Smith 259014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatConjugate(Mat); 260014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRealPart(Mat); 261014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatImaginaryPart(Mat); 262014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetDiagonalBlock(Mat,Mat*); 263014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetTrace(Mat,PetscScalar*); 264713ccfa9SJed Brown PETSC_EXTERN PetscErrorCode MatInvertBlockDiagonal(Mat,const PetscScalar **); 26599cafbc1SBarry Smith 2668ed539a5SBarry Smith /* ------------------------------------------------------------*/ 267014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValues(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[],const PetscScalar[],InsertMode); 268014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesBlocked(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[],const PetscScalar[],InsertMode); 269014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesRow(Mat,PetscInt,const PetscScalar[]); 270014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesRowLocal(Mat,PetscInt,const PetscScalar[]); 271014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesBatch(Mat,PetscInt,PetscInt,PetscInt[],const PetscScalar[]); 27273a71a0fSBarry Smith PETSC_EXTERN PetscErrorCode MatSetRandom(Mat,PetscRandom); 27384cb2905SBarry Smith 2742ef4de8bSBarry Smith /*S 2752ef4de8bSBarry Smith MatStencil - Data structure (C struct) for storing information about a single row or 27662ef0227SBarry Smith column of a matrix as indexed on an associated grid. These are arguments to MatSetStencil() and MatSetBlockStencil() 27762ef0227SBarry Smith 27862ef0227SBarry Smith The i,j, and k represent the logical coordinates over the entire grid (for 2 and 1 dimensional problems the k and j entries are ignored). 27962ef0227SBarry Smith The c represents the the degrees of freedom at each grid point (the dof argument to DMDASetDOF()). If dof is 1 then this entry is ignored. 28062ef0227SBarry Smith 28162ef0227SBarry Smith For stencil access to vectors see DMDAVecGetArray(), DMDAVecGetArrayF90(). 282be479b30SJed Brown 283be479b30SJed Brown Fortran usage is different, see MatSetValuesStencil() for details. 2842ef4de8bSBarry Smith 2852ef4de8bSBarry Smith Level: beginner 2862ef4de8bSBarry Smith 2872ef4de8bSBarry Smith Concepts: matrix; linear operator 2882ef4de8bSBarry Smith 28962ef0227SBarry Smith .seealso: MatSetValuesStencil(), MatSetStencil(), MatSetValuesBlockedStencil(), DMDAVecGetArray(), DMDAVecGetArrayF90() 2902ef4de8bSBarry Smith S*/ 291435da068SBarry Smith typedef struct { 292c1ac3661SBarry Smith PetscInt k,j,i,c; 293435da068SBarry Smith } MatStencil; 2942ef4de8bSBarry Smith 295014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesStencil(Mat,PetscInt,const MatStencil[],PetscInt,const MatStencil[],const PetscScalar[],InsertMode); 296014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesBlockedStencil(Mat,PetscInt,const MatStencil[],PetscInt,const MatStencil[],const PetscScalar[],InsertMode); 297014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetStencil(Mat,PetscInt,const PetscInt[],const PetscInt[],PetscInt); 298435da068SBarry Smith 299d91e6319SBarry Smith /*E 300d91e6319SBarry Smith MatAssemblyType - Indicates if the matrix is now to be used, or if you plan 30162ef0227SBarry Smith to continue to add or insert values to it 302d91e6319SBarry Smith 303d91e6319SBarry Smith Level: beginner 304d91e6319SBarry Smith 305d91e6319SBarry Smith .seealso: MatAssemblyBegin(), MatAssemblyEnd() 306d91e6319SBarry Smith E*/ 3076d4a8577SBarry Smith typedef enum {MAT_FLUSH_ASSEMBLY=1,MAT_FINAL_ASSEMBLY=0} MatAssemblyType; 308014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatAssemblyBegin(Mat,MatAssemblyType); 309014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatAssemblyEnd(Mat,MatAssemblyType); 310014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatAssembled(Mat,PetscBool *); 3114f9c727eSBarry Smith 3121d73ed98SBarry Smith 31330de9b25SBarry Smith 314d91e6319SBarry Smith /*E 315d91e6319SBarry Smith MatOption - Options that may be set for a matrix and its behavior or storage 316d91e6319SBarry Smith 317d91e6319SBarry Smith Level: beginner 318d91e6319SBarry Smith 319af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 320d91e6319SBarry Smith 321382164b0SBarry Smith Developer Notes: Entries that are negative need not be called collectively by all processes. 322382164b0SBarry Smith 323d91e6319SBarry Smith .seealso: MatSetOption() 324d91e6319SBarry Smith E*/ 325c5e4d11fSDmitry Karpeev typedef enum {MAT_OPTION_MIN = -3, 326c5e4d11fSDmitry Karpeev MAT_UNUSED_NONZERO_LOCATION_ERR = -2, 32792d4d306SBarry Smith MAT_ROW_ORIENTED = -1, 328382164b0SBarry Smith MAT_SYMMETRIC = 1, 329382164b0SBarry Smith MAT_STRUCTURALLY_SYMMETRIC = 2, 330382164b0SBarry Smith MAT_NEW_DIAGONALS = 3, 331382164b0SBarry Smith MAT_IGNORE_OFF_PROC_ENTRIES = 4, 332382164b0SBarry Smith MAT_USE_HASH_TABLE = 5, 333382164b0SBarry Smith MAT_KEEP_NONZERO_PATTERN = 6, 334382164b0SBarry Smith MAT_IGNORE_ZERO_ENTRIES = 7, 335382164b0SBarry Smith MAT_USE_INODES = 8, 336382164b0SBarry Smith MAT_HERMITIAN = 9, 337382164b0SBarry Smith MAT_SYMMETRY_ETERNAL = 10, 338c5e4d11fSDmitry Karpeev MAT_NEW_NONZERO_LOCATION_ERR = 11, 339382164b0SBarry Smith MAT_IGNORE_LOWER_TRIANGULAR = 12, 340382164b0SBarry Smith MAT_ERROR_LOWER_TRIANGULAR = 13, 341382164b0SBarry Smith MAT_GETROW_UPPERTRIANGULAR = 14, 342382164b0SBarry Smith MAT_SPD = 15, 34392d4d306SBarry Smith MAT_NO_OFF_PROC_ZERO_ROWS = 16, 34492d4d306SBarry Smith MAT_NO_OFF_PROC_ENTRIES = 17, 34592d4d306SBarry Smith MAT_NEW_NONZERO_LOCATIONS = 18, 346c5e4d11fSDmitry Karpeev MAT_NEW_NONZERO_ALLOCATION_ERR = 19, 347c5e4d11fSDmitry Karpeev MAT_SUBSET_OFF_PROC_ENTRIES = 20, 348c10200c1SHong Zhang MAT_SUBMAT_SINGLEIS = 21, 349c10200c1SHong Zhang MAT_OPTION_MAX = 22} MatOption; 350e057df02SPaul Mullowney 351014dd563SJed Brown PETSC_EXTERN const char *MatOptions[]; 352014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetOption(Mat,MatOption,PetscBool); 3537d68702bSBarry Smith PETSC_EXTERN PetscErrorCode MatGetOption(Mat,MatOption,PetscBool*); 35419fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatGetType(Mat,MatType*); 35584cb2905SBarry Smith 356014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetValues(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[],PetscScalar[]); 357014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetRow(Mat,PetscInt,PetscInt *,const PetscInt *[],const PetscScalar*[]); 358014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRestoreRow(Mat,PetscInt,PetscInt *,const PetscInt *[],const PetscScalar*[]); 359014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetRowUpperTriangular(Mat); 360014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRestoreRowUpperTriangular(Mat); 361014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetColumnVector(Mat,Vec,PetscInt); 3628c778c55SBarry Smith PETSC_EXTERN PetscErrorCode MatSeqAIJGetArray(Mat,PetscScalar *[]); 3638c778c55SBarry Smith PETSC_EXTERN PetscErrorCode MatSeqAIJRestoreArray(Mat,PetscScalar *[]); 36421e72a00SBarry Smith PETSC_EXTERN PetscErrorCode MatSeqAIJGetMaxRowNonzeros(Mat,PetscInt*); 365bd04181cSBarry Smith PETSC_EXTERN PetscErrorCode MatSeqAIJSetValuesLocalFast(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[],const PetscScalar[],InsertMode); 366*8397e458SBarry Smith PETSC_EXTERN PetscErrorCode MatSeqSBAIJGetArray(Mat,PetscScalar *[]); 367*8397e458SBarry Smith PETSC_EXTERN PetscErrorCode MatSeqSBAIJRestoreArray(Mat,PetscScalar *[]); 3688c778c55SBarry Smith PETSC_EXTERN PetscErrorCode MatDenseGetArray(Mat,PetscScalar *[]); 3698c778c55SBarry Smith PETSC_EXTERN PetscErrorCode MatDenseRestoreArray(Mat,PetscScalar *[]); 370014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetBlockSize(Mat,PetscInt *); 371014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetBlockSize(Mat,PetscInt); 372014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetBlockSizes(Mat,PetscInt *,PetscInt *); 373014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetBlockSizes(Mat,PetscInt,PetscInt); 37433d57670SJed Brown PETSC_EXTERN PetscErrorCode MatSetBlockSizesFromMats(Mat,Mat,Mat); 3751620fd73SBarry Smith 376014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMult(Mat,Vec,Vec); 377014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultDiagonalBlock(Mat,Vec,Vec); 378014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultAdd(Mat,Vec,Vec,Vec); 379014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultTranspose(Mat,Vec,Vec); 380014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultHermitianTranspose(Mat,Vec,Vec); 381014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIsTranspose(Mat,Mat,PetscReal,PetscBool *); 382014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIsHermitianTranspose(Mat,Mat,PetscReal,PetscBool *); 383014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultTransposeAdd(Mat,Vec,Vec,Vec); 384014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultHermitianTransposeAdd(Mat,Vec,Vec,Vec); 385014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultConstrained(Mat,Vec,Vec); 386014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultTransposeConstrained(Mat,Vec,Vec); 387014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMatSolve(Mat,Mat,Mat); 388f9426fe0SMark Adams PETSC_EXTERN PetscErrorCode MatResidual(Mat,Vec,Vec,Vec); 389f5edf698SHong Zhang 390d91e6319SBarry Smith /*E 391d91e6319SBarry Smith MatDuplicateOption - Indicates if a duplicated sparse matrix should have 392d91e6319SBarry Smith its numerical values copied over or just its nonzero structure. 393d91e6319SBarry Smith 394d91e6319SBarry Smith Level: beginner 395d91e6319SBarry Smith 396af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 397d91e6319SBarry Smith 39870dcbbb9SBarry Smith $ MAT_SHARE_NONZERO_PATTERN - the i and j arrays in the new matrix will be shared with the original matrix 39970dcbbb9SBarry Smith $ this also triggers the MAT_DO_NOT_COPY_VALUES option. This is used when you 40070dcbbb9SBarry Smith $ have several matrices with the same nonzero pattern. 40170dcbbb9SBarry Smith 402d91e6319SBarry Smith .seealso: MatDuplicate() 403d91e6319SBarry Smith E*/ 40470dcbbb9SBarry Smith typedef enum {MAT_DO_NOT_COPY_VALUES,MAT_COPY_VALUES,MAT_SHARE_NONZERO_PATTERN} MatDuplicateOption; 4052e8a6d31SBarry Smith 40619fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatConvert(Mat,MatType,MatReuse,Mat*); 407014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDuplicate(Mat,MatDuplicateOption,Mat*); 40894a9d846SBarry Smith 409cb5b572fSBarry Smith 410014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCopy(Mat,Mat,MatStructure); 411014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatView(Mat,PetscViewer); 412014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIsSymmetric(Mat,PetscReal,PetscBool *); 413014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIsStructurallySymmetric(Mat,PetscBool *); 414014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIsHermitian(Mat,PetscReal,PetscBool *); 415014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIsSymmetricKnown(Mat,PetscBool *,PetscBool *); 416014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIsHermitianKnown(Mat,PetscBool *,PetscBool *); 417014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMissingDiagonal(Mat,PetscBool *,PetscInt *); 418014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatLoad(Mat, PetscViewer); 4197b80b807SBarry Smith 4201a83f524SJed Brown PETSC_EXTERN PetscErrorCode MatGetRowIJ(Mat,PetscInt,PetscBool ,PetscBool ,PetscInt*,const PetscInt *[],const PetscInt *[],PetscBool *); 4211a83f524SJed Brown PETSC_EXTERN PetscErrorCode MatRestoreRowIJ(Mat,PetscInt,PetscBool ,PetscBool ,PetscInt *,const PetscInt *[],const PetscInt *[],PetscBool *); 4221a83f524SJed Brown PETSC_EXTERN PetscErrorCode MatGetColumnIJ(Mat,PetscInt,PetscBool ,PetscBool ,PetscInt*,const PetscInt *[],const PetscInt *[],PetscBool *); 4231a83f524SJed Brown PETSC_EXTERN PetscErrorCode MatRestoreColumnIJ(Mat,PetscInt,PetscBool ,PetscBool ,PetscInt *,const PetscInt *[],const PetscInt *[],PetscBool *); 424d4fbbf0eSBarry Smith 425d91e6319SBarry Smith /*S 426d91e6319SBarry Smith MatInfo - Context of matrix information, used with MatGetInfo() 427d91e6319SBarry Smith 428d91e6319SBarry Smith In Fortran this is simply a double precision array of dimension MAT_INFO_SIZE 429d91e6319SBarry Smith 430d91e6319SBarry Smith Level: intermediate 431d91e6319SBarry Smith 432d91e6319SBarry Smith Concepts: matrix^nonzero information 433d91e6319SBarry Smith 434d9274352SBarry Smith .seealso: MatGetInfo(), MatInfoType 435d91e6319SBarry Smith S*/ 4364e220ebcSLois Curfman McInnes typedef struct { 437b0a32e0cSBarry Smith PetscLogDouble block_size; /* block size */ 438b0a32e0cSBarry Smith PetscLogDouble nz_allocated,nz_used,nz_unneeded; /* number of nonzeros */ 439b0a32e0cSBarry Smith PetscLogDouble memory; /* memory allocated */ 440b0a32e0cSBarry Smith PetscLogDouble assemblies; /* number of matrix assemblies called */ 441b0a32e0cSBarry Smith PetscLogDouble mallocs; /* number of mallocs during MatSetValues() */ 442b0a32e0cSBarry Smith PetscLogDouble fill_ratio_given,fill_ratio_needed; /* fill ratio for LU/ILU */ 443b0a32e0cSBarry Smith PetscLogDouble factor_mallocs; /* number of mallocs during factorization */ 4444e220ebcSLois Curfman McInnes } MatInfo; 4454e220ebcSLois Curfman McInnes 446d9274352SBarry Smith /*E 447d9274352SBarry Smith MatInfoType - Indicates if you want information about the local part of the matrix, 448d9274352SBarry Smith the entire parallel matrix or the maximum over all the local parts. 449d9274352SBarry Smith 450d9274352SBarry Smith Level: beginner 451d9274352SBarry Smith 452af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 453d9274352SBarry Smith 454d9274352SBarry Smith .seealso: MatGetInfo(), MatInfo 455d9274352SBarry Smith E*/ 4567b80b807SBarry Smith typedef enum {MAT_LOCAL=1,MAT_GLOBAL_MAX=2,MAT_GLOBAL_SUM=3} MatInfoType; 457014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetInfo(Mat,MatInfoType,MatInfo*); 458014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetDiagonal(Mat,Vec); 459014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetRowMax(Mat,Vec,PetscInt[]); 460014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetRowMin(Mat,Vec,PetscInt[]); 461014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetRowMaxAbs(Mat,Vec,PetscInt[]); 462014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetRowMinAbs(Mat,Vec,PetscInt[]); 463014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetRowSum(Mat,Vec); 464014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTranspose(Mat,MatReuse,Mat*); 465014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatHermitianTranspose(Mat,MatReuse,Mat*); 466014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPermute(Mat,IS,IS,Mat*); 467014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDiagonalScale(Mat,Vec,Vec); 468014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDiagonalSet(Mat,Vec,InsertMode); 469a52676ecSHong Zhang 470014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatEqual(Mat,Mat,PetscBool*); 471014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultEqual(Mat,Mat,PetscInt,PetscBool*); 472014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultAddEqual(Mat,Mat,PetscInt,PetscBool*); 473014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultTransposeEqual(Mat,Mat,PetscInt,PetscBool*); 474014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMultTransposeAddEqual(Mat,Mat,PetscInt,PetscBool*); 475a52676ecSHong Zhang PETSC_EXTERN PetscErrorCode MatMatMultEqual(Mat,Mat,Mat,PetscInt,PetscBool*); 476a52676ecSHong Zhang PETSC_EXTERN PetscErrorCode MatTransposeMatMultEqual(Mat,Mat,Mat,PetscInt,PetscBool*); 4777b80b807SBarry Smith 478014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNorm(Mat,NormType,PetscReal*); 479014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetColumnNorms(Mat,NormType,PetscReal*); 480014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroEntries(Mat); 481014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRows(Mat,PetscInt,const PetscInt [],PetscScalar,Vec,Vec); 482014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsIS(Mat,IS,PetscScalar,Vec,Vec); 483014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsStencil(Mat,PetscInt,const MatStencil [],PetscScalar,Vec,Vec); 484014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsColumnsStencil(Mat,PetscInt,const MatStencil[],PetscScalar,Vec,Vec); 485014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsColumns(Mat,PetscInt,const PetscInt [],PetscScalar,Vec,Vec); 486014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsColumnsIS(Mat,IS,PetscScalar,Vec,Vec); 4877b80b807SBarry Smith 488014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetSize(Mat,PetscInt*,PetscInt*); 489014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetLocalSize(Mat,PetscInt*,PetscInt*); 490014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetOwnershipRange(Mat,PetscInt*,PetscInt*); 491014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetOwnershipRanges(Mat,const PetscInt**); 492014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetOwnershipRangeColumn(Mat,PetscInt*,PetscInt*); 493014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetOwnershipRangesColumn(Mat,const PetscInt**); 494566876eaSJed Brown PETSC_EXTERN PetscErrorCode MatGetOwnershipIS(Mat,IS*,IS*); 4955ef9f2a5SBarry Smith 496014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetSubMatrices(Mat,PetscInt,const IS[],const IS[],MatReuse,Mat *[]); 49753dd7562SDmitry Karpeev PETSC_EXTERN PetscErrorCode MatGetSubMatricesMPI(Mat,PetscInt,const IS[],const IS[],MatReuse,Mat *[]); 498014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDestroyMatrices(PetscInt,Mat *[]); 499014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetSubMatrix(Mat,IS,IS,MatReuse,Mat *); 500014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetLocalSubMatrix(Mat,IS,IS,Mat*); 501014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRestoreLocalSubMatrix(Mat,IS,IS,Mat*); 502014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetSeqNonzeroStructure(Mat,Mat*); 503014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDestroySeqNonzeroStructure(Mat*); 5047b80b807SBarry Smith 505014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIAIJSumSeqAIJ(MPI_Comm,Mat,PetscInt,PetscInt,MatReuse,Mat*); 506014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIAIJSumSeqAIJSymbolic(MPI_Comm,Mat,PetscInt,PetscInt,Mat*); 507014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMPIAIJSumSeqAIJNumeric(Mat,Mat); 508014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIAIJGetLocalMat(Mat,MatReuse,Mat*); 509014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIAIJGetLocalMatCondensed(Mat,MatReuse,IS*,IS*,Mat*); 510014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetBrowsOfAcols(Mat,Mat,MatReuse,IS*,IS*,Mat*); 511014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetGhosts(Mat, PetscInt *,const PetscInt *[]); 5128efafbd8SBarry Smith 513014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatIncreaseOverlap(Mat,PetscInt,IS[],PetscInt); 514aa1e27eaSFande Kong PETSC_EXTERN PetscErrorCode MatIncreaseOverlapSplit(Mat mat,PetscInt n,IS is[],PetscInt ov); 515d2b2a242SBarry Smith PETSC_EXTERN PetscErrorCode MatMPIAIJSetUseScalableIncreaseOverlap(Mat,PetscBool); 5167b80b807SBarry Smith 517014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMatMult(Mat,Mat,MatReuse,PetscReal,Mat*); 518014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMatMultSymbolic(Mat,Mat,PetscReal,Mat*); 519014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMatMultNumeric(Mat,Mat,Mat); 52022440eb1SKris Buschelman 5217bab7c10SHong Zhang PETSC_EXTERN PetscErrorCode MatMatMatMult(Mat,Mat,Mat,MatReuse,PetscReal,Mat*); 5222df6c5c3SPatrick Farrell PETSC_EXTERN PetscErrorCode MatGalerkin(Mat,Mat,Mat,MatReuse,PetscReal,Mat*); 5237bab7c10SHong Zhang 524014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPtAP(Mat,Mat,MatReuse,PetscReal,Mat*); 525014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPtAPSymbolic(Mat,Mat,PetscReal,Mat*); 526014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPtAPNumeric(Mat,Mat,Mat); 527014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRARt(Mat,Mat,MatReuse,PetscReal,Mat*); 528014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRARtSymbolic(Mat,Mat,PetscReal,Mat*); 529014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRARtNumeric(Mat,Mat,Mat); 53022440eb1SKris Buschelman 531014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTransposeMatMult(Mat,Mat,MatReuse,PetscReal,Mat*); 532014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTransposetMatMultSymbolic(Mat,Mat,PetscReal,Mat*); 533014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTransposetMatMultNumeric(Mat,Mat,Mat); 534014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMatTransposeMult(Mat,Mat,MatReuse,PetscReal,Mat*); 535014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMatTransposeMultSymbolic(Mat,Mat,PetscReal,Mat*); 536014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMatTransposeMultNumeric(Mat,Mat,Mat); 537bc011b1eSHong Zhang 538014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatAXPY(Mat,PetscScalar,Mat,MatStructure); 539014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatAYPX(Mat,PetscScalar,Mat,MatStructure); 5401c741599SHong Zhang 541014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatScale(Mat,PetscScalar); 542014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatShift(Mat,PetscScalar); 5437b80b807SBarry Smith 544014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetLocalToGlobalMapping(Mat,ISLocalToGlobalMapping,ISLocalToGlobalMapping); 545014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetLocalToGlobalMapping(Mat,ISLocalToGlobalMapping*,ISLocalToGlobalMapping*); 546a93ff8c4SPeter Brune PETSC_EXTERN PetscErrorCode MatGetLayouts(Mat,PetscLayout*,PetscLayout*); 547014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsLocal(Mat,PetscInt,const PetscInt [],PetscScalar,Vec,Vec); 548014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsLocalIS(Mat,IS,PetscScalar,Vec,Vec); 549014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsColumnsLocal(Mat,PetscInt,const PetscInt [],PetscScalar,Vec,Vec); 550014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatZeroRowsColumnsLocalIS(Mat,IS,PetscScalar,Vec,Vec); 551014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesLocal(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[],const PetscScalar[],InsertMode); 552014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetValuesBlockedLocal(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[],const PetscScalar[],InsertMode); 553052efed2SBarry Smith 554014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatStashSetInitialSize(Mat,PetscInt,PetscInt); 555014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatStashGetInfo(Mat,PetscInt*,PetscInt*,PetscInt*,PetscInt*); 55690f02eecSBarry Smith 557014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatInterpolate(Mat,Vec,Vec); 558014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatInterpolateAdd(Mat,Vec,Vec,Vec); 559014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRestrict(Mat,Vec,Vec); 5602a7a6963SBarry Smith PETSC_EXTERN PetscErrorCode MatCreateVecs(Mat,Vec*,Vec*); 56184cc2a5aSBarry Smith PETSC_DEPRECATED("Use MatCreateVecs()") PETSC_STATIC_INLINE PetscErrorCode MatGetVecs(Mat mat,Vec *x,Vec *y) {return MatCreateVecs(mat,x,y);} 56253cd1579SHong Zhang PETSC_EXTERN PetscErrorCode MatCreateRedundantMatrix(Mat,PetscInt,MPI_Comm,MatReuse,Mat*); 563014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetMultiProcBlock(Mat,MPI_Comm,MatReuse,Mat*); 564014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFindZeroDiagonals(Mat,IS*); 5653a062f41SBarry Smith PETSC_EXTERN PetscErrorCode MatFindOffBlockDiagonalEntries(Mat,IS*); 5669c8f2541SHong Zhang PETSC_EXTERN PetscErrorCode MatCreateMPIMatConcatenateSeqMat(MPI_Comm,Mat,PetscInt,MatReuse,Mat*); 567bd481603SBarry Smith 568bd481603SBarry Smith /*MC 5691620fd73SBarry Smith MatSetValue - Set a single entry into a matrix. 5701620fd73SBarry Smith 5711620fd73SBarry Smith Not collective 5721620fd73SBarry Smith 573a9834a7dSSatish Balay Synopsis: 574a9834a7dSSatish Balay #include <petscmat.h> 575a9834a7dSSatish Balay PetscErrorCode MatSetValue(Mat m,PetscInt row,PetscInt col,PetscScalar value,InsertMode mode) 576a9834a7dSSatish Balay 5771620fd73SBarry Smith Input Parameters: 5781620fd73SBarry Smith + m - the matrix 5791620fd73SBarry Smith . row - the row location of the entry 5801620fd73SBarry Smith . col - the column location of the entry 5811620fd73SBarry Smith . value - the value to insert 5821620fd73SBarry Smith - mode - either INSERT_VALUES or ADD_VALUES 5831620fd73SBarry Smith 5841620fd73SBarry Smith Notes: 5851620fd73SBarry Smith For efficiency one should use MatSetValues() and set several or many 5861620fd73SBarry Smith values simultaneously if possible. 5871620fd73SBarry Smith 5881620fd73SBarry Smith Level: beginner 5891620fd73SBarry Smith 5901620fd73SBarry Smith .seealso: MatSetValues(), MatSetValueLocal() 5911620fd73SBarry Smith M*/ 5921620fd73SBarry Smith PETSC_STATIC_INLINE PetscErrorCode MatSetValue(Mat v,PetscInt i,PetscInt j,PetscScalar va,InsertMode mode) {return MatSetValues(v,1,&i,1,&j,&va,mode);} 5931620fd73SBarry Smith 5941620fd73SBarry Smith PETSC_STATIC_INLINE PetscErrorCode MatGetValue(Mat v,PetscInt i,PetscInt j,PetscScalar *va) {return MatGetValues(v,1,&i,1,&j,va);} 5951620fd73SBarry Smith 5961620fd73SBarry Smith PETSC_STATIC_INLINE PetscErrorCode MatSetValueLocal(Mat v,PetscInt i,PetscInt j,PetscScalar va,InsertMode mode) {return MatSetValuesLocal(v,1,&i,1,&j,&va,mode);} 5971620fd73SBarry Smith 5981620fd73SBarry Smith /*MC 5990d2a7ff2SSatish Balay MatPreallocateInitialize - Begins the block of code that will count the number of nonzeros per 600bd481603SBarry Smith row in a matrix providing the data that one can use to correctly preallocate the matrix. 601bd481603SBarry Smith 602bd481603SBarry Smith Synopsis: 603aaa7dc30SBarry Smith #include <petscmat.h> 604c1ac3661SBarry Smith PetscErrorCode MatPreallocateInitialize(MPI_Comm comm, PetscInt nrows, PetscInt ncols, PetscInt *dnz, PetscInt *onz) 605bd481603SBarry Smith 606bd481603SBarry Smith Collective on MPI_Comm 607bd481603SBarry Smith 608bd481603SBarry Smith Input Parameters: 609bd481603SBarry Smith + comm - the communicator that will share the eventually allocated matrix 610859fcb39SBarry Smith . nrows - the number of LOCAL rows in the matrix 611859fcb39SBarry Smith - ncols - the number of LOCAL columns in the matrix 612bd481603SBarry Smith 613bd481603SBarry Smith Output Parameters: 614bd481603SBarry Smith + dnz - the array that will be passed to the matrix preallocation routines 615bd481603SBarry Smith - ozn - the other array passed to the matrix preallocation routines 616bd481603SBarry Smith 617bd481603SBarry Smith Level: intermediate 618bd481603SBarry Smith 619bd481603SBarry Smith Notes: 620a7f22e61SSatish Balay See Users-Manual: ch_performance for more details. 621bd481603SBarry Smith 6221d73ed98SBarry Smith Do not malloc or free dnz and onz, that is handled internally by these routines 623bd481603SBarry Smith 624bd481603SBarry Smith Use MatPreallocateInitializeSymmetric() for symmetric matrices (MPISBAIJ matrices) 625bd481603SBarry Smith 6261620fd73SBarry Smith This is a MACRO not a function because it has a leading { that is closed by PetscPreallocateFinalize(). 6271620fd73SBarry Smith 628bd481603SBarry Smith Concepts: preallocation^Matrix 629bd481603SBarry Smith 630d6e23781SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSetBlock(), MatPreallocateSetLocal(), 631d6e23781SBarry Smith MatPreallocateInitializeSymmetric(), MatPreallocateSymmetricSetLocalBlock() 632bd481603SBarry Smith M*/ 633c4f061fbSSatish Balay #define MatPreallocateInitialize(comm,nrows,ncols,dnz,onz) 0; \ 6347c922b88SBarry Smith { \ 635a89bc211SBarry Smith PetscErrorCode _4_ierr; PetscInt __nrows = (nrows),__ctmp = (ncols),__rstart,__start,__end; \ 6361795a4d1SJed Brown _4_ierr = PetscCalloc2(__nrows,&dnz,__nrows,&onz);CHKERRQ(_4_ierr); \ 6371795a4d1SJed Brown __start = 0; __end = __start; \ 638c1ac3661SBarry Smith _4_ierr = MPI_Scan(&__ctmp,&__end,1,MPIU_INT,MPI_SUM,comm);CHKERRQ(_4_ierr); __start = __end - __ctmp;\ 639a89bc211SBarry Smith _4_ierr = MPI_Scan(&__nrows,&__rstart,1,MPIU_INT,MPI_SUM,comm);CHKERRQ(_4_ierr); __rstart = __rstart - __nrows; 6407c922b88SBarry Smith 641bd481603SBarry Smith /*MC 642bd481603SBarry Smith MatPreallocateSetLocal - Indicates the locations (rows and columns) in the matrix where nonzeros will be 643bd481603SBarry Smith inserted using a local number of the rows and columns 644bd481603SBarry Smith 645bd481603SBarry Smith Synopsis: 646aaa7dc30SBarry Smith #include <petscmat.h> 647c1ac3661SBarry Smith PetscErrorCode MatPreallocateSetLocal(ISLocalToGlobalMappping map,PetscInt nrows, PetscInt *rows,PetscInt ncols, PetscInt *cols,PetscInt *dnz, PetscInt *onz) 648bd481603SBarry Smith 649bd481603SBarry Smith Not Collective 650bd481603SBarry Smith 651bd481603SBarry Smith Input Parameters: 652784ac674SJed Brown + map - the row mapping from local numbering to global numbering 653bd481603SBarry Smith . nrows - the number of rows indicated 6541d73ed98SBarry Smith . rows - the indices of the rows 655784ac674SJed Brown . cmap - the column mapping from local to global numbering 656bd481603SBarry Smith . ncols - the number of columns in the matrix 657bd481603SBarry Smith . cols - the columns indicated 658bd481603SBarry Smith . dnz - the array that will be passed to the matrix preallocation routines 659bd481603SBarry Smith - ozn - the other array passed to the matrix preallocation routines 660bd481603SBarry Smith 661bd481603SBarry Smith Level: intermediate 662bd481603SBarry Smith 663bd481603SBarry Smith Notes: 664a7f22e61SSatish Balay See Users-Manual: ch_performance for more details. 665bd481603SBarry Smith 6661d73ed98SBarry Smith Do not malloc or free dnz and onz, that is handled internally by these routines 667bd481603SBarry Smith 668bd481603SBarry Smith Concepts: preallocation^Matrix 669bd481603SBarry Smith 670d6e23781SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSetBlock(), MatPreallocateInitialize(), 671c1154cd5SBarry Smith MatPreallocateInitialize(), MatPreallocateSymmetricSetLocalBlock(), MatPreallocateSetLocalRemoveDups() 672bd481603SBarry Smith M*/ 673784ac674SJed Brown #define MatPreallocateSetLocal(rmap,nrows,rows,cmap,ncols,cols,dnz,onz) 0; \ 674c4f061fbSSatish Balay {\ 675c1ac3661SBarry Smith PetscInt __l;\ 676784ac674SJed Brown _4_ierr = ISLocalToGlobalMappingApply(rmap,nrows,rows,rows);CHKERRQ(_4_ierr);\ 677784ac674SJed Brown _4_ierr = ISLocalToGlobalMappingApply(cmap,ncols,cols,cols);CHKERRQ(_4_ierr);\ 678c4f061fbSSatish Balay for (__l=0;__l<nrows;__l++) {\ 679ef66eb69SBarry Smith _4_ierr = MatPreallocateSet((rows)[__l],ncols,cols,dnz,onz);CHKERRQ(_4_ierr);\ 680c4f061fbSSatish Balay }\ 681c4f061fbSSatish Balay } 682c4f061fbSSatish Balay 683bd481603SBarry Smith /*MC 684c1154cd5SBarry Smith MatPreallocateSetLocalRemoveDups - Indicates the locations (rows and columns) in the matrix where nonzeros will be 685c1154cd5SBarry Smith inserted using a local number of the rows and columns. This version removes any duplicate columns in cols 686c1154cd5SBarry Smith 687c1154cd5SBarry Smith Synopsis: 688c1154cd5SBarry Smith #include <petscmat.h> 689c1154cd5SBarry Smith PetscErrorCode MatPreallocateSetLocalRemoveDups(ISLocalToGlobalMappping map,PetscInt nrows, PetscInt *rows,PetscInt ncols, PetscInt *cols,PetscInt *dnz, PetscInt *onz) 690c1154cd5SBarry Smith 691c1154cd5SBarry Smith Not Collective 692c1154cd5SBarry Smith 693c1154cd5SBarry Smith Input Parameters: 694c1154cd5SBarry Smith + map - the row mapping from local numbering to global numbering 695c1154cd5SBarry Smith . nrows - the number of rows indicated 696c1154cd5SBarry Smith . rows - the indices of the rows (these values are mapped to the global values) 697c1154cd5SBarry Smith . cmap - the column mapping from local to global numbering 698c1154cd5SBarry Smith . ncols - the number of columns in the matrix (this value will be changed if duplicate columns are found) 699c1154cd5SBarry Smith . cols - the columns indicated (these values are mapped to the global values, they are then sorted and duplicates removed) 700c1154cd5SBarry Smith . dnz - the array that will be passed to the matrix preallocation routines 701c1154cd5SBarry Smith - ozn - the other array passed to the matrix preallocation routines 702c1154cd5SBarry Smith 703c1154cd5SBarry Smith Level: intermediate 704c1154cd5SBarry Smith 705c1154cd5SBarry Smith Notes: 706c1154cd5SBarry Smith See Users-Manual: ch_performance for more details. 707c1154cd5SBarry Smith 708c1154cd5SBarry Smith Do not malloc or free dnz and onz, that is handled internally by these routines 709c1154cd5SBarry Smith 710c1154cd5SBarry Smith Concepts: preallocation^Matrix 711c1154cd5SBarry Smith 712c1154cd5SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSetBlock(), MatPreallocateInitialize(), 713c1154cd5SBarry Smith MatPreallocateInitialize(), MatPreallocateSymmetricSetLocalBlock(), MatPreallocateSetLocal() 714c1154cd5SBarry Smith M*/ 715c1154cd5SBarry Smith #define MatPreallocateSetLocalRemoveDups(rmap,nrows,rows,cmap,ncols,cols,dnz,onz) 0; \ 716c1154cd5SBarry Smith {\ 717c1154cd5SBarry Smith PetscInt __l;\ 718c1154cd5SBarry Smith _4_ierr = ISLocalToGlobalMappingApply(rmap,nrows,rows,rows);CHKERRQ(_4_ierr);\ 719c1154cd5SBarry Smith _4_ierr = ISLocalToGlobalMappingApply(cmap,ncols,cols,cols);CHKERRQ(_4_ierr);\ 720c1154cd5SBarry Smith _4_ierr = PetscSortRemoveDupsInt(&ncols,cols);CHKERRQ(_4_ierr);\ 721c1154cd5SBarry Smith for (__l=0;__l<nrows;__l++) {\ 722c1154cd5SBarry Smith _4_ierr = MatPreallocateSet((rows)[__l],ncols,cols,dnz,onz);CHKERRQ(_4_ierr);\ 723c1154cd5SBarry Smith }\ 724c1154cd5SBarry Smith } 725c1154cd5SBarry Smith 726c1154cd5SBarry Smith /*MC 727d6e23781SBarry Smith MatPreallocateSetLocalBlock - Indicates the locations (rows and columns) in the matrix where nonzeros will be 728bd481603SBarry Smith inserted using a local number of the rows and columns 729bd481603SBarry Smith 730bd481603SBarry Smith Synopsis: 731aaa7dc30SBarry Smith #include <petscmat.h> 732d6e23781SBarry Smith PetscErrorCode MatPreallocateSetLocalBlock(ISLocalToGlobalMappping map,PetscInt nrows, PetscInt *rows,PetscInt ncols, PetscInt *cols,PetscInt *dnz, PetscInt *onz) 733d6e23781SBarry Smith 734d6e23781SBarry Smith Not Collective 735d6e23781SBarry Smith 736d6e23781SBarry Smith Input Parameters: 737d6e23781SBarry Smith + map - the row mapping from local numbering to global numbering 738d6e23781SBarry Smith . nrows - the number of rows indicated 739d6e23781SBarry Smith . rows - the indices of the rows 740d6e23781SBarry Smith . cmap - the column mapping from local to global numbering 741d6e23781SBarry Smith . ncols - the number of columns in the matrix 742d6e23781SBarry Smith . cols - the columns indicated 743d6e23781SBarry Smith . dnz - the array that will be passed to the matrix preallocation routines 744d6e23781SBarry Smith - ozn - the other array passed to the matrix preallocation routines 745d6e23781SBarry Smith 746d6e23781SBarry Smith Level: intermediate 747d6e23781SBarry Smith 748d6e23781SBarry Smith Notes: 749d6e23781SBarry Smith See Users-Manual: ch_performance for more details. 750d6e23781SBarry Smith 751d6e23781SBarry Smith Do not malloc or free dnz and onz, that is handled internally by these routines 752d6e23781SBarry Smith 753d6e23781SBarry Smith Concepts: preallocation^Matrix 754d6e23781SBarry Smith 755d6e23781SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSetBlock(), MatPreallocateInitialize(), 756d6e23781SBarry Smith MatPreallocateInitialize(), MatPreallocateSymmetricSetLocalBlock() 757d6e23781SBarry Smith M*/ 758d6e23781SBarry Smith #define MatPreallocateSetLocalBlock(rmap,nrows,rows,cmap,ncols,cols,dnz,onz) 0; \ 759d6e23781SBarry Smith {\ 760d6e23781SBarry Smith PetscInt __l;\ 761d6e23781SBarry Smith _4_ierr = ISLocalToGlobalMappingApplyBlock(rmap,nrows,rows,rows);CHKERRQ(_4_ierr);\ 762d6e23781SBarry Smith _4_ierr = ISLocalToGlobalMappingApplyBlock(cmap,ncols,cols,cols);CHKERRQ(_4_ierr);\ 763d6e23781SBarry Smith for (__l=0;__l<nrows;__l++) {\ 764d6e23781SBarry Smith _4_ierr = MatPreallocateSet((rows)[__l],ncols,cols,dnz,onz);CHKERRQ(_4_ierr);\ 765d6e23781SBarry Smith }\ 766d6e23781SBarry Smith } 767d6e23781SBarry Smith 768d6e23781SBarry Smith /*MC 769d6e23781SBarry Smith MatPreallocateSymmetricSetLocalBlock - Indicates the locations (rows and columns) in the matrix where nonzeros will be 770d6e23781SBarry Smith inserted using a local number of the rows and columns 771d6e23781SBarry Smith 772d6e23781SBarry Smith Synopsis: 773d6e23781SBarry Smith #include <petscmat.h> 774d6e23781SBarry Smith PetscErrorCode MatPreallocateSymmetricSetLocalBlock(ISLocalToGlobalMappping map,PetscInt nrows, PetscInt *rows,PetscInt ncols, PetscInt *cols,PetscInt *dnz, PetscInt *onz) 775bd481603SBarry Smith 776bd481603SBarry Smith Not Collective 777bd481603SBarry Smith 778bd481603SBarry Smith Input Parameters: 779bd481603SBarry Smith + map - the mapping between local numbering and global numbering 780bd481603SBarry Smith . nrows - the number of rows indicated 7811d73ed98SBarry Smith . rows - the indices of the rows 782bd481603SBarry Smith . ncols - the number of columns in the matrix 783bd481603SBarry Smith . cols - the columns indicated 784bd481603SBarry Smith . dnz - the array that will be passed to the matrix preallocation routines 785bd481603SBarry Smith - ozn - the other array passed to the matrix preallocation routines 786bd481603SBarry Smith 787bd481603SBarry Smith Level: intermediate 788bd481603SBarry Smith 789bd481603SBarry Smith Notes: 790a7f22e61SSatish Balay See Users-Manual: ch_performance for more details. 791bd481603SBarry Smith 792bd481603SBarry Smith Do not malloc or free dnz and onz that is handled internally by these routines 793bd481603SBarry Smith 794bd481603SBarry Smith Concepts: preallocation^Matrix 795bd481603SBarry Smith 796d6e23781SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateInitialize(), 797d6e23781SBarry Smith MatPreallocateInitialize(), MatPreallocateSetLocal() 798bd481603SBarry Smith M*/ 799d6e23781SBarry Smith #define MatPreallocateSymmetricSetLocalBlock(map,nrows,rows,ncols,cols,dnz,onz) 0;\ 800d3d32019SBarry Smith {\ 801c1ac3661SBarry Smith PetscInt __l;\ 802d6e23781SBarry Smith _4_ierr = ISLocalToGlobalMappingApplyBlock(map,nrows,rows,rows);CHKERRQ(_4_ierr);\ 803d6e23781SBarry Smith _4_ierr = ISLocalToGlobalMappingApplyBlock(map,ncols,cols,cols);CHKERRQ(_4_ierr);\ 804d3d32019SBarry Smith for (__l=0;__l<nrows;__l++) {\ 805d6e23781SBarry Smith _4_ierr = MatPreallocateSymmetricSetBlock((rows)[__l],ncols,cols,dnz,onz);CHKERRQ(_4_ierr);\ 806d3d32019SBarry Smith }\ 807d3d32019SBarry Smith } 808bd481603SBarry Smith /*MC 809bd481603SBarry Smith MatPreallocateSet - Indicates the locations (rows and columns) in the matrix where nonzeros will be 810bd481603SBarry Smith inserted using a local number of the rows and columns 811bd481603SBarry Smith 812bd481603SBarry Smith Synopsis: 813aaa7dc30SBarry Smith #include <petscmat.h> 814c1ac3661SBarry Smith PetscErrorCode MatPreallocateSet(PetscInt nrows, PetscInt *rows,PetscInt ncols, PetscInt *cols,PetscInt *dnz, PetscInt *onz) 815bd481603SBarry Smith 816bd481603SBarry Smith Not Collective 817bd481603SBarry Smith 818bd481603SBarry Smith Input Parameters: 81964075487SBarry Smith + row - the row 820bd481603SBarry Smith . ncols - the number of columns in the matrix 821a50f8bf6SHong Zhang - cols - the columns indicated 822a50f8bf6SHong Zhang 823a50f8bf6SHong Zhang Output Parameters: 824a50f8bf6SHong Zhang + dnz - the array that will be passed to the matrix preallocation routines 825bd481603SBarry Smith - ozn - the other array passed to the matrix preallocation routines 826bd481603SBarry Smith 827bd481603SBarry Smith Level: intermediate 828bd481603SBarry Smith 829bd481603SBarry Smith Notes: 830a7f22e61SSatish Balay See Users-Manual: ch_performance for more details. 831bd481603SBarry Smith 832bd481603SBarry Smith Do not malloc or free dnz and onz that is handled internally by these routines 833bd481603SBarry Smith 8341620fd73SBarry Smith This is a MACRO not a function because it uses variables declared in MatPreallocateInitialize(). 8351620fd73SBarry Smith 836bd481603SBarry Smith Concepts: preallocation^Matrix 837bd481603SBarry Smith 838d6e23781SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSetBlock(), MatPreallocateInitialize(), 839d6e23781SBarry Smith MatPreallocateInitialize(), MatPreallocateSetLocal() 840bd481603SBarry Smith M*/ 841c4f061fbSSatish Balay #define MatPreallocateSet(row,nc,cols,dnz,onz) 0;\ 842c1ac3661SBarry Smith { PetscInt __i; \ 843e32f2f54SBarry Smith if (row < __rstart) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Trying to set preallocation for row %D less than first local row %D",row,__rstart);\ 844e32f2f54SBarry Smith if (row >= __rstart+__nrows) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Trying to set preallocation for row %D greater than last local row %D",row,__rstart+__nrows-1);\ 8457c922b88SBarry Smith for (__i=0; __i<nc; __i++) {\ 84664075487SBarry Smith if ((cols)[__i] < __start || (cols)[__i] >= __end) onz[row - __rstart]++; \ 8477cc688d7SBarry Smith else dnz[row - __rstart]++;\ 8487c922b88SBarry Smith }\ 8497c922b88SBarry Smith } 8507c922b88SBarry Smith 851bd481603SBarry Smith /*MC 852d6e23781SBarry Smith MatPreallocateSymmetricSetBlock - Indicates the locations (rows and columns) in the matrix where nonzeros will be 853bd481603SBarry Smith inserted using a local number of the rows and columns 854bd481603SBarry Smith 855bd481603SBarry Smith Synopsis: 856aaa7dc30SBarry Smith #include <petscmat.h> 857d6e23781SBarry Smith PetscErrorCode MatPreallocateSymmetricSetBlock(PetscInt nrows, PetscInt *rows,PetscInt ncols, PetscInt *cols,PetscInt *dnz, PetscInt *onz) 858bd481603SBarry Smith 859bd481603SBarry Smith Not Collective 860bd481603SBarry Smith 861bd481603SBarry Smith Input Parameters: 862bd481603SBarry Smith + nrows - the number of rows indicated 8631d73ed98SBarry Smith . rows - the indices of the rows 864bd481603SBarry Smith . ncols - the number of columns in the matrix 865bd481603SBarry Smith . cols - the columns indicated 866bd481603SBarry Smith . dnz - the array that will be passed to the matrix preallocation routines 867bd481603SBarry Smith - ozn - the other array passed to the matrix preallocation routines 868bd481603SBarry Smith 869bd481603SBarry Smith Level: intermediate 870bd481603SBarry Smith 871bd481603SBarry Smith Notes: 872a7f22e61SSatish Balay See Users-Manual: ch_performance for more details. 873bd481603SBarry Smith 874bd481603SBarry Smith Do not malloc or free dnz and onz that is handled internally by these routines 875bd481603SBarry Smith 8761620fd73SBarry Smith This is a MACRO not a function because it uses variables declared in MatPreallocateInitialize(). 8771620fd73SBarry Smith 878bd481603SBarry Smith Concepts: preallocation^Matrix 879bd481603SBarry Smith 880d6e23781SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateInitialize(), 881d6e23781SBarry Smith MatPreallocateInitialize(), MatPreallocateSymmetricSetLocalBlock(), MatPreallocateSetLocal() 882bd481603SBarry Smith M*/ 883d6e23781SBarry Smith #define MatPreallocateSymmetricSetBlock(row,nc,cols,dnz,onz) 0;\ 884c1ac3661SBarry Smith { PetscInt __i; \ 885d3d32019SBarry Smith for (__i=0; __i<nc; __i++) {\ 886d3d32019SBarry Smith if (cols[__i] >= __end) onz[row - __rstart]++; \ 887d3d32019SBarry Smith else if (cols[__i] >= row) dnz[row - __rstart]++;\ 888d3d32019SBarry Smith }\ 889d3d32019SBarry Smith } 890d3d32019SBarry Smith 891bd481603SBarry Smith /*MC 89216371a99SBarry Smith MatPreallocateLocation - An alternative to MatPreallocationSet() that puts the nonzero locations into the matrix if it exists 89316371a99SBarry Smith 89416371a99SBarry Smith Synopsis: 895aaa7dc30SBarry Smith #include <petscmat.h> 89616371a99SBarry Smith PetscErrorCode MatPreallocateLocations(Mat A,PetscInt row,PetscInt ncols,PetscInt *cols,PetscInt *dnz,PetscInt *onz) 89716371a99SBarry Smith 89816371a99SBarry Smith Not Collective 89916371a99SBarry Smith 90016371a99SBarry Smith Input Parameters: 90116371a99SBarry Smith . A - matrix 90216371a99SBarry Smith . row - row where values exist (must be local to this process) 90316371a99SBarry Smith . ncols - number of columns 90416371a99SBarry Smith . cols - columns with nonzeros 90516371a99SBarry Smith . dnz - the array that will be passed to the matrix preallocation routines 90616371a99SBarry Smith - ozn - the other array passed to the matrix preallocation routines 90716371a99SBarry Smith 90816371a99SBarry Smith Level: intermediate 90916371a99SBarry Smith 91016371a99SBarry Smith Notes: 911a7f22e61SSatish Balay See Users-Manual: ch_performance for more details. 91216371a99SBarry Smith 91316371a99SBarry Smith Do not malloc or free dnz and onz that is handled internally by these routines 91416371a99SBarry Smith 91516371a99SBarry Smith This is a MACRO not a function because it uses a bunch of variables private to the MatPreallocation.... routines. 91616371a99SBarry Smith 91716371a99SBarry Smith Concepts: preallocation^Matrix 91816371a99SBarry Smith 919d6e23781SBarry Smith .seealso: MatPreallocateInitialize(), MatPreallocateSet(), MatPreallocateSymmetricSetBlock(), MatPreallocateSetLocal(), 920d6e23781SBarry Smith MatPreallocateSymmetricSetLocalBlock() 92116371a99SBarry Smith M*/ 9220298fd71SBarry Smith #define MatPreallocateLocation(A,row,ncols,cols,dnz,onz) 0;if (A) {ierr = MatSetValues(A,1,&row,ncols,cols,NULL,INSERT_VALUES);CHKERRQ(ierr);} else {ierr = MatPreallocateSet(row,ncols,cols,dnz,onz);CHKERRQ(ierr);} 92316371a99SBarry Smith 92416371a99SBarry Smith 92516371a99SBarry Smith /*MC 9260d2a7ff2SSatish Balay MatPreallocateFinalize - Ends the block of code that will count the number of nonzeros per 927bd481603SBarry Smith row in a matrix providing the data that one can use to correctly preallocate the matrix. 928bd481603SBarry Smith 929bd481603SBarry Smith Synopsis: 930aaa7dc30SBarry Smith #include <petscmat.h> 931c1ac3661SBarry Smith PetscErrorCode MatPreallocateFinalize(PetscInt *dnz, PetscInt *onz) 932bd481603SBarry Smith 933bd481603SBarry Smith Collective on MPI_Comm 934bd481603SBarry Smith 935bd481603SBarry Smith Input Parameters: 93616371a99SBarry Smith + dnz - the array that was be passed to the matrix preallocation routines 937bd481603SBarry Smith - ozn - the other array passed to the matrix preallocation routines 938bd481603SBarry Smith 939bd481603SBarry Smith Level: intermediate 940bd481603SBarry Smith 941bd481603SBarry Smith Notes: 942a7f22e61SSatish Balay See Users-Manual: ch_performance for more details. 943bd481603SBarry Smith 944bd481603SBarry Smith Do not malloc or free dnz and onz that is handled internally by these routines 945bd481603SBarry Smith 9461620fd73SBarry Smith This is a MACRO not a function because it closes the { started in MatPreallocateInitialize(). 9471620fd73SBarry Smith 948bd481603SBarry Smith Concepts: preallocation^Matrix 949bd481603SBarry Smith 950d6e23781SBarry Smith .seealso: MatPreallocateInitialize(), MatPreallocateSet(), MatPreallocateSymmetricSetBlock(), MatPreallocateSetLocal(), 951d6e23781SBarry Smith MatPreallocateSymmetricSetLocalBlock() 952bd481603SBarry Smith M*/ 953a89bc211SBarry Smith #define MatPreallocateFinalize(dnz,onz) 0;_4_ierr = PetscFree2(dnz,onz);CHKERRQ(_4_ierr);} 9547c922b88SBarry Smith 9557b80b807SBarry Smith /* Routines unique to particular data structures */ 956014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatShellGetContext(Mat,void *); 957698d4c6aSKris Buschelman 958014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatInodeAdjustForInodes(Mat,IS*,IS*); 959014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatInodeGetInodeSizes(Mat,PetscInt *,PetscInt *[],PetscInt *); 960698d4c6aSKris Buschelman 961014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqAIJSetColumnIndices(Mat,PetscInt[]); 962014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqBAIJSetColumnIndices(Mat,PetscInt[]); 963014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqAIJWithArrays(MPI_Comm,PetscInt,PetscInt,PetscInt[],PetscInt[],PetscScalar[],Mat*); 964014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqBAIJWithArrays(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt[],PetscInt[],PetscScalar[],Mat*); 965014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqSBAIJWithArrays(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt[],PetscInt[],PetscScalar[],Mat*); 966014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqAIJFromTriple(MPI_Comm,PetscInt,PetscInt,PetscInt[],PetscInt[],PetscScalar[],Mat*,PetscInt,PetscBool); 9677b80b807SBarry Smith 968a96a251dSBarry Smith #define MAT_SKIP_ALLOCATION -4 969a96a251dSBarry Smith 970014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqBAIJSetPreallocation(Mat,PetscInt,PetscInt,const PetscInt[]); 971014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqSBAIJSetPreallocation(Mat,PetscInt,PetscInt,const PetscInt[]); 972014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqAIJSetPreallocation(Mat,PetscInt,const PetscInt[]); 973273d9f13SBarry Smith 974014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIBAIJSetPreallocation(Mat,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[]); 975014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPISBAIJSetPreallocation(Mat,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[]); 976014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIAIJSetPreallocation(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[]); 977014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqAIJSetPreallocationCSR(Mat,const PetscInt [],const PetscInt [],const PetscScalar []); 978014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqBAIJSetPreallocationCSR(Mat,PetscInt,const PetscInt[],const PetscInt[],const PetscScalar[]); 979014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIAIJSetPreallocationCSR(Mat,const PetscInt[],const PetscInt[],const PetscScalar[]); 980014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIBAIJSetPreallocationCSR(Mat,PetscInt,const PetscInt[],const PetscInt[],const PetscScalar[]); 981014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIAdjSetPreallocation(Mat,PetscInt[],PetscInt[],PetscInt[]); 982014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIDenseSetPreallocation(Mat,PetscScalar[]); 983014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqDenseSetPreallocation(Mat,PetscScalar[]); 9849230625dSJed Brown PETSC_EXTERN PetscErrorCode MatMPIAIJGetSeqAIJ(Mat,Mat*,Mat*,const PetscInt*[]); 9859230625dSJed Brown PETSC_EXTERN PetscErrorCode MatMPIBAIJGetSeqBAIJ(Mat,Mat*,Mat*,const PetscInt*[]); 986014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIAdjCreateNonemptySubcommMat(Mat,Mat*); 987273d9f13SBarry Smith 9882e1947a5SStefano Zampini PETSC_EXTERN PetscErrorCode MatISSetPreallocation(Mat,PetscInt,const PetscInt[],PetscInt,const PetscInt[]); 989cf0a3239SStefano Zampini PETSC_EXTERN PetscErrorCode MatISSetUpSF(Mat); 990014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqDenseSetLDA(Mat,PetscInt); 991014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDenseGetLocalMatrix(Mat,Mat*); 9921b807ce4Svictorle 993014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatStoreValues(Mat); 994014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatRetrieveValues(Mat); 9952e8a6d31SBarry Smith 996014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDAADSetCtx(Mat,void*); 9973a7fca6bSBarry Smith 998014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFindNonzeroRows(Mat,IS*); 9997cfe41e4SPatrick Farrell PETSC_EXTERN PetscErrorCode MatFindZeroRows(Mat,IS*); 10007b80b807SBarry Smith /* 10017b80b807SBarry Smith These routines are not usually accessed directly, rather solving is 100294b7f48cSBarry Smith done through the KSP and PC interfaces. 10037b80b807SBarry Smith */ 10047b80b807SBarry Smith 100576bdecfbSBarry Smith /*J 10068f6c3df8SBarry Smith MatOrderingType - String with the name of a PETSc matrix ordering 1007d9274352SBarry Smith 1008d9274352SBarry Smith Level: beginner 1009d9274352SBarry Smith 1010d9274352SBarry Smith .seealso: MatGetOrdering() 101176bdecfbSBarry Smith J*/ 101219fd82e9SBarry Smith typedef const char* MatOrderingType; 10132692d6eeSBarry Smith #define MATORDERINGNATURAL "natural" 10142692d6eeSBarry Smith #define MATORDERINGND "nd" 10152692d6eeSBarry Smith #define MATORDERING1WD "1wd" 10162692d6eeSBarry Smith #define MATORDERINGRCM "rcm" 10172692d6eeSBarry Smith #define MATORDERINGQMD "qmd" 10182692d6eeSBarry Smith #define MATORDERINGROWLENGTH "rowlength" 1019510184a7SJed Brown #define MATORDERINGWBM "wbm" 1020fc1bef75SJed Brown #define MATORDERINGSPECTRAL "spectral" 1021312e372aSBarry Smith #define MATORDERINGAMD "amd" /* only works if UMFPACK is installed with PETSc */ 1022b12f92e5SBarry Smith 102319fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatGetOrdering(Mat,MatOrderingType,IS*,IS*); 1024140e18c1SBarry Smith PETSC_EXTERN PetscErrorCode MatGetOrderingList(PetscFunctionList*); 1025bdf89e91SBarry Smith PETSC_EXTERN PetscErrorCode MatOrderingRegister(const char[],PetscErrorCode(*)(Mat,MatOrderingType,IS*,IS*)); 1026140e18c1SBarry Smith PETSC_EXTERN PetscFunctionList MatOrderingList; 1027d4fbbf0eSBarry Smith 1028014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatReorderForNonzeroDiagonal(Mat,PetscReal,IS,IS); 1029fc1bef75SJed Brown PETSC_EXTERN PetscErrorCode MatCreateLaplacian(Mat,PetscReal,PetscBool,Mat*); 1030a2ce50c7SBarry Smith 1031d91e6319SBarry Smith /*S 1032d90ac83dSHong Zhang MatFactorShiftType - Numeric Shift. 1033d90ac83dSHong Zhang 1034d90ac83dSHong Zhang Level: beginner 1035d90ac83dSHong Zhang 1036d90ac83dSHong Zhang S*/ 1037d90ac83dSHong Zhang typedef enum {MAT_SHIFT_NONE,MAT_SHIFT_NONZERO,MAT_SHIFT_POSITIVE_DEFINITE,MAT_SHIFT_INBLOCKS} MatFactorShiftType; 10386a6fc655SJed Brown PETSC_EXTERN const char *const MatFactorShiftTypes[]; 10395e9742b9SJed Brown PETSC_EXTERN const char *const MatFactorShiftTypesDetail[]; 1040d90ac83dSHong Zhang 1041d90ac83dSHong Zhang /*S 10429aa7eafdSHong Zhang MatFactorError - indicates what type of error in matrix factor 10439aa7eafdSHong Zhang 10449aa7eafdSHong Zhang Level: beginner 10459aa7eafdSHong Zhang 104600e125f8SBarry Smith Developer Notes: Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 104700e125f8SBarry Smith 104800e125f8SBarry Smith .seealso: MatGetFactor() 10499aa7eafdSHong Zhang S*/ 10505cd7cf9dSHong Zhang typedef enum {MAT_FACTOR_NOERROR,MAT_FACTOR_STRUCT_ZEROPIVOT,MAT_FACTOR_NUMERIC_ZEROPIVOT,MAT_FACTOR_OUTMEMORY,MAT_FACTOR_OTHER} MatFactorError; 10519aa7eafdSHong Zhang 105200e125f8SBarry Smith PETSC_EXTERN PetscErrorCode MatFactorGetError(Mat,MatFactorError*); 1053b8b68cfdSBarry Smith PETSC_EXTERN PetscErrorCode MatFactorClearError(Mat); 10547b6c816cSBarry Smith PETSC_EXTERN PetscErrorCode MatFactorGetErrorZeroPivot(Mat,PetscReal*,PetscInt*); 105500e125f8SBarry Smith 10569aa7eafdSHong Zhang /*S 1057422a814eSBarry Smith MatFactorInfo - Data passed into the matrix factorization routines, and information about the resulting factorization 1058b00f7748SHong Zhang 105961cad860SBarry Smith In Fortran these are simply double precision arrays of size MAT_FACTORINFO_SIZE, that is use 106061cad860SBarry Smith $ MatFactorInfo info(MAT_FACTORINFO_SIZE) 1061b00f7748SHong Zhang 106215e8a5b3SHong Zhang Notes: These are not usually directly used by users, instead use PC type of LU, ILU, CHOLESKY or ICC. 1063b00f7748SHong Zhang 106461cad860SBarry Smith You can use MatFactorInfoInitialize() to set default values. 106561cad860SBarry Smith 1066b00f7748SHong Zhang Level: developer 1067b00f7748SHong Zhang 1068d7d82daaSBarry Smith .seealso: MatLUFactorSymbolic(), MatILUFactorSymbolic(), MatCholeskyFactorSymbolic(), MatICCFactorSymbolic(), MatICCFactor(), 1069d7d82daaSBarry Smith MatFactorInfoInitialize() 1070b00f7748SHong Zhang 1071b00f7748SHong Zhang S*/ 1072b00f7748SHong Zhang typedef struct { 107315e8a5b3SHong Zhang PetscReal diagonal_fill; /* force diagonal to fill in if initially not filled */ 107485317021SBarry Smith PetscReal usedt; 107515e8a5b3SHong Zhang PetscReal dt; /* drop tolerance */ 1076b00f7748SHong Zhang PetscReal dtcol; /* tolerance for pivoting */ 107715e8a5b3SHong Zhang PetscReal dtcount; /* maximum nonzeros to be allowed per row */ 107867e28bfeSBarry Smith PetscReal fill; /* expected fill, nonzeros in factored matrix/nonzeros in original matrix */ 1079348344bbSBarry Smith PetscReal levels; /* ICC/ILU(levels) */ 1080bcd9e38bSBarry Smith PetscReal pivotinblocks; /* for BAIJ and SBAIJ matrices pivot in factorization on blocks, default 1.0 1081bcd9e38bSBarry Smith factorization may be faster if do not pivot */ 108215e8a5b3SHong Zhang PetscReal zeropivot; /* pivot is called zero if less than this */ 1083f4db908eSBarry Smith PetscReal shifttype; /* type of shift added to matrix factor to prevent zero pivots */ 1084f4db908eSBarry Smith PetscReal shiftamount; /* how large the shift is */ 108515e8a5b3SHong Zhang } MatFactorInfo; 1086ffa6d0a5SLois Curfman McInnes 1087014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFactorInfoInitialize(MatFactorInfo*); 10889a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatCholeskyFactor(Mat,IS,const MatFactorInfo*); 10899a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatCholeskyFactorSymbolic(Mat,Mat,IS,const MatFactorInfo*); 10909a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatCholeskyFactorNumeric(Mat,Mat,const MatFactorInfo*); 10919a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatLUFactor(Mat,IS,IS,const MatFactorInfo*); 10929a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatILUFactor(Mat,IS,IS,const MatFactorInfo*); 10939a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatLUFactorSymbolic(Mat,Mat,IS,IS,const MatFactorInfo*); 10949a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatILUFactorSymbolic(Mat,Mat,IS,IS,const MatFactorInfo*); 10959a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatICCFactorSymbolic(Mat,Mat,IS,const MatFactorInfo*); 10969a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatICCFactor(Mat,IS,const MatFactorInfo*); 10979a625307SHong Zhang PETSC_EXTERN PetscErrorCode MatLUFactorNumeric(Mat,Mat,const MatFactorInfo*); 1098014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetInertia(Mat,PetscInt*,PetscInt*,PetscInt*); 1099014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSolve(Mat,Vec,Vec); 1100014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatForwardSolve(Mat,Vec,Vec); 1101014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatBackwardSolve(Mat,Vec,Vec); 1102014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSolveAdd(Mat,Vec,Vec,Vec); 1103014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSolveTranspose(Mat,Vec,Vec); 1104014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSolveTransposeAdd(Mat,Vec,Vec,Vec); 1105014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSolves(Mat,Vecs,Vecs); 11068e7ba810SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorSetSchurIS(Mat,IS); 11075a05ddb0SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorGetSchurComplement(Mat,Mat*); 11085a05ddb0SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorRestoreSchurComplement(Mat,Mat*); 11095a05ddb0SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorInvertSchurComplement(Mat); 11105a05ddb0SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorCreateSchurComplement(Mat,Mat*); 11115a05ddb0SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorSolveSchurComplement(Mat,Vec,Vec); 11125a05ddb0SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorSolveSchurComplementTranspose(Mat,Vec,Vec); 11136dba178dSStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorFactorizeSchurComplement(Mat); 1114e8ade678SStefano Zampini PETSC_EXTERN PetscErrorCode MatFactorSetSchurComplementSolverType(Mat,PetscInt); 1115014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetUnfactored(Mat); 1116bb5a7306SBarry Smith 1117d91e6319SBarry Smith /*E 1118d91e6319SBarry Smith MatSORType - What type of (S)SOR to perform 1119bb1eb677SSatish Balay 1120d91e6319SBarry Smith Level: beginner 1121d91e6319SBarry Smith 1122d9274352SBarry Smith May be bitwise ORd together 1123d9274352SBarry Smith 1124af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 1125d91e6319SBarry Smith 11264e7234bfSBarry Smith MatSORType may be bitwise ORd together, so do not change the numbers 11274e7234bfSBarry Smith 112841f059aeSBarry Smith .seealso: MatSOR() 1129d91e6319SBarry Smith E*/ 1130ee50ffe9SBarry Smith typedef enum {SOR_FORWARD_SWEEP=1,SOR_BACKWARD_SWEEP=2,SOR_SYMMETRIC_SWEEP=3, 1131ee50ffe9SBarry Smith SOR_LOCAL_FORWARD_SWEEP=4,SOR_LOCAL_BACKWARD_SWEEP=8, 1132ee50ffe9SBarry Smith SOR_LOCAL_SYMMETRIC_SWEEP=12,SOR_ZERO_INITIAL_GUESS=16, 113384cb2905SBarry Smith SOR_EISENSTAT=32,SOR_APPLY_UPPER=64,SOR_APPLY_LOWER=128} MatSORType; 1134014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSOR(Mat,Vec,PetscReal,MatSORType,PetscReal,PetscInt,PetscInt,Vec); 11358ed539a5SBarry Smith 1136d4fbbf0eSBarry Smith /* 1137639f9d9dSBarry Smith These routines are for efficiently computing Jacobians via finite differences. 1138639f9d9dSBarry Smith */ 1139b12f92e5SBarry Smith 11407086a01eSPeter Brune /*S 11417086a01eSPeter Brune MatColoring - Object for managing the coloring of matrices. 11427086a01eSPeter Brune 11437086a01eSPeter Brune Level: beginner 11447086a01eSPeter Brune 11457086a01eSPeter Brune Concepts: matrix, coloring 11467086a01eSPeter Brune 11477086a01eSPeter Brune .seealso: MatFDColoringCreate() ISColoring MatFDColoring 11487086a01eSPeter Brune S*/ 11497086a01eSPeter Brune typedef struct _p_MatColoring* MatColoring; 115076bdecfbSBarry Smith /*J 11518f6c3df8SBarry Smith MatColoringType - String with the name of a PETSc matrix coloring 1152d9274352SBarry Smith 1153d9274352SBarry Smith Level: beginner 1154d9274352SBarry Smith 11557086a01eSPeter Brune .seealso: MatColoringSetType(), MatColoring 115676bdecfbSBarry Smith J*/ 11577086a01eSPeter Brune 115819fd82e9SBarry Smith typedef const char* MatColoringType; 11595567d71aSPeter Brune #define MATCOLORINGJP "jp" 1160b9acb617SPeter Brune #define MATCOLORINGPOWER "power" 11612692d6eeSBarry Smith #define MATCOLORINGNATURAL "natural" 11622692d6eeSBarry Smith #define MATCOLORINGSL "sl" 11632692d6eeSBarry Smith #define MATCOLORINGLF "lf" 11642692d6eeSBarry Smith #define MATCOLORINGID "id" 11658121bdceSPeter Brune #define MATCOLORINGGREEDY "greedy" 1166b12f92e5SBarry Smith 11678ac6da0aSPeter Brune /*E 11688ac6da0aSPeter Brune MatColoringWeightType - Type of weight scheme 11698ac6da0aSPeter Brune 11708ac6da0aSPeter Brune Not Collective 11718ac6da0aSPeter Brune 11728ac6da0aSPeter Brune + MAT_COLORING_RANDOM - Random weights 11738ac6da0aSPeter Brune . MAT_COLORING_LEXICAL - Lexical weighting based upon global numbering. 11748ac6da0aSPeter Brune - MAT_COLORING_LF - Last-first weighting. 11758ac6da0aSPeter Brune 11768ac6da0aSPeter Brune Level: intermediate 11778ac6da0aSPeter Brune 1178af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 11798ac6da0aSPeter Brune 11808ac6da0aSPeter Brune .seealso: MatCUSPSetFormat(), MatCUSPFormatOperation 11818ac6da0aSPeter Brune E*/ 1182301c140bSPeter Brune typedef enum {MAT_COLORING_WEIGHT_RANDOM,MAT_COLORING_WEIGHT_LEXICAL,MAT_COLORING_WEIGHT_LF,MAT_COLORING_WEIGHT_SL} MatColoringWeightType; 11838ac6da0aSPeter Brune 1184335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringCreate(Mat,MatColoring*); 1185d7f2a307SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringGetDegrees(Mat,PetscInt,PetscInt*); 1186335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringDestroy(MatColoring*); 1187335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringView(MatColoring,PetscViewer); 1188335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringSetType(MatColoring,MatColoringType); 1189335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringSetFromOptions(MatColoring); 1190335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringSetDistance(MatColoring,PetscInt); 1191335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringGetDistance(MatColoring,PetscInt*); 1192335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringSetMaxColors(MatColoring,PetscInt); 1193335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringGetMaxColors(MatColoring,PetscInt*); 1194335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringApply(MatColoring,ISColoring*); 1195335efc43SPeter Brune PETSC_EXTERN PetscErrorCode MatColoringRegister(const char[],PetscErrorCode(*)(MatColoring)); 1196014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatColoringPatch(Mat,PetscInt,PetscInt,ISColoringValue[],ISColoring*); 11978ac6da0aSPeter Brune PETSC_EXTERN PetscErrorCode MatColoringSetWeightType(MatColoring,MatColoringWeightType); 1198c29971fcSPeter Brune PETSC_EXTERN PetscErrorCode MatColoringSetWeights(MatColoring,PetscReal*,PetscInt*); 11998ac6da0aSPeter Brune PETSC_EXTERN PetscErrorCode MatColoringCreateWeights(MatColoring,PetscReal **,PetscInt **lperm); 1200cb394dc5SBarry Smith PETSC_EXTERN PetscErrorCode MatColoringTestValid(MatColoring,ISColoring); 1201639f9d9dSBarry Smith 1202d9274352SBarry Smith /*S 1203d9274352SBarry Smith MatFDColoring - Object for computing a sparse Jacobian via finite differences 1204d9274352SBarry Smith and coloring 1205639f9d9dSBarry Smith 1206d9274352SBarry Smith Level: beginner 1207d9274352SBarry Smith 1208d9274352SBarry Smith Concepts: coloring, sparse Jacobian, finite differences 1209d9274352SBarry Smith 1210d9274352SBarry Smith .seealso: MatFDColoringCreate() 1211d9274352SBarry Smith S*/ 1212e2a1c21fSSatish Balay typedef struct _p_MatFDColoring* MatFDColoring; 1213639f9d9dSBarry Smith 1214014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringCreate(Mat,ISColoring,MatFDColoring *); 1215014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringDestroy(MatFDColoring*); 1216014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringView(MatFDColoring,PetscViewer); 1217014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringSetFunction(MatFDColoring,PetscErrorCode (*)(void),void*); 1218014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringGetFunction(MatFDColoring,PetscErrorCode (**)(void),void**); 1219014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringSetParameters(MatFDColoring,PetscReal,PetscReal); 1220014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringSetFromOptions(MatFDColoring); 1221d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode MatFDColoringApply(Mat,MatFDColoring,Vec,void *); 1222014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringSetF(MatFDColoring,Vec); 1223014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatFDColoringGetPerturbedColumns(MatFDColoring,PetscInt*,PetscInt*[]); 1224f86b9fbaSHong Zhang PETSC_EXTERN PetscErrorCode MatFDColoringSetUp(Mat,ISColoring,MatFDColoring); 1225f86b9fbaSHong Zhang PETSC_EXTERN PetscErrorCode MatFDColoringSetBlockSize(MatFDColoring,PetscInt,PetscInt); 1226f86b9fbaSHong Zhang 1227b1683b59SHong Zhang 1228b1683b59SHong Zhang /*S 1229b9af6bddSHong Zhang MatTransposeColoring - Object for computing a sparse matrix product C=A*B^T via coloring 1230b1683b59SHong Zhang 1231b1683b59SHong Zhang Level: beginner 1232b1683b59SHong Zhang 1233b1683b59SHong Zhang Concepts: coloring, sparse matrix product 1234b1683b59SHong Zhang 1235b9af6bddSHong Zhang .seealso: MatTransposeColoringCreate() 1236b1683b59SHong Zhang S*/ 1237b9af6bddSHong Zhang typedef struct _p_MatTransposeColoring* MatTransposeColoring; 1238b1683b59SHong Zhang 1239014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTransposeColoringCreate(Mat,ISColoring,MatTransposeColoring *); 1240014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTransColoringApplySpToDen(MatTransposeColoring,Mat,Mat); 1241014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTransColoringApplyDenToSp(MatTransposeColoring,Mat,Mat); 1242014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatTransposeColoringDestroy(MatTransposeColoring*); 1243b1683b59SHong Zhang 1244639f9d9dSBarry Smith /* 12450752156aSBarry Smith These routines are for partitioning matrices: currently used only 12463eda8832SBarry Smith for adjacency matrix, MatCreateMPIAdj(). 12470752156aSBarry Smith */ 1248ca161407SBarry Smith 1249d9274352SBarry Smith /*S 1250d9274352SBarry Smith MatPartitioning - Object for managing the partitioning of a matrix or graph 1251d9274352SBarry Smith 1252d9274352SBarry Smith Level: beginner 1253d9274352SBarry Smith 1254d9274352SBarry Smith Concepts: partitioning 1255d9274352SBarry Smith 1256743a1026Svictorle .seealso: MatPartitioningCreate(), MatPartitioningType 1257d9274352SBarry Smith S*/ 125891e9ee9fSBarry Smith typedef struct _p_MatPartitioning* MatPartitioning; 1259d9274352SBarry Smith 126076bdecfbSBarry Smith /*J 12618f6c3df8SBarry Smith MatPartitioningType - String with the name of a PETSc matrix partitioning 1262d9274352SBarry Smith 1263d9274352SBarry Smith Level: beginner 12640d04baf8SBarry Smith dm 1265b547a13bSvictorle .seealso: MatPartitioningCreate(), MatPartitioning 126676bdecfbSBarry Smith J*/ 126719fd82e9SBarry Smith typedef const char* MatPartitioningType; 12682692d6eeSBarry Smith #define MATPARTITIONINGCURRENT "current" 1269aa1e27eaSFande Kong #define MATPARTITIONINGAVERAGE "average" 12702692d6eeSBarry Smith #define MATPARTITIONINGSQUARE "square" 12712692d6eeSBarry Smith #define MATPARTITIONINGPARMETIS "parmetis" 12722692d6eeSBarry Smith #define MATPARTITIONINGCHACO "chaco" 12732692d6eeSBarry Smith #define MATPARTITIONINGPARTY "party" 127450d91057SBarry Smith #define MATPARTITIONINGPTSCOTCH "ptscotch" 127588d2ac2bSFande Kong #define MATPARTITIONINGHIERARCH "hierarch" 127671306c60Sjroman 1277ca161407SBarry Smith 1278014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningCreate(MPI_Comm,MatPartitioning*); 127919fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatPartitioningSetType(MatPartitioning,MatPartitioningType); 1280014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningSetNParts(MatPartitioning,PetscInt); 1281014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningSetAdjacency(MatPartitioning,Mat); 1282014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningSetVertexWeights(MatPartitioning,const PetscInt[]); 1283014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningSetPartitionWeights(MatPartitioning,const PetscReal []); 1284014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningApply(MatPartitioning,IS*); 1285014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningDestroy(MatPartitioning*); 12862aabb6bbSBarry Smith 1287bdf89e91SBarry Smith PETSC_EXTERN PetscErrorCode MatPartitioningRegister(const char[],PetscErrorCode (*)(MatPartitioning)); 128830de9b25SBarry Smith 1289f1144a30SSatish Balay 12902bad1931SBarry Smith 1291014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningView(MatPartitioning,PetscViewer); 1292014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningSetFromOptions(MatPartitioning); 129319fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatPartitioningGetType(MatPartitioning,MatPartitioningType*); 1294ca161407SBarry Smith 129527538973SFande Kong PETSC_EXTERN PetscErrorCode MatPartitioningParmetisSetRepartition(MatPartitioning part); 1296014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningParmetisSetCoarseSequential(MatPartitioning); 1297014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningParmetisGetEdgeCut(MatPartitioning, PetscInt *); 12980752156aSBarry Smith 1299b6956c12SJose Roman typedef enum { MP_CHACO_MULTILEVEL=1,MP_CHACO_SPECTRAL=2,MP_CHACO_LINEAR=4,MP_CHACO_RANDOM=5,MP_CHACO_SCATTERED=6 } MPChacoGlobalType; 13006a6fc655SJed Brown PETSC_EXTERN const char *const MPChacoGlobalTypes[]; 1301b6956c12SJose Roman typedef enum { MP_CHACO_KERNIGHAN=1,MP_CHACO_NONE=2 } MPChacoLocalType; 13026a6fc655SJed Brown PETSC_EXTERN const char *const MPChacoLocalTypes[]; 1303b6956c12SJose Roman typedef enum { MP_CHACO_LANCZOS=0,MP_CHACO_RQI=1 } MPChacoEigenType; 13046a6fc655SJed Brown PETSC_EXTERN const char *const MPChacoEigenTypes[]; 1305b6956c12SJose Roman 1306014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoSetGlobal(MatPartitioning,MPChacoGlobalType); 1307014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoGetGlobal(MatPartitioning,MPChacoGlobalType*); 1308014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoSetLocal(MatPartitioning,MPChacoLocalType); 1309014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoGetLocal(MatPartitioning,MPChacoLocalType*); 1310014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoSetCoarseLevel(MatPartitioning,PetscReal); 1311014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoSetEigenSolver(MatPartitioning,MPChacoEigenType); 1312014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoGetEigenSolver(MatPartitioning,MPChacoEigenType*); 1313014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoSetEigenTol(MatPartitioning,PetscReal); 1314014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoGetEigenTol(MatPartitioning,PetscReal*); 1315014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoSetEigenNumber(MatPartitioning,PetscInt); 1316014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningChacoGetEigenNumber(MatPartitioning,PetscInt*); 131771306c60Sjroman 131871306c60Sjroman #define MP_PARTY_OPT "opt" 131971306c60Sjroman #define MP_PARTY_LIN "lin" 132071306c60Sjroman #define MP_PARTY_SCA "sca" 132171306c60Sjroman #define MP_PARTY_RAN "ran" 132271306c60Sjroman #define MP_PARTY_GBF "gbf" 132371306c60Sjroman #define MP_PARTY_GCF "gcf" 132471306c60Sjroman #define MP_PARTY_BUB "bub" 132571306c60Sjroman #define MP_PARTY_DEF "def" 1326014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPartySetGlobal(MatPartitioning,const char*); 132771306c60Sjroman #define MP_PARTY_HELPFUL_SETS "hs" 132871306c60Sjroman #define MP_PARTY_KERNIGHAN_LIN "kl" 132971306c60Sjroman #define MP_PARTY_NONE "no" 1330014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPartySetLocal(MatPartitioning,const char*); 1331014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPartySetCoarseLevel(MatPartitioning,PetscReal); 1332014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPartySetBipart(MatPartitioning,PetscBool); 1333014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPartySetMatchOptimization(MatPartitioning,PetscBool); 133471306c60Sjroman 133550d91057SBarry Smith typedef enum { MP_PTSCOTCH_QUALITY,MP_PTSCOTCH_SPEED,MP_PTSCOTCH_BALANCE,MP_PTSCOTCH_SAFETY,MP_PTSCOTCH_SCALABILITY } MPPTScotchStrategyType; 13366a6fc655SJed Brown PETSC_EXTERN const char *const MPPTScotchStrategyTypes[]; 1337e0f1cffaSJose Roman 1338014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPTScotchSetImbalance(MatPartitioning,PetscReal); 1339014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPTScotchGetImbalance(MatPartitioning,PetscReal*); 1340014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPTScotchSetStrategy(MatPartitioning,MPPTScotchStrategyType); 1341014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatPartitioningPTScotchGetStrategy(MatPartitioning,MPPTScotchStrategyType*); 134271306c60Sjroman 1343b43b03e9SMark F. Adams /* 13446294fa2bSFande Kong * hierarchical partitioning 13456294fa2bSFande Kong */ 13464e713f55SFande Kong PETSC_EXTERN PetscErrorCode MatPartitioningHierarchicalGetFineparts(MatPartitioning,IS*); 13474e713f55SFande Kong PETSC_EXTERN PetscErrorCode MatPartitioningHierarchicalGetCoarseparts(MatPartitioning,IS*); 13484e713f55SFande Kong PETSC_EXTERN PetscErrorCode MatPartitioningHierarchicalSetNcoarseparts(MatPartitioning,PetscInt); 13494e713f55SFande Kong PETSC_EXTERN PetscErrorCode MatPartitioningHierarchicalSetNfineparts(MatPartitioning, PetscInt); 13506294fa2bSFande Kong 1351014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMeshToVertexGraph(Mat,PetscInt,Mat*); 1352014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMeshToCellGraph(Mat,PetscInt,Mat*); 1353591294e4SBarry Smith 13540752156aSBarry Smith /* 1355af0996ceSBarry Smith If you add entries here you must also add them to petsc/finclude/petscmat.h 1356d4fbbf0eSBarry Smith */ 13571c1c02c0SLois Curfman McInnes typedef enum { MATOP_SET_VALUES=0, 13581c1c02c0SLois Curfman McInnes MATOP_GET_ROW=1, 13591c1c02c0SLois Curfman McInnes MATOP_RESTORE_ROW=2, 13601c1c02c0SLois Curfman McInnes MATOP_MULT=3, 13611c1c02c0SLois Curfman McInnes MATOP_MULT_ADD=4, 13627c922b88SBarry Smith MATOP_MULT_TRANSPOSE=5, 13637c922b88SBarry Smith MATOP_MULT_TRANSPOSE_ADD=6, 13641c1c02c0SLois Curfman McInnes MATOP_SOLVE=7, 13651c1c02c0SLois Curfman McInnes MATOP_SOLVE_ADD=8, 13667c922b88SBarry Smith MATOP_SOLVE_TRANSPOSE=9, 13677c922b88SBarry Smith MATOP_SOLVE_TRANSPOSE_ADD=10, 13681c1c02c0SLois Curfman McInnes MATOP_LUFACTOR=11, 13691c1c02c0SLois Curfman McInnes MATOP_CHOLESKYFACTOR=12, 1370a714c06dSBarry Smith MATOP_SOR=13, 13711c1c02c0SLois Curfman McInnes MATOP_TRANSPOSE=14, 13721c1c02c0SLois Curfman McInnes MATOP_GETINFO=15, 13731c1c02c0SLois Curfman McInnes MATOP_EQUAL=16, 13741c1c02c0SLois Curfman McInnes MATOP_GET_DIAGONAL=17, 13751c1c02c0SLois Curfman McInnes MATOP_DIAGONAL_SCALE=18, 13761c1c02c0SLois Curfman McInnes MATOP_NORM=19, 13771c1c02c0SLois Curfman McInnes MATOP_ASSEMBLY_BEGIN=20, 13781c1c02c0SLois Curfman McInnes MATOP_ASSEMBLY_END=21, 1379d519adbfSMatthew Knepley MATOP_SET_OPTION=22, 1380d519adbfSMatthew Knepley MATOP_ZERO_ENTRIES=23, 1381d519adbfSMatthew Knepley MATOP_ZERO_ROWS=24, 1382d519adbfSMatthew Knepley MATOP_LUFACTOR_SYMBOLIC=25, 1383d519adbfSMatthew Knepley MATOP_LUFACTOR_NUMERIC=26, 1384d519adbfSMatthew Knepley MATOP_CHOLESKY_FACTOR_SYMBOLIC=27, 1385d519adbfSMatthew Knepley MATOP_CHOLESKY_FACTOR_NUMERIC=28, 1386d519adbfSMatthew Knepley MATOP_SETUP_PREALLOCATION=29, 1387d519adbfSMatthew Knepley MATOP_ILUFACTOR_SYMBOLIC=30, 1388d519adbfSMatthew Knepley MATOP_ICCFACTOR_SYMBOLIC=31, 1389a5b7ff6bSBarry Smith MATOP_GET_DIAGONAL_BLOCK=32, 13909d39f69dSJed Brown /* MATOP_PLACEHOLDER_33=33, */ 1391d519adbfSMatthew Knepley MATOP_DUPLICATE=34, 1392d519adbfSMatthew Knepley MATOP_FORWARD_SOLVE=35, 1393d519adbfSMatthew Knepley MATOP_BACKWARD_SOLVE=36, 1394d519adbfSMatthew Knepley MATOP_ILUFACTOR=37, 1395d519adbfSMatthew Knepley MATOP_ICCFACTOR=38, 1396d519adbfSMatthew Knepley MATOP_AXPY=39, 1397d519adbfSMatthew Knepley MATOP_GET_SUBMATRICES=40, 1398d519adbfSMatthew Knepley MATOP_INCREASE_OVERLAP=41, 1399d519adbfSMatthew Knepley MATOP_GET_VALUES=42, 1400d519adbfSMatthew Knepley MATOP_COPY=43, 1401d519adbfSMatthew Knepley MATOP_GET_ROW_MAX=44, 1402d519adbfSMatthew Knepley MATOP_SCALE=45, 1403d519adbfSMatthew Knepley MATOP_SHIFT=46, 140435153367SBarry Smith MATOP_DIAGONAL_SET=47, 14059d39f69dSJed Brown MATOP_ZERO_ROWS_COLUMNS=48, 14069d39f69dSJed Brown MATOP_SET_RANDOM=49, 1407d519adbfSMatthew Knepley MATOP_GET_ROW_IJ=50, 1408d519adbfSMatthew Knepley MATOP_RESTORE_ROW_IJ=51, 1409d519adbfSMatthew Knepley MATOP_GET_COLUMN_IJ=52, 1410d519adbfSMatthew Knepley MATOP_RESTORE_COLUMN_IJ=53, 1411d519adbfSMatthew Knepley MATOP_FDCOLORING_CREATE=54, 1412d519adbfSMatthew Knepley MATOP_COLORING_PATCH=55, 1413d519adbfSMatthew Knepley MATOP_SET_UNFACTORED=56, 1414d519adbfSMatthew Knepley MATOP_PERMUTE=57, 1415d519adbfSMatthew Knepley MATOP_SET_VALUES_BLOCKED=58, 1416d519adbfSMatthew Knepley MATOP_GET_SUBMATRIX=59, 1417d519adbfSMatthew Knepley MATOP_DESTROY=60, 1418d519adbfSMatthew Knepley MATOP_VIEW=61, 1419d519adbfSMatthew Knepley MATOP_CONVERT_FROM=62, 14207bab7c10SHong Zhang MATOP_MATMAT_MULT=63, 14217bab7c10SHong Zhang MATOP_MATMAT_MULT_SYMBOLIC=64, 14227bab7c10SHong Zhang MATOP_MATMAT_MULT_NUMERIC=65, 1423d519adbfSMatthew Knepley MATOP_SET_LOCAL_TO_GLOBAL_MAP=66, 1424d519adbfSMatthew Knepley MATOP_SET_VALUES_LOCAL=67, 1425d519adbfSMatthew Knepley MATOP_ZERO_ROWS_LOCAL=68, 1426d519adbfSMatthew Knepley MATOP_GET_ROW_MAX_ABS=69, 1427d519adbfSMatthew Knepley MATOP_GET_ROW_MIN_ABS=70, 1428d519adbfSMatthew Knepley MATOP_CONVERT=71, 1429d519adbfSMatthew Knepley MATOP_SET_COLORING=72, 14309d39f69dSJed Brown /* MATOP_PLACEHOLDER_73=73, */ 1431d519adbfSMatthew Knepley MATOP_SET_VALUES_ADIFOR=74, 1432d519adbfSMatthew Knepley MATOP_FD_COLORING_APPLY=75, 1433d519adbfSMatthew Knepley MATOP_SET_FROM_OPTIONS=76, 1434bda6c4cbSBarry Smith MATOP_MULT_CONSTRAINED=77, 1435bda6c4cbSBarry Smith MATOP_MULT_TRANSPOSE_CONSTRAIN=78, 14369d39f69dSJed Brown MATOP_FIND_ZERO_DIAGONALS=79, 1437d519adbfSMatthew Knepley MATOP_MULT_MULTIPLE=80, 1438d519adbfSMatthew Knepley MATOP_SOLVE_MULTIPLE=81, 1439d519adbfSMatthew Knepley MATOP_GET_INERTIA=82, 1440d519adbfSMatthew Knepley MATOP_LOAD=83, 1441d519adbfSMatthew Knepley MATOP_IS_SYMMETRIC=84, 1442d519adbfSMatthew Knepley MATOP_IS_HERMITIAN=85, 1443d519adbfSMatthew Knepley MATOP_IS_STRUCTURALLY_SYMMETRIC=86, 1444820469bcSHong Zhang MATOP_SET_VALUES_BLOCKEDLOCAL=87, 1445d519adbfSMatthew Knepley MATOP_GET_VECS=88, 1446d519adbfSMatthew Knepley MATOP_MAT_MULT=89, 1447d519adbfSMatthew Knepley MATOP_MAT_MULT_SYMBOLIC=90, 1448d519adbfSMatthew Knepley MATOP_MAT_MULT_NUMERIC=91, 1449d519adbfSMatthew Knepley MATOP_PTAP=92, 1450d519adbfSMatthew Knepley MATOP_PTAP_SYMBOLIC=93, 1451d519adbfSMatthew Knepley MATOP_PTAP_NUMERIC=94, 1452bda6c4cbSBarry Smith MATOP_MAT_TRANSPOSE_MULT=95, 1453bda6c4cbSBarry Smith MATOP_MAT_TRANSPOSE_MULT_SYMBO=96, 1454bda6c4cbSBarry Smith MATOP_MAT_TRANSPOSE_MULT_NUMER=97, 14559d39f69dSJed Brown /* MATOP_PLACEHOLDER_98=98, */ 14569d39f69dSJed Brown /* MATOP_PLACEHOLDER_99=99, */ 14579d39f69dSJed Brown /* MATOP_PLACEHOLDER_100=100, */ 14589d39f69dSJed Brown /* MATOP_PLACEHOLDER_101=101, */ 1459d519adbfSMatthew Knepley MATOP_CONJUGATE=102, 14609d39f69dSJed Brown /* MATOP_PLACEHOLDER_103=103, */ 1461d519adbfSMatthew Knepley MATOP_SET_VALUES_ROW=104, 1462d519adbfSMatthew Knepley MATOP_REAL_PART=105, 1463bda6c4cbSBarry Smith MATOP_IMAGINARY_PART=106, 1464bda6c4cbSBarry Smith MATOP_GET_ROW_UPPER_TRIANGULAR=107, 1465bda6c4cbSBarry Smith MATOP_RESTORE_ROW_UPPER_TRIANG=108, 1466bda6c4cbSBarry Smith MATOP_MAT_SOLVE=109, 14670e8d04f7SBarry Smith MATOP_GET_REDUNDANT_MATRIX=110, 1468d519adbfSMatthew Knepley MATOP_GET_ROW_MIN=111, 14690e8d04f7SBarry Smith MATOP_GET_COLUMN_VECTOR=112, 1470d519adbfSMatthew Knepley MATOP_MISSING_DIAGONAL=113, 14710e8d04f7SBarry Smith MATOP_GET_SEQ_NONZERO_STRUCTUR=114, 147289c6957cSBarry Smith MATOP_CREATE=115, 147389c6957cSBarry Smith MATOP_GET_GHOSTS=116, 14740e8d04f7SBarry Smith MATOP_GET_LOCAL_SUB_MATRIX=117, 14750e8d04f7SBarry Smith MATOP_RESTORE_LOCALSUB_MATRIX=118, 1476eeffb40dSHong Zhang MATOP_MULT_DIAGONAL_BLOCK=119, 14770e8d04f7SBarry Smith MATOP_HERMITIAN_TRANSPOSE=120, 14780e8d04f7SBarry Smith MATOP_MULT_HERMITIAN_TRANSPOSE=121, 14790e8d04f7SBarry Smith MATOP_MULT_HERMITIAN_TRANS_ADD=122, 14800e8d04f7SBarry Smith MATOP_GET_MULTI_PROC_BLOCK=123, 14819d39f69dSJed Brown MATOP_FIND_NONZERO_ROWS=124, 14820e8d04f7SBarry Smith MATOP_GET_COLUMN_NORMS=125, 14839d39f69dSJed Brown MATOP_INVERT_BLOCK_DIAGONAL=126, 14849d39f69dSJed Brown /* MATOP_PLACEHOLDER_127=127, */ 14850e8d04f7SBarry Smith MATOP_GET_SUB_MATRICES_PARALLE=128, 14862b8ad9a3SHong Zhang MATOP_SET_VALUES_BATCH=129, 14870e8d04f7SBarry Smith MATOP_TRANSPOSE_MAT_MULT=130, 14880e8d04f7SBarry Smith MATOP_TRANSPOSE_MAT_MULT_SYMBO=131, 1489e9b602ebSSatish Balay MATOP_TRANSPOSE_MAT_MULT_NUMER=132, 14900e8d04f7SBarry Smith MATOP_TRANSPOSE_COLORING_CREAT=133, 14910e8d04f7SBarry Smith MATOP_TRANS_COLORING_APPLY_SPT=134, 14920e8d04f7SBarry Smith MATOP_TRANS_COLORING_APPLY_DEN=135, 14930e8d04f7SBarry Smith MATOP_RART=136, 14940e8d04f7SBarry Smith MATOP_RART_SYMBOLIC=137, 14950e8d04f7SBarry Smith MATOP_RART_NUMERIC=138, 1496e09a3074SHong Zhang MATOP_SET_BLOCK_SIZES=139, 1497f9426fe0SMark Adams MATOP_AYPX=140, 14981919a2e2SJed Brown MATOP_RESIDUAL=141, 14999c8f2541SHong Zhang MATOP_FDCOLORING_SETUP=142, 15009c8f2541SHong Zhang MATOP_MPICONCATENATESEQ=144 1501fae171e0SBarry Smith } MatOperation; 1502014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatHasOperation(Mat,MatOperation,PetscBool *); 1503014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatShellSetOperation(Mat,MatOperation,void(*)(void)); 1504014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatShellGetOperation(Mat,MatOperation,void(**)(void)); 1505014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatShellSetContext(Mat,void*); 1506112a2221SBarry Smith 150790ace30eSBarry Smith /* 150890ace30eSBarry Smith Codes for matrices stored on disk. By default they are 150990ace30eSBarry Smith stored in a universal format. By changing the format with 15106a9046bcSBarry Smith PetscViewerPushFormat(viewer,PETSC_VIEWER_NATIVE); the matrices will 151190ace30eSBarry Smith be stored in a way natural for the matrix, for example dense matrices 151290ace30eSBarry Smith would be stored as dense. Matrices stored this way may only be 1513f4403165SShri Abhyankar read into matrices of the same type. 151490ace30eSBarry Smith */ 151590ace30eSBarry Smith #define MATRIX_BINARY_FORMAT_DENSE -1 151690ace30eSBarry Smith 1517014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPIBAIJSetHashTableFactor(Mat,PetscReal); 1518014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatISGetLocalMat(Mat,Mat*); 1519014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatISSetLocalMat(Mat,Mat); 1520b7ce53b6SStefano Zampini PETSC_EXTERN PetscErrorCode MatISGetMPIXAIJ(Mat,MatReuse,Mat*); 15211f4e1ec7SBarry Smith 1522d9274352SBarry Smith /*S 1523d9274352SBarry Smith MatNullSpace - Object that removes a null space from a vector, i.e. 1524d9274352SBarry Smith orthogonalizes the vector to a subsapce 1525d9274352SBarry Smith 1526f7a9e4ceSBarry Smith Level: advanced 1527d9274352SBarry Smith 1528d9274352SBarry Smith Concepts: matrix; linear operator, null space 1529d9274352SBarry Smith 15306e1639daSBarry Smith Users manual sections: 15316e1639daSBarry Smith . sec_singular 15326e1639daSBarry Smith 1533d9274352SBarry Smith .seealso: MatNullSpaceCreate() 1534d9274352SBarry Smith S*/ 153574637425SBarry Smith typedef struct _p_MatNullSpace* MatNullSpace; 1536d9274352SBarry Smith 1537014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceCreate(MPI_Comm,PetscBool ,PetscInt,const Vec[],MatNullSpace*); 1538014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceSetFunction(MatNullSpace,PetscErrorCode (*)(MatNullSpace,Vec,void*),void*); 1539014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceDestroy(MatNullSpace*); 1540d0195637SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceRemove(MatNullSpace,Vec); 1541014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetNullSpace(Mat, MatNullSpace *); 15425fa7ec2dSBarry Smith PETSC_EXTERN PetscErrorCode MatGetTransposeNullSpace(Mat, MatNullSpace *); 15435fa7ec2dSBarry Smith PETSC_EXTERN PetscErrorCode MatSetTransposeNullSpace(Mat,MatNullSpace); 1544014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetNullSpace(Mat,MatNullSpace); 1545014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSetNearNullSpace(Mat,MatNullSpace); 1546014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatGetNearNullSpace(Mat,MatNullSpace*); 1547014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceTest(MatNullSpace,Mat,PetscBool *); 1548014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceView(MatNullSpace,PetscViewer); 1549014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceGetVecs(MatNullSpace,PetscBool*,PetscInt*,const Vec**); 1550014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNullSpaceCreateRigidBody(Vec,MatNullSpace*); 155174637425SBarry Smith 1552014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatReorderingSeqSBAIJ(Mat,IS); 1553014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMPISBAIJSetHashTableFactor(Mat,PetscReal); 1554014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqSBAIJSetColumnIndices(Mat,PetscInt *); 1555014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSeqBAIJInvertBlockDiagonal(Mat); 15563f1d51d7SBarry Smith 1557014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMAIJ(Mat,PetscInt,Mat*); 1558014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMAIJRedimension(Mat,PetscInt,Mat*); 1559014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMAIJGetAIJ(Mat,Mat*); 1560c4f061fbSSatish Balay 1561014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatComputeExplicitOperator(Mat,Mat*); 1562b0a32e0cSBarry Smith 1563014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatDiagonalScaleLocal(Mat,Vec); 156404f1ad80SBarry Smith 1565014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateMFFD(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,Mat*); 1566014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetBase(Mat,Vec,Vec); 1567014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetFunction(Mat,PetscErrorCode(*)(void*,Vec,Vec),void*); 1568014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetFunctioni(Mat,PetscErrorCode (*)(void*,PetscInt,Vec,PetscScalar*)); 1569014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetFunctioniBase(Mat,PetscErrorCode (*)(void*,Vec)); 1570014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetHHistory(Mat,PetscScalar[],PetscInt); 1571014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDResetHHistory(Mat); 1572014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetFunctionError(Mat,PetscReal); 1573014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetPeriod(Mat,PetscInt); 1574014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDGetH(Mat,PetscScalar *); 1575014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetOptionsPrefix(Mat,const char[]); 1576014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDCheckPositivity(void*,Vec,Vec,PetscScalar*); 1577014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDSetCheckh(Mat,PetscErrorCode (*)(void*,Vec,Vec,PetscScalar*),void*); 1578e884886fSBarry Smith 15796370053bSBarry Smith /*S 15806370053bSBarry Smith MatMFFD - A data structured used to manage the computation of the h differencing parameter for matrix-free 15816370053bSBarry Smith Jacobian vector products 1582e884886fSBarry Smith 15836370053bSBarry Smith Notes: MATMFFD is a specific MatType which uses the MatMFFD data structure 15846370053bSBarry Smith 15856370053bSBarry Smith MatMFFD*() methods actually take the Mat as their first argument. Not a MatMFFD data structure 15866370053bSBarry Smith 15876370053bSBarry Smith Level: developer 15886370053bSBarry Smith 15896370053bSBarry Smith .seealso: MATMFFD, MatCreateMFFD(), MatMFFDSetFuction(), MatMFFDSetType(), MatMFFDRegister() 15906370053bSBarry Smith S*/ 1591e884886fSBarry Smith typedef struct _p_MatMFFD* MatMFFD; 1592e884886fSBarry Smith 159376bdecfbSBarry Smith /*J 1594e884886fSBarry Smith MatMFFDType - algorithm used to compute the h used in computing matrix-vector products via differencing of the function 1595e884886fSBarry Smith 1596e884886fSBarry Smith Level: beginner 1597e884886fSBarry Smith 1598e884886fSBarry Smith .seealso: MatMFFDSetType(), MatMFFDRegister() 159976bdecfbSBarry Smith J*/ 160019fd82e9SBarry Smith typedef const char* MatMFFDType; 1601e884886fSBarry Smith #define MATMFFD_DS "ds" 1602e884886fSBarry Smith #define MATMFFD_WP "wp" 1603e884886fSBarry Smith 160419fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatMFFDSetType(Mat,MatMFFDType); 1605bdf89e91SBarry Smith PETSC_EXTERN PetscErrorCode MatMFFDRegister(const char[],PetscErrorCode (*)(MatMFFD)); 1606e884886fSBarry Smith 1607014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDDSSetUmin(Mat,PetscReal); 1608014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMFFDWPSetComputeNormU(Mat,PetscBool ); 1609e884886fSBarry Smith 161061ab5df0SBarry Smith PETSC_EXTERN PetscErrorCode MatFDColoringSetType(MatFDColoring,MatMFFDType); 161161ab5df0SBarry Smith 1612014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscViewerMathematicaPutMatrix(PetscViewer, PetscInt, PetscInt, PetscReal *); 1613014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscViewerMathematicaPutCSRMatrix(PetscViewer, PetscInt, PetscInt, PetscInt *, PetscInt *, PetscReal *); 16147dbadf16SMatthew Knepley 161597969023SHong Zhang /* 161697969023SHong Zhang PETSc interface to MUMPS 161797969023SHong Zhang */ 161897969023SHong Zhang #ifdef PETSC_HAVE_MUMPS 1619014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatMumpsSetIcntl(Mat,PetscInt,PetscInt); 1620bc6112feSHong Zhang PETSC_EXTERN PetscErrorCode MatMumpsGetIcntl(Mat,PetscInt,PetscInt*); 1621b9e9ea26SSatish Balay PETSC_EXTERN PetscErrorCode MatMumpsSetCntl(Mat,PetscInt,PetscReal); 1622bc6112feSHong Zhang PETSC_EXTERN PetscErrorCode MatMumpsGetCntl(Mat,PetscInt,PetscReal*); 1623bc6112feSHong Zhang 1624ca810319SHong Zhang PETSC_EXTERN PetscErrorCode MatMumpsGetInfo(Mat,PetscInt,PetscInt*); 1625ca810319SHong Zhang PETSC_EXTERN PetscErrorCode MatMumpsGetInfog(Mat,PetscInt,PetscInt*); 1626ca810319SHong Zhang PETSC_EXTERN PetscErrorCode MatMumpsGetRinfo(Mat,PetscInt,PetscReal*); 1627ca810319SHong Zhang PETSC_EXTERN PetscErrorCode MatMumpsGetRinfog(Mat,PetscInt,PetscReal*); 162897969023SHong Zhang #endif 162923a5497aSJed Brown 1630d954db57SHong Zhang /* 1631d615f992SSatish Balay PETSc interface to Mkl_Pardiso 1632b500a6b7SJose David Bermeol */ 1633b500a6b7SJose David Bermeol #ifdef PETSC_HAVE_MKL_PARDISO 1634d615f992SSatish Balay PETSC_EXTERN PetscErrorCode MatMkl_PardisoSetCntl(Mat,PetscInt,PetscInt); 1635b500a6b7SJose David Bermeol #endif 1636b500a6b7SJose David Bermeol 1637b500a6b7SJose David Bermeol /* 1638d305a81bSVasiliy Kozyrev PETSc interface to Mkl_CPardiso 1639d305a81bSVasiliy Kozyrev */ 1640d305a81bSVasiliy Kozyrev #ifdef PETSC_HAVE_MKL_CPARDISO 1641d305a81bSVasiliy Kozyrev PETSC_EXTERN PetscErrorCode MatMkl_CPardisoSetCntl(Mat,PetscInt,PetscInt); 1642d305a81bSVasiliy Kozyrev #endif 1643d305a81bSVasiliy Kozyrev 1644d305a81bSVasiliy Kozyrev /* 1645d954db57SHong Zhang PETSc interface to SUPERLU 1646d954db57SHong Zhang */ 1647d954db57SHong Zhang #ifdef PETSC_HAVE_SUPERLU 1648014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatSuperluSetILUDropTol(Mat,PetscReal); 1649d954db57SHong Zhang #endif 1650d954db57SHong Zhang 1651fb785984SHong Zhang /* 1652fb785984SHong Zhang PETSc interface to SUPERLU_DIST 1653fb785984SHong Zhang */ 1654fb785984SHong Zhang #ifdef PETSC_HAVE_SUPERLU_DIST 1655fb785984SHong Zhang PETSC_EXTERN PetscErrorCode MatSuperluDistGetDiagU(Mat,PetscScalar*); 1656fb785984SHong Zhang #endif 1657fb785984SHong Zhang 1658575704cbSPieter Ghysels /* 1659575704cbSPieter Ghysels PETSc interface to STRUMPACK 1660575704cbSPieter Ghysels */ 1661575704cbSPieter Ghysels #ifdef PETSC_HAVE_STRUMPACK 1662575704cbSPieter Ghysels PETSC_EXTERN PetscErrorCode MatSTRUMPACKSetHSSRelCompTol(Mat,PetscReal); 1663575704cbSPieter Ghysels PETSC_EXTERN PetscErrorCode MatSTRUMPACKSetHSSMinSize(Mat,PetscInt); 1664575704cbSPieter Ghysels PETSC_EXTERN PetscErrorCode MatSTRUMPACKSetColPerm(Mat,PetscBool); 1665575704cbSPieter Ghysels #endif 1666575704cbSPieter Ghysels 1667575704cbSPieter Ghysels 1668aa372e3fSPaul Mullowney #ifdef PETSC_HAVE_CUDA 16693f9c0db1SPaul Mullowney /*E 1670e057df02SPaul Mullowney MatCUSPARSEStorageFormat - indicates the storage format for CUSPARSE (GPU) 16712692e278SPaul Mullowney matrices. 1672e057df02SPaul Mullowney 1673e057df02SPaul Mullowney Not Collective 1674e057df02SPaul Mullowney 16758468deeeSKarl Rupp + MAT_CUSPARSE_CSR - Compressed Sparse Row 16762692e278SPaul Mullowney . MAT_CUSPARSE_ELL - Ellpack (requires CUDA 4.2 or later). 16772692e278SPaul Mullowney - MAT_CUSPARSE_HYB - Hybrid, a combination of Ellpack and Coordinate format (requires CUDA 4.2 or later). 1678e057df02SPaul Mullowney 1679e057df02SPaul Mullowney Level: intermediate 1680e057df02SPaul Mullowney 1681af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 1682e057df02SPaul Mullowney 1683e057df02SPaul Mullowney .seealso: MatCUSPARSESetFormat(), MatCUSPARSEFormatOperation 1684e057df02SPaul Mullowney E*/ 1685e057df02SPaul Mullowney 16863f9c0db1SPaul Mullowney typedef enum {MAT_CUSPARSE_CSR, MAT_CUSPARSE_ELL, MAT_CUSPARSE_HYB} MatCUSPARSEStorageFormat; 1687e057df02SPaul Mullowney 1688e057df02SPaul Mullowney /* these will be strings associated with enumerated type defined above */ 1689e057df02SPaul Mullowney PETSC_EXTERN const char *const MatCUSPARSEStorageFormats[]; 1690e057df02SPaul Mullowney 16913f9c0db1SPaul Mullowney /*E 1692e057df02SPaul Mullowney MatCUSPARSEFormatOperation - indicates the operation of CUSPARSE (GPU) 16932692e278SPaul Mullowney matrices whose operation should use a particular storage format. 1694e057df02SPaul Mullowney 1695e057df02SPaul Mullowney Not Collective 1696e057df02SPaul Mullowney 16978468deeeSKarl Rupp + MAT_CUSPARSE_MULT_DIAG - sets the storage format for the diagonal matrix in the parallel MatMult 16988468deeeSKarl Rupp . MAT_CUSPARSE_MULT_OFFDIAG - sets the storage format for the offdiagonal matrix in the parallel MatMult 16998468deeeSKarl Rupp . MAT_CUSPARSE_MULT - sets the storage format for the entire matrix in the serial (single GPU) MatMult 17008468deeeSKarl Rupp - MAT_CUSPARSE_ALL - sets the storage format for all CUSPARSE (GPU) matrices 1701e057df02SPaul Mullowney 1702e057df02SPaul Mullowney Level: intermediate 1703e057df02SPaul Mullowney 1704e057df02SPaul Mullowney .seealso: MatCUSPARSESetFormat(), MatCUSPARSEStorageFormat 1705e057df02SPaul Mullowney E*/ 170636d62e41SPaul Mullowney typedef enum {MAT_CUSPARSE_MULT_DIAG, MAT_CUSPARSE_MULT_OFFDIAG, MAT_CUSPARSE_MULT, MAT_CUSPARSE_ALL} MatCUSPARSEFormatOperation; 1707e057df02SPaul Mullowney 170810e9db80SPaul Mullowney PETSC_EXTERN PetscErrorCode MatCreateSeqAIJCUSPARSE(MPI_Comm,PetscInt,PetscInt,PetscInt,const PetscInt[],Mat*); 170910e9db80SPaul Mullowney PETSC_EXTERN PetscErrorCode MatCreateAIJCUSPARSE(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[],Mat*); 1710e057df02SPaul Mullowney PETSC_EXTERN PetscErrorCode MatCUSPARSESetFormat(Mat,MatCUSPARSEFormatOperation,MatCUSPARSEStorageFormat); 17119ae82921SPaul Mullowney #endif 17129ae82921SPaul Mullowney 171390c53902SBarry Smith #if defined(PETSC_HAVE_CUSP) 1714014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateSeqAIJCUSP(MPI_Comm,PetscInt,PetscInt,PetscInt,const PetscInt[],Mat*); 1715014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateAIJCUSP(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[],Mat*); 1716e057df02SPaul Mullowney 17173f9c0db1SPaul Mullowney /*E 1718e057df02SPaul Mullowney MatCUSPStorageFormat - indicates the storage format for CUSP (GPU) 171936d62e41SPaul Mullowney matrices. 1720e057df02SPaul Mullowney 1721e057df02SPaul Mullowney Not Collective 1722e057df02SPaul Mullowney 17238468deeeSKarl Rupp + MAT_CUSP_CSR - Compressed Sparse Row 17248468deeeSKarl Rupp . MAT_CUSP_DIA - Diagonal 17258468deeeSKarl Rupp - MAT_CUSP_ELL - Ellpack 1726e057df02SPaul Mullowney 1727e057df02SPaul Mullowney Level: intermediate 1728e057df02SPaul Mullowney 1729af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 1730e057df02SPaul Mullowney 1731e057df02SPaul Mullowney .seealso: MatCUSPSetFormat(), MatCUSPFormatOperation 1732e057df02SPaul Mullowney E*/ 17333f9c0db1SPaul Mullowney typedef enum {MAT_CUSP_CSR, MAT_CUSP_DIA, MAT_CUSP_ELL} MatCUSPStorageFormat; 1734e057df02SPaul Mullowney 1735e057df02SPaul Mullowney /* these will be strings associated with enumerated type defined above */ 1736e057df02SPaul Mullowney PETSC_EXTERN const char *const MatCUSPStorageFormats[]; 1737e057df02SPaul Mullowney 17383f9c0db1SPaul Mullowney /*E 1739e057df02SPaul Mullowney MatCUSPFormatOperation - indicates the operation of CUSP (GPU) 174036d62e41SPaul Mullowney matrices whose operation should use a particular storage format. 1741e057df02SPaul Mullowney 1742e057df02SPaul Mullowney Not Collective 1743e057df02SPaul Mullowney 17448468deeeSKarl Rupp + MAT_CUSP_MULT_DIAG - sets the storage format for the diagonal matrix in the parallel MatMult 17458468deeeSKarl Rupp . MAT_CUSP_MULT_OFFDIAG - sets the storage format for the offdiagonal matrix in the parallel MatMult 17468468deeeSKarl Rupp . MAT_CUSP_MULT - sets the storage format for the entire matrix in the serial (single GPU) MatMult 17478468deeeSKarl Rupp - MAT_CUSP_ALL - sets the storage format for all CUSP (GPU) matrices 1748e057df02SPaul Mullowney 1749e057df02SPaul Mullowney Level: intermediate 1750e057df02SPaul Mullowney 1751af0996ceSBarry Smith Any additions/changes here MUST also be made in include/petsc/finclude/petscmat.h 1752e057df02SPaul Mullowney 1753e057df02SPaul Mullowney .seealso: MatCUSPSetFormat(), MatCUSPStorageFormat 1754e057df02SPaul Mullowney E*/ 175536d62e41SPaul Mullowney typedef enum {MAT_CUSP_MULT_DIAG, MAT_CUSP_MULT_OFFDIAG, MAT_CUSP_MULT, MAT_CUSP_ALL} MatCUSPFormatOperation; 1756e057df02SPaul Mullowney 1757e057df02SPaul Mullowney PETSC_EXTERN PetscErrorCode MatCUSPSetFormat(Mat,MatCUSPFormatOperation,MatCUSPStorageFormat); 1758e057df02SPaul Mullowney #endif 175990c53902SBarry Smith 1760d67ff14aSKarl Rupp #if defined(PETSC_HAVE_VIENNACL) 1761d67ff14aSKarl Rupp PETSC_EXTERN PetscErrorCode MatCreateSeqAIJViennaCL(MPI_Comm,PetscInt,PetscInt,PetscInt,const PetscInt[],Mat*); 1762d67ff14aSKarl Rupp PETSC_EXTERN PetscErrorCode MatCreateAIJViennaCL(MPI_Comm,PetscInt,PetscInt,PetscInt,PetscInt,PetscInt,const PetscInt[],PetscInt,const PetscInt[],Mat*); 1763d67ff14aSKarl Rupp #endif 1764d67ff14aSKarl Rupp 176554efbe56SHong Zhang /* 176654efbe56SHong Zhang PETSc interface to FFTW 176754efbe56SHong Zhang */ 176854efbe56SHong Zhang #if defined(PETSC_HAVE_FFTW) 1769014dd563SJed Brown PETSC_EXTERN PetscErrorCode VecScatterPetscToFFTW(Mat,Vec,Vec); 1770014dd563SJed Brown PETSC_EXTERN PetscErrorCode VecScatterFFTWToPetsc(Mat,Vec,Vec); 17712a7a6963SBarry Smith PETSC_EXTERN PetscErrorCode MatCreateVecsFFTW(Mat,Vec*,Vec*,Vec*); 177254efbe56SHong Zhang #endif 177354efbe56SHong Zhang 1774014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatCreateNest(MPI_Comm,PetscInt,const IS[],PetscInt,const IS[],const Mat[],Mat*); 1775014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNestGetSize(Mat,PetscInt*,PetscInt*); 1776014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNestGetISs(Mat,IS[],IS[]); 1777014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNestGetLocalISs(Mat,IS[],IS[]); 1778014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNestGetSubMats(Mat,PetscInt*,PetscInt*,Mat***); 1779014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNestGetSubMat(Mat,PetscInt,PetscInt,Mat*); 178019fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode MatNestSetVecType(Mat,VecType); 1781014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNestSetSubMats(Mat,PetscInt,const IS[],PetscInt,const IS[],const Mat[]); 1782014dd563SJed Brown PETSC_EXTERN PetscErrorCode MatNestSetSubMat(Mat,PetscInt,PetscInt,Mat); 1783d8588912SDave May 17844325cce7SMatthew G Knepley PETSC_EXTERN PetscErrorCode MatChop(Mat,PetscReal); 1785e0a58c10SMatthew G. Knepley PETSC_EXTERN PetscErrorCode MatComputeBandwidth(Mat,PetscReal,PetscInt*); 17864325cce7SMatthew G Knepley 1787b541e6a4SDmitry Karpeev PETSC_EXTERN PetscErrorCode MatSubdomainsCreateCoalesce(Mat,PetscInt,PetscInt*,IS**); 178853dd7562SDmitry Karpeev 1789c094ef40SMatthew G. Knepley PETSC_EXTERN PetscErrorCode MatPreallocatorPreallocate(Mat,PetscBool,Mat); 1790c094ef40SMatthew G. Knepley 1791539c167fSBarry Smith PETSC_INTERN PetscErrorCode MatHeaderMerge(Mat,Mat*); 1792539c167fSBarry Smith PETSC_EXTERN PetscErrorCode MatHeaderReplace(Mat,Mat*); 1793539c167fSBarry Smith 179423a5497aSJed Brown #endif 1795