xref: /petsc/include/petscmat.h (revision 1c741599245a8e1308c682ee11969ffb033c0bea)
12eac72dbSBarry Smith /*
22eac72dbSBarry Smith      Include file for the matrix component of PETSc
32eac72dbSBarry Smith */
40a835dfdSSatish Balay #ifndef __PETSCMAT_H
50a835dfdSSatish Balay #define __PETSCMAT_H
60a835dfdSSatish Balay #include "petscvec.h"
7e9fa29b7SSatish Balay PETSC_EXTERN_CXX_BEGIN
82eac72dbSBarry Smith 
9d9274352SBarry Smith /*S
10d9274352SBarry Smith      Mat - Abstract PETSc matrix object
112eac72dbSBarry Smith 
12d91e6319SBarry Smith    Level: beginner
13d91e6319SBarry Smith 
14d9274352SBarry Smith   Concepts: matrix; linear operator
15d9274352SBarry Smith 
16d9274352SBarry Smith .seealso:  MatCreate(), MatType, MatSetType()
17d9274352SBarry Smith S*/
18d9274352SBarry Smith typedef struct _p_Mat*           Mat;
19d9274352SBarry Smith 
20d9274352SBarry Smith /*E
21d9274352SBarry Smith     MatType - String with the name of a PETSc matrix or the creation function
22d9274352SBarry Smith        with an optional dynamic library name, for example
23d9274352SBarry Smith        http://www.mcs.anl.gov/petsc/lib.a:mymatcreate()
24d9274352SBarry Smith 
25d9274352SBarry Smith    Level: beginner
26d9274352SBarry Smith 
27d9274352SBarry Smith .seealso: MatSetType(), Mat
28d91e6319SBarry Smith E*/
29273d9f13SBarry Smith #define MATSAME            "same"
30273d9f13SBarry Smith #define MATSEQMAIJ         "seqmaij"
31273d9f13SBarry Smith #define MATMPIMAIJ         "mpimaij"
32209238afSKris Buschelman #define MATMAIJ            "maij"
33273d9f13SBarry Smith #define MATIS              "is"
34273d9f13SBarry Smith #define MATMPIROWBS        "mpirowbs"
35273d9f13SBarry Smith #define MATSEQAIJ          "seqaij"
36273d9f13SBarry Smith #define MATMPIAIJ          "mpiaij"
37209238afSKris Buschelman #define MATAIJ             "aij"
38273d9f13SBarry Smith #define MATSHELL           "shell"
39273d9f13SBarry Smith #define MATSEQBDIAG        "seqbdiag"
40273d9f13SBarry Smith #define MATMPIBDIAG        "mpibdiag"
41209238afSKris Buschelman #define MATBDIAG           "bdiag"
42209238afSKris Buschelman #define MATSEQDENSE        "seqdense"
43273d9f13SBarry Smith #define MATMPIDENSE        "mpidense"
44209238afSKris Buschelman #define MATDENSE           "dense"
45273d9f13SBarry Smith #define MATSEQBAIJ         "seqbaij"
46273d9f13SBarry Smith #define MATMPIBAIJ         "mpibaij"
47209238afSKris Buschelman #define MATBAIJ            "baij"
48273d9f13SBarry Smith #define MATMPIADJ          "mpiadj"
49273d9f13SBarry Smith #define MATSEQSBAIJ        "seqsbaij"
50273d9f13SBarry Smith #define MATMPISBAIJ        "mpisbaij"
51209238afSKris Buschelman #define MATSBAIJ           "sbaij"
52cebc7f6cSBarry Smith #define MATDAAD            "daad"
53cebc7f6cSBarry Smith #define MATMFFD            "mffd"
546d88219bSBarry Smith #define MATESI             "esi"
556d88219bSBarry Smith #define MATPETSCESI        "petscesi"
56c8a8475eSBarry Smith #define MATNORMAL          "normal"
57b3a1e11cSKris Buschelman #define MATSEQAIJSPOOLES   "seqaijspooles"
58d10c748bSKris Buschelman #define MATMPIAIJSPOOLES   "mpiaijspooles"
599abb65ffSKris Buschelman #define MATSEQSBAIJSPOOLES "seqsbaijspooles"
6022191285SKris Buschelman #define MATMPISBAIJSPOOLES "mpisbaijspooles"
61bb4d4166SHong Zhang #define MATAIJSPOOLES      "aijspooles"
62bb4d4166SHong Zhang #define MATSBAIJSPOOLES    "sbaijspooles"
6314b396bbSKris Buschelman #define MATSUPERLU         "superlu"
641d96aa28SKris Buschelman #define MATSUPERLU_DIST    "superlu_dist"
651677d0b8SKris Buschelman #define MATUMFPACK         "umfpack"
66e8aa55a4SKris Buschelman #define MATESSL            "essl"
674eb8e494SKris Buschelman #define MATLUSOL           "lusol"
68397b6df1SKris Buschelman #define MATAIJMUMPS        "aijmumps"
69397b6df1SKris Buschelman #define MATSBAIJMUMPS      "sbaijmumps"
708da957c5SKris Buschelman #define MATDSCPACK         "dscpack"
717065e2aaSKris Buschelman #define MATMATLAB          "matlab"
7249773a63SBarry Smith #define MatType char*
73d91e6319SBarry Smith 
74c06d978dSMatthew Knepley /* Logging support */
75552e946dSBarry Smith #define    MAT_FILE_COOKIE 1211216    /* used to indicate matrices in binary files */
76c06d978dSMatthew Knepley extern int MAT_COOKIE;
7771d41ebeSBarry Smith extern int MATSNESMFCTX_COOKIE;
78c06d978dSMatthew Knepley extern int MAT_FDCOLORING_COOKIE;
798ba1e511SMatthew Knepley extern int MAT_PARTITIONING_COOKIE;
808ba1e511SMatthew Knepley extern int MAT_NULLSPACE_COOKIE;
81d59c15a7SBarry Smith extern int MAT_Mult, MAT_MultMatrixFree, MAT_Mults, MAT_MultConstrained, MAT_MultAdd, MAT_MultTranspose;
82d59c15a7SBarry Smith extern int MAT_MultTransposeConstrained, MAT_MultTransposeAdd, MAT_Solve, MAT_Solves, MAT_SolveAdd, MAT_SolveTranspose;
83d5ba7fb7SMatthew Knepley extern int MAT_SolveTransposeAdd, MAT_Relax, MAT_ForwardSolve, MAT_BackwardSolve, MAT_LUFactor, MAT_LUFactorSymbolic;
84d5ba7fb7SMatthew Knepley extern int MAT_LUFactorNumeric, MAT_CholeskyFactor, MAT_CholeskyFactorSymbolic, MAT_CholeskyFactorNumeric, MAT_ILUFactor;
85d5ba7fb7SMatthew Knepley extern int MAT_ILUFactorSymbolic, MAT_ICCFactorSymbolic, MAT_Copy, MAT_Convert, MAT_Scale, MAT_AssemblyBegin;
86d5ba7fb7SMatthew Knepley extern int MAT_AssemblyEnd, MAT_SetValues, MAT_GetValues, MAT_GetRow, MAT_GetSubMatrices, MAT_GetColoring, MAT_GetOrdering;
87d5ba7fb7SMatthew Knepley extern int MAT_IncreaseOverlap, MAT_Partitioning, MAT_ZeroEntries, MAT_Load, MAT_View, MAT_AXPY, MAT_FDColoringCreate;
8866f9b7ceSBarry Smith extern int MAT_FDColoringApply, MAT_Transpose, MAT_FDColoringFunction;
896284ec50SHong Zhang extern int MAT_MatMult;
90c06d978dSMatthew Knepley 
918ba1e511SMatthew Knepley EXTERN int MatInitializePackage(char *);
92c06d978dSMatthew Knepley 
93273d9f13SBarry Smith EXTERN int MatCreate(MPI_Comm,int,int,int,int,Mat*);
940e33f6ddSBarry Smith EXTERN int MatSetType(Mat,const MatType);
95273d9f13SBarry Smith EXTERN int MatSetFromOptions(Mat);
96273d9f13SBarry Smith EXTERN int MatSetUpPreallocation(Mat);
970e33f6ddSBarry Smith EXTERN int MatRegisterAll(const char[]);
980e33f6ddSBarry Smith EXTERN int MatRegister(const char[],const char[],const char[],int(*)(Mat));
9930de9b25SBarry Smith 
10030de9b25SBarry Smith /*MC
10130de9b25SBarry Smith    MatRegisterDynamic - Adds a new matrix type
10230de9b25SBarry Smith 
10330de9b25SBarry Smith    Synopsis:
10430de9b25SBarry Smith    int MatRegisterDynamic(char *name,char *path,char *name_create,int (*routine_create)(Mat))
10530de9b25SBarry Smith 
10630de9b25SBarry Smith    Not Collective
10730de9b25SBarry Smith 
10830de9b25SBarry Smith    Input Parameters:
10930de9b25SBarry Smith +  name - name of a new user-defined matrix type
11030de9b25SBarry Smith .  path - path (either absolute or relative) the library containing this solver
11130de9b25SBarry Smith .  name_create - name of routine to create method context
11230de9b25SBarry Smith -  routine_create - routine to create method context
11330de9b25SBarry Smith 
11430de9b25SBarry Smith    Notes:
11530de9b25SBarry Smith    MatRegisterDynamic() may be called multiple times to add several user-defined solvers.
11630de9b25SBarry Smith 
11730de9b25SBarry Smith    If dynamic libraries are used, then the fourth input argument (routine_create)
11830de9b25SBarry Smith    is ignored.
11930de9b25SBarry Smith 
12030de9b25SBarry Smith    Sample usage:
12130de9b25SBarry Smith .vb
12230de9b25SBarry Smith    MatRegisterDynamic("my_mat",/home/username/my_lib/lib/libO/solaris/mylib.a,
12330de9b25SBarry Smith                "MyMatCreate",MyMatCreate);
12430de9b25SBarry Smith .ve
12530de9b25SBarry Smith 
12630de9b25SBarry Smith    Then, your solver can be chosen with the procedural interface via
12730de9b25SBarry Smith $     MatSetType(Mat,"my_mat")
12830de9b25SBarry Smith    or at runtime via the option
12930de9b25SBarry Smith $     -mat_type my_mat
13030de9b25SBarry Smith 
13130de9b25SBarry Smith    Level: advanced
13230de9b25SBarry Smith 
13330de9b25SBarry Smith    Notes: ${PETSC_ARCH} and ${BOPT} occuring in pathname will be replaced with appropriate values.
13430de9b25SBarry Smith          If your function is not being put into a shared library then use VecRegister() instead
13530de9b25SBarry Smith 
13630de9b25SBarry Smith .keywords: Mat, register
13730de9b25SBarry Smith 
13830de9b25SBarry Smith .seealso: MatRegisterAll(), MatRegisterDestroy()
13930de9b25SBarry Smith 
14030de9b25SBarry Smith M*/
141273d9f13SBarry Smith #if defined(PETSC_USE_DYNAMIC_LIBRARIES)
142273d9f13SBarry Smith #define MatRegisterDynamic(a,b,c,d) MatRegister(a,b,c,0)
143273d9f13SBarry Smith #else
144273d9f13SBarry Smith #define MatRegisterDynamic(a,b,c,d) MatRegister(a,b,c,d)
14530de9b25SBarry Smith #endif
14630de9b25SBarry Smith 
147273d9f13SBarry Smith extern PetscTruth MatRegisterAllCalled;
148b0a32e0cSBarry Smith extern PetscFList MatList;
14928988994SBarry Smith 
150ca01db9bSBarry Smith EXTERN int MatCreateSeqDense(MPI_Comm,int,int,PetscScalar[],Mat*);
151ca01db9bSBarry Smith EXTERN int MatCreateMPIDense(MPI_Comm,int,int,int,int,PetscScalar[],Mat*);
152ca01db9bSBarry Smith EXTERN int MatCreateSeqAIJ(MPI_Comm,int,int,int,const int[],Mat*);
153ca01db9bSBarry Smith EXTERN int MatCreateMPIAIJ(MPI_Comm,int,int,int,int,int,const int[],int,const int[],Mat*);
154ca01db9bSBarry Smith EXTERN int MatCreateMPIRowbs(MPI_Comm,int,int,int,const int[],Mat*);
155ca01db9bSBarry Smith EXTERN int MatCreateSeqBDiag(MPI_Comm,int,int,int,int,const int[],PetscScalar*[],Mat*);
156ca01db9bSBarry Smith EXTERN int MatCreateMPIBDiag(MPI_Comm,int,int,int,int,int,const int[],PetscScalar*[],Mat*);
157ca01db9bSBarry Smith EXTERN int MatCreateSeqBAIJ(MPI_Comm,int,int,int,int,const int[],Mat*);
158ca01db9bSBarry Smith EXTERN int MatCreateMPIBAIJ(MPI_Comm,int,int,int,int,int,int,const int[],int,const int[],Mat*);
159ca01db9bSBarry Smith EXTERN int MatCreateMPIAdj(MPI_Comm,int,int,int[],int[],int[],Mat*);
160ca01db9bSBarry Smith EXTERN int MatCreateSeqSBAIJ(MPI_Comm,int,int,int,int,const int[],Mat*);
161ca01db9bSBarry Smith EXTERN int MatCreateMPISBAIJ(MPI_Comm,int,int,int,int,int,int,const int[],int,const int[],Mat*);
162ca44d042SBarry Smith EXTERN int MatCreateShell(MPI_Comm,int,int,int,int,void *,Mat*);
1633a7fca6bSBarry Smith EXTERN int MatCreateAdic(MPI_Comm,int,int,int,int,int,void (*)(void),Mat*);
164c8a8475eSBarry Smith EXTERN int MatCreateNormal(Mat,Mat*);
165435da068SBarry Smith EXTERN int MatDestroy(Mat);
16621c89e3eSBarry Smith 
167ca44d042SBarry Smith EXTERN int MatPrintHelp(Mat);
1688a124369SBarry Smith EXTERN int MatGetPetscMaps(Mat,PetscMap*,PetscMap*);
169ec0117caSBarry Smith 
1708ed539a5SBarry Smith /* ------------------------------------------------------------*/
171f15d580aSBarry Smith EXTERN int MatSetValues(Mat,int,const int[],int,const int[],const PetscScalar[],InsertMode);
172f15d580aSBarry Smith EXTERN int MatSetValuesBlocked(Mat,int,const int[],int,const int[],const PetscScalar[],InsertMode);
17384cb2905SBarry Smith 
1742ef4de8bSBarry Smith /*S
1752ef4de8bSBarry Smith      MatStencil - Data structure (C struct) for storing information about a single row or
1762ef4de8bSBarry Smith         column of a matrix as index on an associated grid.
1772ef4de8bSBarry Smith 
1782ef4de8bSBarry Smith    Level: beginner
1792ef4de8bSBarry Smith 
1802ef4de8bSBarry Smith   Concepts: matrix; linear operator
1812ef4de8bSBarry Smith 
182d7bd93baSBarry Smith .seealso:  MatSetValuesStencil(), MatSetStencil(), MatSetValuesBlockStencil()
1832ef4de8bSBarry Smith S*/
184435da068SBarry Smith typedef struct {
185435da068SBarry Smith   int k,j,i,c;
186435da068SBarry Smith } MatStencil;
1872ef4de8bSBarry Smith 
188f15d580aSBarry Smith EXTERN int MatSetValuesStencil(Mat,int,const MatStencil[],int,const MatStencil[],const PetscScalar[],InsertMode);
189f15d580aSBarry Smith EXTERN int MatSetValuesBlockedStencil(Mat,int,const MatStencil[],int,const MatStencil[],const PetscScalar[],InsertMode);
190f15d580aSBarry Smith EXTERN int MatSetStencil(Mat,int,const int[],const int[],int);
191435da068SBarry Smith 
1923a7fca6bSBarry Smith EXTERN int MatSetColoring(Mat,ISColoring);
1933a7fca6bSBarry Smith EXTERN int MatSetValuesAdic(Mat,void*);
1943a7fca6bSBarry Smith EXTERN int MatSetValuesAdifor(Mat,int,void*);
1953a7fca6bSBarry Smith 
196d91e6319SBarry Smith /*E
197d91e6319SBarry Smith     MatAssemblyType - Indicates if the matrix is now to be used, or if you plan
198d91e6319SBarry Smith      to continue to add values to it
199d91e6319SBarry Smith 
200d91e6319SBarry Smith     Level: beginner
201d91e6319SBarry Smith 
202d91e6319SBarry Smith .seealso: MatAssemblyBegin(), MatAssemblyEnd()
203d91e6319SBarry Smith E*/
2046d4a8577SBarry Smith typedef enum {MAT_FLUSH_ASSEMBLY=1,MAT_FINAL_ASSEMBLY=0} MatAssemblyType;
205ca44d042SBarry Smith EXTERN int MatAssemblyBegin(Mat,MatAssemblyType);
206ca44d042SBarry Smith EXTERN int MatAssemblyEnd(Mat,MatAssemblyType);
207ca44d042SBarry Smith EXTERN int MatAssembled(Mat,PetscTruth*);
2084f9c727eSBarry Smith 
2091d73ed98SBarry Smith extern int         MatSetValue_Row, MatSetValue_Column;
2101d73ed98SBarry Smith extern PetscScalar MatSetValue_Value;
2111d73ed98SBarry Smith 
21230de9b25SBarry Smith /*MC
21330de9b25SBarry Smith    MatSetValue - Set a single entry into a matrix.
21430de9b25SBarry Smith 
21530de9b25SBarry Smith    Synopsis:
21630de9b25SBarry Smith    int MatSetValue(Mat m,int row,int col,PetscScalar value,InsertMode mode);
21730de9b25SBarry Smith 
21830de9b25SBarry Smith    Not collective
21930de9b25SBarry Smith 
22030de9b25SBarry Smith    Input Parameters:
22130de9b25SBarry Smith +  m - the matrix
22230de9b25SBarry Smith .  row - the row location of the entry
22330de9b25SBarry Smith .  col - the column location of the entry
22430de9b25SBarry Smith .  value - the value to insert
22530de9b25SBarry Smith -  mode - either INSERT_VALUES or ADD_VALUES
22630de9b25SBarry Smith 
22730de9b25SBarry Smith    Notes:
22830de9b25SBarry Smith    For efficiency one should use MatSetValues() and set several or many
22930de9b25SBarry Smith    values simultaneously if possible.
23030de9b25SBarry Smith 
23130de9b25SBarry Smith    Level: beginner
23230de9b25SBarry Smith 
23330de9b25SBarry Smith .seealso: MatSetValues(), MatSetValueLocal()
23430de9b25SBarry Smith M*/
235b951964fSBarry Smith #define MatSetValue(v,i,j,va,mode) \
2361d73ed98SBarry Smith   (MatSetValue_Row = i,MatSetValue_Column = j,MatSetValue_Value = va, \
2371d73ed98SBarry Smith    MatSetValues(v,1,&MatSetValue_Row,1,&MatSetValue_Column,&MatSetValue_Value,mode))
23830de9b25SBarry Smith 
239ea06a074SBarry Smith #define MatGetValue(v,i,j,va) \
2401d73ed98SBarry Smith   (MatSetValue_Row = i,MatSetValue_Column = j,\
2411d73ed98SBarry Smith    MatGetValues(v,1,&MatSetValue_Row,1,&MatSetValue_Column,&va))
24230de9b25SBarry Smith 
243d91e6319SBarry Smith #define MatSetValueLocal(v,i,j,va,mode) \
2441d73ed98SBarry Smith   (MatSetValue_Row = i,MatSetValue_Column = j,MatSetValue_Value = va, \
2451d73ed98SBarry Smith    MatSetValuesLocal(v,1,&MatSetValue_Row,1,&MatSetValue_Column,&MatSetValue_Value,mode))
24630de9b25SBarry Smith 
247d91e6319SBarry Smith /*E
248d91e6319SBarry Smith     MatOption - Options that may be set for a matrix and its behavior or storage
249d91e6319SBarry Smith 
250d91e6319SBarry Smith     Level: beginner
251d91e6319SBarry Smith 
2520a835dfdSSatish Balay    Any additions/changes here MUST also be made in include/finclude/petscmat.h
253d91e6319SBarry Smith 
254d91e6319SBarry Smith .seealso: MatSetOption()
255d91e6319SBarry Smith E*/
2566d4a8577SBarry Smith typedef enum {MAT_ROW_ORIENTED=1,MAT_COLUMN_ORIENTED=2,MAT_ROWS_SORTED=4,
2576d4a8577SBarry Smith               MAT_COLUMNS_SORTED=8,MAT_NO_NEW_NONZERO_LOCATIONS=16,
2586d4a8577SBarry Smith               MAT_YES_NEW_NONZERO_LOCATIONS=32,MAT_SYMMETRIC=64,
2596ca9ecd3SBarry Smith               MAT_STRUCTURALLY_SYMMETRIC=65,MAT_NO_NEW_DIAGONALS=66,
2606ca9ecd3SBarry Smith               MAT_YES_NEW_DIAGONALS=67,MAT_INODE_LIMIT_1=68,MAT_INODE_LIMIT_2=69,
2616ca9ecd3SBarry Smith               MAT_INODE_LIMIT_3=70,MAT_INODE_LIMIT_4=71,MAT_INODE_LIMIT_5=72,
2626ca9ecd3SBarry Smith               MAT_IGNORE_OFF_PROC_ENTRIES=73,MAT_ROWS_UNSORTED=74,
2634787f768SSatish Balay               MAT_COLUMNS_UNSORTED=75,MAT_NEW_NONZERO_LOCATION_ERR=76,
2647c922b88SBarry Smith               MAT_NEW_NONZERO_ALLOCATION_ERR=77,MAT_USE_HASH_TABLE=78,
2652bad1931SBarry Smith               MAT_KEEP_ZEROED_ROWS=79,MAT_IGNORE_ZERO_ENTRIES=80,MAT_USE_INODES=81,
266efcf0fc3SBarry Smith               MAT_DO_NOT_USE_INODES=82,MAT_NOT_SYMMETRIC=83,MAT_HERMITIAN=84,
2679a4540c5SBarry Smith               MAT_NOT_STRUCTURALLY_SYMMETRIC=85,MAT_NOT_HERMITIAN=86,
2689a4540c5SBarry Smith               MAT_SYMMETRY_ETERNAL=87,MAT_NOT_SYMMETRY_ETERNAL=88} MatOption;
269ca44d042SBarry Smith EXTERN int MatSetOption(Mat,MatOption);
270273d9f13SBarry Smith EXTERN int MatGetType(Mat,MatType*);
27184cb2905SBarry Smith 
272f15d580aSBarry Smith EXTERN int MatGetValues(Mat,int,const int[],int,const int[],PetscScalar[]);
273b3cc6726SBarry Smith EXTERN int MatGetRow(Mat,int,int *,const int *[],const PetscScalar*[]);
274b3cc6726SBarry Smith EXTERN int MatRestoreRow(Mat,int,int *,const int *[],const PetscScalar*[]);
2754e7234bfSBarry Smith EXTERN int MatGetColumn(Mat,int,int *,int *[],PetscScalar*[]);
2764e7234bfSBarry Smith EXTERN int MatRestoreColumn(Mat,int,int *,int *[],PetscScalar*[]);
277ca44d042SBarry Smith EXTERN int MatGetColumnVector(Mat,Vec,int);
2784e7234bfSBarry Smith EXTERN int MatGetArray(Mat,PetscScalar *[]);
2794e7234bfSBarry Smith EXTERN int MatRestoreArray(Mat,PetscScalar *[]);
280ca44d042SBarry Smith EXTERN int MatGetBlockSize(Mat,int *);
2817b80b807SBarry Smith 
282ca44d042SBarry Smith EXTERN int MatMult(Mat,Vec,Vec);
283ca44d042SBarry Smith EXTERN int MatMultAdd(Mat,Vec,Vec,Vec);
284ca44d042SBarry Smith EXTERN int MatMultTranspose(Mat,Vec,Vec);
2855485867bSBarry Smith EXTERN int MatIsTranspose(Mat,Mat,PetscReal,PetscTruth*);
286ca44d042SBarry Smith EXTERN int MatMultTransposeAdd(Mat,Vec,Vec,Vec);
287c06d978dSMatthew Knepley EXTERN int MatMultConstrained(Mat,Vec,Vec);
2886d0dc95fSMatthew Knepley EXTERN int MatMultTransposeConstrained(Mat,Vec,Vec);
2892eac72dbSBarry Smith 
290d91e6319SBarry Smith /*E
291d91e6319SBarry Smith     MatDuplicateOption - Indicates if a duplicated sparse matrix should have
292d91e6319SBarry Smith   its numerical values copied over or just its nonzero structure.
293d91e6319SBarry Smith 
294d91e6319SBarry Smith     Level: beginner
295d91e6319SBarry Smith 
296d91e6319SBarry Smith    Any additions/changes here MUST also be made in include/finclude/petscmat.h
297d91e6319SBarry Smith 
298d91e6319SBarry Smith .seealso: MatDuplicate()
299d91e6319SBarry Smith E*/
3002e8a6d31SBarry Smith typedef enum {MAT_DO_NOT_COPY_VALUES,MAT_COPY_VALUES} MatDuplicateOption;
3012e8a6d31SBarry Smith 
3020e33f6ddSBarry Smith EXTERN int MatConvertRegister(const char[],const char[],const char[],int (*)(Mat,MatType,Mat*));
303273d9f13SBarry Smith #if defined(PETSC_USE_DYNAMIC_LIBRARIES)
304273d9f13SBarry Smith #define MatConvertRegisterDynamic(a,b,c,d) MatConvertRegister(a,b,c,0)
305273d9f13SBarry Smith #else
306273d9f13SBarry Smith #define MatConvertRegisterDynamic(a,b,c,d) MatConvertRegister(a,b,c,d)
307273d9f13SBarry Smith #endif
3080e33f6ddSBarry Smith EXTERN int        MatConvertRegisterAll(const char[]);
309273d9f13SBarry Smith EXTERN int        MatConvertRegisterDestroy(void);
310273d9f13SBarry Smith extern PetscTruth MatConvertRegisterAllCalled;
311b0a32e0cSBarry Smith extern PetscFList MatConvertList;
3128e9aea5cSBarry Smith EXTERN int        MatConvert(Mat,const MatType,Mat*);
313ca44d042SBarry Smith EXTERN int        MatDuplicate(Mat,MatDuplicateOption,Mat*);
31494a9d846SBarry Smith 
315d91e6319SBarry Smith /*E
316d91e6319SBarry Smith     MatStructure - Indicates if the matrix has the same nonzero structure
317d91e6319SBarry Smith 
318d91e6319SBarry Smith     Level: beginner
319d91e6319SBarry Smith 
320d91e6319SBarry Smith    Any additions/changes here MUST also be made in include/finclude/petscmat.h
321d91e6319SBarry Smith 
32294b7f48cSBarry Smith .seealso: MatCopy(), KSPSetOperators(), PCSetOperators()
323d91e6319SBarry Smith E*/
324c537a176SHong Zhang typedef enum {SAME_NONZERO_PATTERN,DIFFERENT_NONZERO_PATTERN,SAME_PRECONDITIONER,SUBSET_NONZERO_PATTERN} MatStructure;
325cb5b572fSBarry Smith 
326ca44d042SBarry Smith EXTERN int MatCopy(Mat,Mat,MatStructure);
327b0a32e0cSBarry Smith EXTERN int MatView(Mat,PetscViewer);
3285485867bSBarry Smith EXTERN int MatIsSymmetric(Mat,PetscReal,PetscTruth*);
329ba8a7149SBarry Smith EXTERN int MatIsSymmetricKnown(Mat,PetscTruth*,PetscTruth*);
3308e9aea5cSBarry Smith EXTERN int MatLoad(PetscViewer,const MatType,Mat*);
33151dd7536SBarry Smith EXTERN int MatMerge(MPI_Comm,Mat,Mat*);
3327b80b807SBarry Smith 
3334e7234bfSBarry Smith EXTERN int MatGetRowIJ(Mat,int,PetscTruth,int*,int *[],int *[],PetscTruth *);
3344e7234bfSBarry Smith EXTERN int MatRestoreRowIJ(Mat,int,PetscTruth,int *,int *[],int *[],PetscTruth *);
3354e7234bfSBarry Smith EXTERN int MatGetColumnIJ(Mat,int,PetscTruth,int*,int *[],int *[],PetscTruth *);
3364e7234bfSBarry Smith EXTERN int MatRestoreColumnIJ(Mat,int,PetscTruth,int *,int *[],int *[],PetscTruth *);
337d4fbbf0eSBarry Smith 
338d91e6319SBarry Smith /*S
339d91e6319SBarry Smith      MatInfo - Context of matrix information, used with MatGetInfo()
340d91e6319SBarry Smith 
341d91e6319SBarry Smith    In Fortran this is simply a double precision array of dimension MAT_INFO_SIZE
342d91e6319SBarry Smith 
343d91e6319SBarry Smith    Level: intermediate
344d91e6319SBarry Smith 
345d91e6319SBarry Smith   Concepts: matrix^nonzero information
346d91e6319SBarry Smith 
347d9274352SBarry Smith .seealso:  MatGetInfo(), MatInfoType
348d91e6319SBarry Smith S*/
3494e220ebcSLois Curfman McInnes typedef struct {
350b0a32e0cSBarry Smith   PetscLogDouble rows_global,columns_global;         /* number of global rows and columns */
351b0a32e0cSBarry Smith   PetscLogDouble rows_local,columns_local;           /* number of local rows and columns */
352b0a32e0cSBarry Smith   PetscLogDouble block_size;                         /* block size */
353b0a32e0cSBarry Smith   PetscLogDouble nz_allocated,nz_used,nz_unneeded;   /* number of nonzeros */
354b0a32e0cSBarry Smith   PetscLogDouble memory;                             /* memory allocated */
355b0a32e0cSBarry Smith   PetscLogDouble assemblies;                         /* number of matrix assemblies called */
356b0a32e0cSBarry Smith   PetscLogDouble mallocs;                            /* number of mallocs during MatSetValues() */
357b0a32e0cSBarry Smith   PetscLogDouble fill_ratio_given,fill_ratio_needed; /* fill ratio for LU/ILU */
358b0a32e0cSBarry Smith   PetscLogDouble factor_mallocs;                     /* number of mallocs during factorization */
3594e220ebcSLois Curfman McInnes } MatInfo;
3604e220ebcSLois Curfman McInnes 
361d9274352SBarry Smith /*E
362d9274352SBarry Smith     MatInfoType - Indicates if you want information about the local part of the matrix,
363d9274352SBarry Smith      the entire parallel matrix or the maximum over all the local parts.
364d9274352SBarry Smith 
365d9274352SBarry Smith     Level: beginner
366d9274352SBarry Smith 
367d9274352SBarry Smith    Any additions/changes here MUST also be made in include/finclude/petscmat.h
368d9274352SBarry Smith 
369d9274352SBarry Smith .seealso: MatGetInfo(), MatInfo
370d9274352SBarry Smith E*/
3717b80b807SBarry Smith typedef enum {MAT_LOCAL=1,MAT_GLOBAL_MAX=2,MAT_GLOBAL_SUM=3} MatInfoType;
372ca44d042SBarry Smith EXTERN int MatGetInfo(Mat,MatInfoType,MatInfo*);
373ca44d042SBarry Smith EXTERN int MatValid(Mat,PetscTruth*);
374ca44d042SBarry Smith EXTERN int MatGetDiagonal(Mat,Vec);
375273d9f13SBarry Smith EXTERN int MatGetRowMax(Mat,Vec);
376ca44d042SBarry Smith EXTERN int MatTranspose(Mat,Mat*);
377ca44d042SBarry Smith EXTERN int MatPermute(Mat,IS,IS,Mat *);
378bf1d55d4SSatish Balay EXTERN int MatPermuteSparsify(Mat,int,PetscReal,PetscReal,IS,IS,Mat *);
379ca44d042SBarry Smith EXTERN int MatDiagonalScale(Mat,Vec,Vec);
38006ef90c2SBarry Smith EXTERN int MatDiagonalSet(Mat,Vec,InsertMode);
381ca44d042SBarry Smith EXTERN int MatEqual(Mat,Mat,PetscTruth*);
3827b80b807SBarry Smith 
38387828ca2SBarry Smith EXTERN int MatNorm(Mat,NormType,PetscReal *);
384ca44d042SBarry Smith EXTERN int MatZeroEntries(Mat);
385268466fbSBarry Smith EXTERN int MatZeroRows(Mat,IS,const PetscScalar*);
386268466fbSBarry Smith EXTERN int MatZeroColumns(Mat,IS,const PetscScalar*);
3877b80b807SBarry Smith 
388ca44d042SBarry Smith EXTERN int MatUseScaledForm(Mat,PetscTruth);
389ca44d042SBarry Smith EXTERN int MatScaleSystem(Mat,Vec,Vec);
390ca44d042SBarry Smith EXTERN int MatUnScaleSystem(Mat,Vec,Vec);
3915ef9f2a5SBarry Smith 
392ca44d042SBarry Smith EXTERN int MatGetSize(Mat,int*,int*);
393ca44d042SBarry Smith EXTERN int MatGetLocalSize(Mat,int*,int*);
394ca44d042SBarry Smith EXTERN int MatGetOwnershipRange(Mat,int*,int*);
3957b80b807SBarry Smith 
396d91e6319SBarry Smith /*E
397d91e6319SBarry Smith     MatReuse - Indicates if matrices obtained from a previous call to MatGetSubMatrices()
398d91e6319SBarry Smith      or MatGetSubMatrix() are to be reused to store the new matrix values.
399d91e6319SBarry Smith 
400d91e6319SBarry Smith     Level: beginner
401d91e6319SBarry Smith 
402d91e6319SBarry Smith    Any additions/changes here MUST also be made in include/finclude/petscmat.h
403d91e6319SBarry Smith 
404d91e6319SBarry Smith .seealso: MatGetSubMatrices(), MatGetSubMatrix(), MatDestroyMatrices()
405d91e6319SBarry Smith E*/
4067b2a1423SBarry Smith typedef enum {MAT_INITIAL_MATRIX,MAT_REUSE_MATRIX} MatReuse;
407268466fbSBarry Smith EXTERN int MatGetSubMatrices(Mat,int,const IS[],const IS[],MatReuse,Mat *[]);
408268466fbSBarry Smith EXTERN int MatDestroyMatrices(int,Mat *[]);
409ca44d042SBarry Smith EXTERN int MatGetSubMatrix(Mat,IS,IS,int,MatReuse,Mat *);
4108efafbd8SBarry Smith 
411268466fbSBarry Smith EXTERN int MatIncreaseOverlap(Mat,int,IS[],int);
4127b80b807SBarry Smith 
413*1c741599SHong Zhang EXTERN int MatMatMult(Mat,Mat,MatReuse,PetscReal,Mat*);
414*1c741599SHong Zhang EXTERN int MatMatMultSymbolic(Mat,Mat,Mat*);
415*1c741599SHong Zhang EXTERN int MatMatMultNumeric(Mat,Mat,Mat);
416*1c741599SHong Zhang 
417268466fbSBarry Smith EXTERN int MatAXPY(const PetscScalar *,Mat,Mat,MatStructure);
418268466fbSBarry Smith EXTERN int MatAYPX(const PetscScalar *,Mat,Mat);
419ca44d042SBarry Smith EXTERN int MatCompress(Mat);
4207b80b807SBarry Smith 
421268466fbSBarry Smith EXTERN int MatScale(const PetscScalar *,Mat);
422268466fbSBarry Smith EXTERN int MatShift(const PetscScalar *,Mat);
423052efed2SBarry Smith 
424ca44d042SBarry Smith EXTERN int MatSetLocalToGlobalMapping(Mat,ISLocalToGlobalMapping);
425ca44d042SBarry Smith EXTERN int MatSetLocalToGlobalMappingBlock(Mat,ISLocalToGlobalMapping);
426268466fbSBarry Smith EXTERN int MatZeroRowsLocal(Mat,IS,const PetscScalar*);
427f15d580aSBarry Smith EXTERN int MatSetValuesLocal(Mat,int,const int[],int,const int[],const PetscScalar[],InsertMode);
428f15d580aSBarry Smith EXTERN int MatSetValuesBlockedLocal(Mat,int,const int[],int,const int[],const PetscScalar[],InsertMode);
42990f02eecSBarry Smith 
4301ecfd215SBarry Smith EXTERN int MatStashSetInitialSize(Mat,int,int);
4311ecfd215SBarry Smith EXTERN int MatStashGetInfo(Mat,int*,int*,int*,int*);
432649db694SBarry Smith 
433ca44d042SBarry Smith EXTERN int MatInterpolateAdd(Mat,Vec,Vec,Vec);
434ca44d042SBarry Smith EXTERN int MatInterpolate(Mat,Vec,Vec);
435ca44d042SBarry Smith EXTERN int MatRestrict(Mat,Vec,Vec);
43623ce1328SBarry Smith EXTERN int MatGetVecs(Mat,Vec*,Vec*);
437bd481603SBarry Smith 
438bd481603SBarry Smith /*MC
439bd481603SBarry Smith    MatPreallocInitialize - Begins the block of code that will count the number of nonzeros per
440bd481603SBarry Smith        row in a matrix providing the data that one can use to correctly preallocate the matrix.
441bd481603SBarry Smith 
442bd481603SBarry Smith    Synopsis:
443bd481603SBarry Smith    int MatPreallocateInitialize(MPI_Comm comm, int nrows, int ncols, int *dnz, int *onz)
444bd481603SBarry Smith 
445bd481603SBarry Smith    Collective on MPI_Comm
446bd481603SBarry Smith 
447bd481603SBarry Smith    Input Parameters:
448bd481603SBarry Smith +  comm - the communicator that will share the eventually allocated matrix
449bd481603SBarry Smith .  nrows - the number of rows in the matrix
450bd481603SBarry Smith -  ncols - the number of columns in the matrix
451bd481603SBarry Smith 
452bd481603SBarry Smith    Output Parameters:
453bd481603SBarry Smith +  dnz - the array that will be passed to the matrix preallocation routines
454bd481603SBarry Smith -  ozn - the other array passed to the matrix preallocation routines
455bd481603SBarry Smith 
456bd481603SBarry Smith 
457bd481603SBarry Smith    Level: intermediate
458bd481603SBarry Smith 
459bd481603SBarry Smith    Notes:
460bd481603SBarry Smith    See the chapter in the users manual on performance for more details
461bd481603SBarry Smith 
4621d73ed98SBarry Smith    Do not malloc or free dnz and onz, that is handled internally by these routines
463bd481603SBarry Smith 
464bd481603SBarry Smith    Use MatPreallocateInitializeSymmetric() for symmetric matrices (MPISBAIJ matrices)
465bd481603SBarry Smith 
466bd481603SBarry Smith   Concepts: preallocation^Matrix
467bd481603SBarry Smith 
468bd481603SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSet(), MatPreallocateSetLocal(),
469bd481603SBarry Smith           MatPreallocateInitializeSymmetric(), MatPreallocateSymmetricSetLocal()
470bd481603SBarry Smith M*/
471c4f061fbSSatish Balay #define MatPreallocateInitialize(comm,nrows,ncols,dnz,onz) 0; \
4727c922b88SBarry Smith { \
473ef66eb69SBarry Smith   int _4_ierr,__tmp = (nrows),__ctmp = (ncols),__rstart,__start,__end; \
474ef66eb69SBarry Smith   _4_ierr = PetscMalloc(2*__tmp*sizeof(int),&dnz);CHKERRQ(_4_ierr);onz = dnz + __tmp;\
475ef66eb69SBarry Smith   _4_ierr = PetscMemzero(dnz,2*__tmp*sizeof(int));CHKERRQ(_4_ierr);\
476ef66eb69SBarry Smith   _4_ierr = MPI_Scan(&__ctmp,&__end,1,MPI_INT,MPI_SUM,comm);CHKERRQ(_4_ierr); __start = __end - __ctmp;\
477ef66eb69SBarry Smith   _4_ierr = MPI_Scan(&__tmp,&__rstart,1,MPI_INT,MPI_SUM,comm);CHKERRQ(_4_ierr); __rstart = __rstart - __tmp;
4787c922b88SBarry Smith 
479bd481603SBarry Smith /*MC
480bd481603SBarry Smith    MatPreallocSymmetricInitialize - Begins the block of code that will count the number of nonzeros per
481bd481603SBarry Smith        row in a matrix providing the data that one can use to correctly preallocate the matrix.
482bd481603SBarry Smith 
483bd481603SBarry Smith    Synopsis:
484bd481603SBarry Smith    int MatPreallocateSymmetricInitialize(MPI_Comm comm, int nrows, int ncols, int *dnz, int *onz)
485bd481603SBarry Smith 
486bd481603SBarry Smith    Collective on MPI_Comm
487bd481603SBarry Smith 
488bd481603SBarry Smith    Input Parameters:
489bd481603SBarry Smith +  comm - the communicator that will share the eventually allocated matrix
490bd481603SBarry Smith .  nrows - the number of rows in the matrix
491bd481603SBarry Smith -  ncols - the number of columns in the matrix
492bd481603SBarry Smith 
493bd481603SBarry Smith    Output Parameters:
494bd481603SBarry Smith +  dnz - the array that will be passed to the matrix preallocation routines
495bd481603SBarry Smith -  ozn - the other array passed to the matrix preallocation routines
496bd481603SBarry Smith 
497bd481603SBarry Smith 
498bd481603SBarry Smith    Level: intermediate
499bd481603SBarry Smith 
500bd481603SBarry Smith    Notes:
501bd481603SBarry Smith    See the chapter in the users manual on performance for more details
502bd481603SBarry Smith 
5031d73ed98SBarry Smith    Do not malloc or free dnz and onz, that is handled internally by these routines
504bd481603SBarry Smith 
505bd481603SBarry Smith   Concepts: preallocation^Matrix
506bd481603SBarry Smith 
507bd481603SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSet(), MatPreallocateSetLocal(),
508bd481603SBarry Smith           MatPreallocateInitialize(), MatPreallocateSymmetricSetLocal()
509bd481603SBarry Smith M*/
510222b16d4SBarry Smith #define MatPreallocateSymmetricInitialize(comm,nrows,ncols,dnz,onz) 0; \
511222b16d4SBarry Smith { \
512222b16d4SBarry Smith   int _4_ierr,__tmp = (nrows),__ctmp = (ncols),__rstart,__end; \
513222b16d4SBarry Smith   _4_ierr = PetscMalloc(2*__tmp*sizeof(int),&dnz);CHKERRQ(_4_ierr);onz = dnz + __tmp;\
514222b16d4SBarry Smith   _4_ierr = PetscMemzero(dnz,2*__tmp*sizeof(int));CHKERRQ(_4_ierr);\
515222b16d4SBarry Smith   _4_ierr = MPI_Scan(&__ctmp,&__end,1,MPI_INT,MPI_SUM,comm);CHKERRQ(_4_ierr);\
516222b16d4SBarry Smith   _4_ierr = MPI_Scan(&__tmp,&__rstart,1,MPI_INT,MPI_SUM,comm);CHKERRQ(_4_ierr); __rstart = __rstart - __tmp;
517222b16d4SBarry Smith 
518bd481603SBarry Smith /*MC
519bd481603SBarry Smith    MatPreallocateSetLocal - Indicates the locations (rows and columns) in the matrix where nonzeros will be
520bd481603SBarry Smith        inserted using a local number of the rows and columns
521bd481603SBarry Smith 
522bd481603SBarry Smith    Synopsis:
523bd481603SBarry Smith    int MatPreallocateSetLocal(ISLocalToGlobalMappping map,int nrows, int *rows,int ncols, int *cols,int *dnz, int *onz)
524bd481603SBarry Smith 
525bd481603SBarry Smith    Not Collective
526bd481603SBarry Smith 
527bd481603SBarry Smith    Input Parameters:
528bd481603SBarry Smith +  map - the mapping between local numbering and global numbering
529bd481603SBarry Smith .  nrows - the number of rows indicated
5301d73ed98SBarry Smith .  rows - the indices of the rows
531bd481603SBarry Smith .  ncols - the number of columns in the matrix
532bd481603SBarry Smith .  cols - the columns indicated
533bd481603SBarry Smith .  dnz - the array that will be passed to the matrix preallocation routines
534bd481603SBarry Smith -  ozn - the other array passed to the matrix preallocation routines
535bd481603SBarry Smith 
536bd481603SBarry Smith 
537bd481603SBarry Smith    Level: intermediate
538bd481603SBarry Smith 
539bd481603SBarry Smith    Notes:
540bd481603SBarry Smith    See the chapter in the users manual on performance for more details
541bd481603SBarry Smith 
5421d73ed98SBarry Smith    Do not malloc or free dnz and onz, that is handled internally by these routines
543bd481603SBarry Smith 
544bd481603SBarry Smith   Concepts: preallocation^Matrix
545bd481603SBarry Smith 
546bd481603SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSet(), MatPreallocateInitialize(),
547bd481603SBarry Smith           MatPreallocateInitialize(), MatPreallocateSymmetricSetLocal()
548bd481603SBarry Smith M*/
549c4f061fbSSatish Balay #define MatPreallocateSetLocal(map,nrows,rows,ncols,cols,dnz,onz) 0;\
550c4f061fbSSatish Balay {\
551c4f061fbSSatish Balay   int __l;\
552ef66eb69SBarry Smith   _4_ierr = ISLocalToGlobalMappingApply(map,nrows,rows,rows);CHKERRQ(_4_ierr);\
553ef66eb69SBarry Smith   _4_ierr = ISLocalToGlobalMappingApply(map,ncols,cols,cols);CHKERRQ(_4_ierr);\
554c4f061fbSSatish Balay   for (__l=0;__l<nrows;__l++) {\
555ef66eb69SBarry Smith     _4_ierr = MatPreallocateSet((rows)[__l],ncols,cols,dnz,onz);CHKERRQ(_4_ierr);\
556c4f061fbSSatish Balay   }\
557c4f061fbSSatish Balay }
558c4f061fbSSatish Balay 
559bd481603SBarry Smith /*MC
560bd481603SBarry Smith    MatPreallocateSymmetricSetLocal - Indicates the locations (rows and columns) in the matrix where nonzeros will be
561bd481603SBarry Smith        inserted using a local number of the rows and columns
562bd481603SBarry Smith 
563bd481603SBarry Smith    Synopsis:
564bd481603SBarry Smith    int MatPreallocateSymmetricSetLocal(ISLocalToGlobalMappping map,int nrows, int *rows,int ncols, int *cols,int *dnz, int *onz)
565bd481603SBarry Smith 
566bd481603SBarry Smith    Not Collective
567bd481603SBarry Smith 
568bd481603SBarry Smith    Input Parameters:
569bd481603SBarry Smith +  map - the mapping between local numbering and global numbering
570bd481603SBarry Smith .  nrows - the number of rows indicated
5711d73ed98SBarry Smith .  rows - the indices of the rows
572bd481603SBarry Smith .  ncols - the number of columns in the matrix
573bd481603SBarry Smith .  cols - the columns indicated
574bd481603SBarry Smith .  dnz - the array that will be passed to the matrix preallocation routines
575bd481603SBarry Smith -  ozn - the other array passed to the matrix preallocation routines
576bd481603SBarry Smith 
577bd481603SBarry Smith 
578bd481603SBarry Smith    Level: intermediate
579bd481603SBarry Smith 
580bd481603SBarry Smith    Notes:
581bd481603SBarry Smith    See the chapter in the users manual on performance for more details
582bd481603SBarry Smith 
583bd481603SBarry Smith    Do not malloc or free dnz and onz that is handled internally by these routines
584bd481603SBarry Smith 
585bd481603SBarry Smith   Concepts: preallocation^Matrix
586bd481603SBarry Smith 
587bd481603SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSet(), MatPreallocateInitialize(),
588bd481603SBarry Smith           MatPreallocateInitialize(), MatPreallocateSymmetricSetLocal(), MatPreallocateSetLocal()
589bd481603SBarry Smith M*/
590d3d32019SBarry Smith #define MatPreallocateSymmetricSetLocal(map,nrows,rows,ncols,cols,dnz,onz) 0;\
591d3d32019SBarry Smith {\
592d3d32019SBarry Smith   int __l;\
593d3d32019SBarry Smith   _4_ierr = ISLocalToGlobalMappingApply(map,nrows,rows,rows);CHKERRQ(_4_ierr);\
594d3d32019SBarry Smith   _4_ierr = ISLocalToGlobalMappingApply(map,ncols,cols,cols);CHKERRQ(_4_ierr);\
595d3d32019SBarry Smith   for (__l=0;__l<nrows;__l++) {\
596d3d32019SBarry Smith     _4_ierr = MatPreallocateSymmetricSet((rows)[__l],ncols,cols,dnz,onz);CHKERRQ(_4_ierr);\
597d3d32019SBarry Smith   }\
598d3d32019SBarry Smith }
599d3d32019SBarry Smith 
600bd481603SBarry Smith /*MC
601bd481603SBarry Smith    MatPreallocateSet - Indicates the locations (rows and columns) in the matrix where nonzeros will be
602bd481603SBarry Smith        inserted using a local number of the rows and columns
603bd481603SBarry Smith 
604bd481603SBarry Smith    Synopsis:
605bd481603SBarry Smith    int MatPreallocateSet(int nrows, int *rows,int ncols, int *cols,int *dnz, int *onz)
606bd481603SBarry Smith 
607bd481603SBarry Smith    Not Collective
608bd481603SBarry Smith 
609bd481603SBarry Smith    Input Parameters:
610bd481603SBarry Smith +  nrows - the number of rows indicated
6111d73ed98SBarry Smith .  rows - the indices of the rows
612bd481603SBarry Smith .  ncols - the number of columns in the matrix
613bd481603SBarry Smith .  cols - the columns indicated
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 
618bd481603SBarry Smith    Level: intermediate
619bd481603SBarry Smith 
620bd481603SBarry Smith    Notes:
621bd481603SBarry Smith    See the chapter in the users manual on performance for more details
622bd481603SBarry Smith 
623bd481603SBarry Smith    Do not malloc or free dnz and onz that is handled internally by these routines
624bd481603SBarry Smith 
625bd481603SBarry Smith   Concepts: preallocation^Matrix
626bd481603SBarry Smith 
627bd481603SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSet(), MatPreallocateInitialize(),
628bd481603SBarry Smith           MatPreallocateInitialize(), MatPreallocateSymmetricSetLocal(), MatPreallocateSetLocal()
629bd481603SBarry Smith M*/
630c4f061fbSSatish Balay #define MatPreallocateSet(row,nc,cols,dnz,onz) 0;\
6317c922b88SBarry Smith { int __i; \
6327c922b88SBarry Smith   for (__i=0; __i<nc; __i++) {\
6337c922b88SBarry Smith     if (cols[__i] < __start || cols[__i] >= __end) onz[row - __rstart]++; \
6347c922b88SBarry Smith   }\
6357c922b88SBarry Smith   dnz[row - __rstart] = nc - onz[row - __rstart];\
6367c922b88SBarry Smith }
6377c922b88SBarry Smith 
638bd481603SBarry Smith /*MC
639bd481603SBarry Smith    MatPreallocateSymmetricSet - Indicates the locations (rows and columns) in the matrix where nonzeros will be
640bd481603SBarry Smith        inserted using a local number of the rows and columns
641bd481603SBarry Smith 
642bd481603SBarry Smith    Synopsis:
643bd481603SBarry Smith    int MatPreallocateSymmetricSet(int nrows, int *rows,int ncols, int *cols,int *dnz, int *onz)
644bd481603SBarry Smith 
645bd481603SBarry Smith    Not Collective
646bd481603SBarry Smith 
647bd481603SBarry Smith    Input Parameters:
648bd481603SBarry Smith +  nrows - the number of rows indicated
6491d73ed98SBarry Smith .  rows - the indices of the rows
650bd481603SBarry Smith .  ncols - the number of columns in the matrix
651bd481603SBarry Smith .  cols - the columns indicated
652bd481603SBarry Smith .  dnz - the array that will be passed to the matrix preallocation routines
653bd481603SBarry Smith -  ozn - the other array passed to the matrix preallocation routines
654bd481603SBarry Smith 
655bd481603SBarry Smith 
656bd481603SBarry Smith    Level: intermediate
657bd481603SBarry Smith 
658bd481603SBarry Smith    Notes:
659bd481603SBarry Smith    See the chapter in the users manual on performance for more details
660bd481603SBarry Smith 
661bd481603SBarry Smith    Do not malloc or free dnz and onz that is handled internally by these routines
662bd481603SBarry Smith 
663bd481603SBarry Smith   Concepts: preallocation^Matrix
664bd481603SBarry Smith 
665bd481603SBarry Smith .seealso: MatPreallocateFinalize(), MatPreallocateSet(), MatPreallocateSymmetricSet(), MatPreallocateInitialize(),
666bd481603SBarry Smith           MatPreallocateInitialize(), MatPreallocateSymmetricSetLocal(), MatPreallocateSetLocal()
667bd481603SBarry Smith M*/
668d3d32019SBarry Smith #define MatPreallocateSymmetricSet(row,nc,cols,dnz,onz) 0;\
669d3d32019SBarry Smith { int __i; \
670d3d32019SBarry Smith   for (__i=0; __i<nc; __i++) {\
671d3d32019SBarry Smith     if (cols[__i] >= __end) onz[row - __rstart]++; \
672d3d32019SBarry Smith     else if (cols[__i] >= row) dnz[row - __rstart]++;\
673d3d32019SBarry Smith   }\
674d3d32019SBarry Smith }
675d3d32019SBarry Smith 
676bd481603SBarry Smith /*MC
677bd481603SBarry Smith    MatPreallocFinalize - Ends the block of code that will count the number of nonzeros per
678bd481603SBarry Smith        row in a matrix providing the data that one can use to correctly preallocate the matrix.
679bd481603SBarry Smith 
680bd481603SBarry Smith    Synopsis:
681bd481603SBarry Smith    int MatPreallocateFinalize(int *dnz, int *onz)
682bd481603SBarry Smith 
683bd481603SBarry Smith    Collective on MPI_Comm
684bd481603SBarry Smith 
685bd481603SBarry Smith    Input Parameters:
686bd481603SBarry Smith +  dnz - the array that will be passed to the matrix preallocation routines
687bd481603SBarry Smith -  ozn - the other array passed to the matrix preallocation routines
688bd481603SBarry Smith 
689bd481603SBarry Smith 
690bd481603SBarry Smith    Level: intermediate
691bd481603SBarry Smith 
692bd481603SBarry Smith    Notes:
693bd481603SBarry Smith    See the chapter in the users manual on performance for more details
694bd481603SBarry Smith 
695bd481603SBarry Smith    Do not malloc or free dnz and onz that is handled internally by these routines
696bd481603SBarry Smith 
697bd481603SBarry Smith   Concepts: preallocation^Matrix
698bd481603SBarry Smith 
699bd481603SBarry Smith .seealso: MatPreallocateInitialize(), MatPreallocateSet(), MatPreallocateSymmetricSet(), MatPreallocateSetLocal(),
700bd481603SBarry Smith           MatPreallocateSymmetricInitialize(), MatPreallocateSymmetricSetLocal()
701bd481603SBarry Smith M*/
702ef66eb69SBarry Smith #define MatPreallocateFinalize(dnz,onz) 0;_4_ierr = PetscFree(dnz);CHKERRQ(_4_ierr);}
7037c922b88SBarry Smith 
704bd481603SBarry Smith 
705bd481603SBarry Smith 
7067b80b807SBarry Smith /* Routines unique to particular data structures */
707435da068SBarry Smith EXTERN int MatShellGetContext(Mat,void **);
708435da068SBarry Smith 
709268466fbSBarry Smith EXTERN int MatBDiagGetData(Mat,int*,int*,int*[],int*[],PetscScalar***);
710ca01db9bSBarry Smith EXTERN int MatSeqAIJSetColumnIndices(Mat,int[]);
711ca01db9bSBarry Smith EXTERN int MatSeqBAIJSetColumnIndices(Mat,int[]);
712ca01db9bSBarry Smith EXTERN int MatCreateSeqAIJWithArrays(MPI_Comm,int,int,int[],int[],PetscScalar[],Mat*);
7137b80b807SBarry Smith 
714ca01db9bSBarry Smith EXTERN int MatSeqBAIJSetPreallocation(Mat,int,int,const int[]);
715ca01db9bSBarry Smith EXTERN int MatSeqSBAIJSetPreallocation(Mat,int,int,const int[]);
716ca01db9bSBarry Smith EXTERN int MatSeqAIJSetPreallocation(Mat,int,const int[]);
717ca01db9bSBarry Smith EXTERN int MatSeqDensePreallocation(Mat,PetscScalar[]);
718ca01db9bSBarry Smith EXTERN int MatSeqBDiagSetPreallocation(Mat,int,int,const int[],PetscScalar*[]);
719ca01db9bSBarry Smith EXTERN int MatSeqDenseSetPreallocation(Mat,PetscScalar[]);
720273d9f13SBarry Smith 
721ca01db9bSBarry Smith EXTERN int MatMPIBAIJSetPreallocation(Mat,int,int,const int[],int,const int[]);
722ca01db9bSBarry Smith EXTERN int MatMPISBAIJSetPreallocation(Mat,int,int,const int[],int,const int[]);
723ca01db9bSBarry Smith EXTERN int MatMPIAIJSetPreallocation(Mat,int,const int[],int,const int[]);
724ca01db9bSBarry Smith EXTERN int MatMPIDensePreallocation(Mat,PetscScalar[]);
725ca01db9bSBarry Smith EXTERN int MatMPIBDiagSetPreallocation(Mat,int,int,const int[],PetscScalar*[]);
726ca01db9bSBarry Smith EXTERN int MatMPIAdjSetPreallocation(Mat,int[],int[],int[]);
727ca01db9bSBarry Smith EXTERN int MatMPIDenseSetPreallocation(Mat,PetscScalar[]);
728ca01db9bSBarry Smith EXTERN int MatMPIRowbsSetPreallocation(Mat,int,const int[]);
729268466fbSBarry Smith EXTERN int MatMPIAIJGetSeqAIJ(Mat,Mat*,Mat*,int*[]);
730268466fbSBarry Smith EXTERN int MatMPIBAIJGetSeqBAIJ(Mat,Mat*,Mat*,int*[]);
7313a7fca6bSBarry Smith EXTERN int MatAdicSetLocalFunction(Mat,void (*)(void));
732273d9f13SBarry Smith 
7331b807ce4Svictorle EXTERN int MatSeqDenseSetLDA(Mat,int);
7341b807ce4Svictorle 
735ca44d042SBarry Smith EXTERN int MatStoreValues(Mat);
736ca44d042SBarry Smith EXTERN int MatRetrieveValues(Mat);
7372e8a6d31SBarry Smith 
7383a7fca6bSBarry Smith EXTERN int MatDAADSetCtx(Mat,void*);
7393a7fca6bSBarry Smith 
7407b80b807SBarry Smith /*
7417b80b807SBarry Smith   These routines are not usually accessed directly, rather solving is
74294b7f48cSBarry Smith   done through the KSP and PC interfaces.
7437b80b807SBarry Smith */
7447b80b807SBarry Smith 
745d9274352SBarry Smith /*E
746d9274352SBarry Smith     MatOrderingType - String with the name of a PETSc matrix ordering or the creation function
747d9274352SBarry Smith        with an optional dynamic library name, for example
748d9274352SBarry Smith        http://www.mcs.anl.gov/petsc/lib.a:orderingcreate()
749d9274352SBarry Smith 
750d9274352SBarry Smith    Level: beginner
751d9274352SBarry Smith 
752d9274352SBarry Smith .seealso: MatGetOrdering()
753d9274352SBarry Smith E*/
75449773a63SBarry Smith #define MatOrderingType char*
755b12f92e5SBarry Smith #define MATORDERING_NATURAL   "natural"
756b12f92e5SBarry Smith #define MATORDERING_ND        "nd"
757b12f92e5SBarry Smith #define MATORDERING_1WD       "1wd"
758b12f92e5SBarry Smith #define MATORDERING_RCM       "rcm"
759b12f92e5SBarry Smith #define MATORDERING_QMD       "qmd"
760b12f92e5SBarry Smith #define MATORDERING_ROWLENGTH "rowlength"
76162152c8bSBarry Smith #define MATORDERING_DSC_ND    "dsc_nd"
76262152c8bSBarry Smith #define MATORDERING_DSC_MMD   "dsc_mmd"
76362152c8bSBarry Smith #define MATORDERING_DSC_MDF   "dsc_mdf"
764c06d978dSMatthew Knepley #define MATORDERING_CONSTRAINED "constrained"
765c06d978dSMatthew Knepley #define MATORDERING_IDENTITY  "identity"
766c06d978dSMatthew Knepley #define MATORDERING_REVERSE   "reverse"
767b12f92e5SBarry Smith 
768beff0ce9SBarry Smith EXTERN int MatGetOrdering(Mat,const MatOrderingType,IS*,IS*);
769234db7c0SBarry Smith EXTERN int MatOrderingRegister(const char[],const char[],const char[],int(*)(Mat,const MatOrderingType,IS*,IS*));
77030de9b25SBarry Smith 
77130de9b25SBarry Smith /*MC
77230de9b25SBarry Smith    MatOrderingRegisterDynamic - Adds a new sparse matrix ordering to the
77330de9b25SBarry Smith                                matrix package.
77430de9b25SBarry Smith 
77530de9b25SBarry Smith    Synopsis:
77630de9b25SBarry Smith    int MatOrderingRegisterDynamic(char *name_ordering,char *path,char *name_create,int (*routine_create)(MatOrdering))
77730de9b25SBarry Smith 
77830de9b25SBarry Smith    Not Collective
77930de9b25SBarry Smith 
78030de9b25SBarry Smith    Input Parameters:
78130de9b25SBarry Smith +  sname - name of ordering (for example MATORDERING_ND)
78230de9b25SBarry Smith .  path - location of library where creation routine is
78330de9b25SBarry Smith .  name - name of function that creates the ordering type,a string
78430de9b25SBarry Smith -  function - function pointer that creates the ordering
78530de9b25SBarry Smith 
78630de9b25SBarry Smith    Level: developer
78730de9b25SBarry Smith 
78830de9b25SBarry Smith    If dynamic libraries are used, then the fourth input argument (function)
78930de9b25SBarry Smith    is ignored.
79030de9b25SBarry Smith 
79130de9b25SBarry Smith    Sample usage:
79230de9b25SBarry Smith .vb
79330de9b25SBarry Smith    MatOrderingRegisterDynamic("my_order",/home/username/my_lib/lib/libO/solaris/mylib.a,
79430de9b25SBarry Smith                "MyOrder",MyOrder);
79530de9b25SBarry Smith .ve
79630de9b25SBarry Smith 
79730de9b25SBarry Smith    Then, your partitioner can be chosen with the procedural interface via
79830de9b25SBarry Smith $     MatOrderingSetType(part,"my_order)
79930de9b25SBarry Smith    or at runtime via the option
80030de9b25SBarry Smith $     -pc_ilu_mat_ordering_type my_order
80130de9b25SBarry Smith $     -pc_lu_mat_ordering_type my_order
80230de9b25SBarry Smith 
80330de9b25SBarry Smith    ${PETSC_ARCH} and ${BOPT} occuring in pathname will be replaced with appropriate values.
80430de9b25SBarry Smith 
80530de9b25SBarry Smith .keywords: matrix, ordering, register
80630de9b25SBarry Smith 
80730de9b25SBarry Smith .seealso: MatOrderingRegisterDestroy(), MatOrderingRegisterAll()
80830de9b25SBarry Smith M*/
809aa482453SBarry Smith #if defined(PETSC_USE_DYNAMIC_LIBRARIES)
810f1af5d2fSBarry Smith #define MatOrderingRegisterDynamic(a,b,c,d) MatOrderingRegister(a,b,c,0)
811b12f92e5SBarry Smith #else
812f1af5d2fSBarry Smith #define MatOrderingRegisterDynamic(a,b,c,d) MatOrderingRegister(a,b,c,d)
813b12f92e5SBarry Smith #endif
81430de9b25SBarry Smith 
815ca44d042SBarry Smith EXTERN int        MatOrderingRegisterDestroy(void);
8160e33f6ddSBarry Smith EXTERN int        MatOrderingRegisterAll(const char[]);
8172bad1931SBarry Smith extern PetscTruth MatOrderingRegisterAllCalled;
818b0a32e0cSBarry Smith extern PetscFList MatOrderingList;
819d4fbbf0eSBarry Smith 
82087828ca2SBarry Smith EXTERN int MatReorderForNonzeroDiagonal(Mat,PetscReal,IS,IS);
821a2ce50c7SBarry Smith 
822d91e6319SBarry Smith /*S
82315e8a5b3SHong Zhang    MatFactorInfo - Data based into the matrix factorization routines
824b00f7748SHong Zhang 
82515e8a5b3SHong Zhang    In Fortran these are simply double precision arrays of size MAT_FACTORINFO_SIZE
826b00f7748SHong Zhang 
82715e8a5b3SHong Zhang    Notes: These are not usually directly used by users, instead use PC type of LU, ILU, CHOLESKY or ICC.
828b00f7748SHong Zhang 
829b00f7748SHong Zhang    Level: developer
830b00f7748SHong Zhang 
831b380c88cSHong Zhang .seealso: MatLUFactorSymbolic(), MatILUFactorSymbolic(), MatCholeskyFactorSymbolic(), MatICCFactorSymbolic(), MatICCFactor()
832b00f7748SHong Zhang 
833b00f7748SHong Zhang S*/
834b00f7748SHong Zhang typedef struct {
83515e8a5b3SHong Zhang   PetscReal     damping;        /* scaling of identity added to matrix to prevent zero pivots */
8362cea7109SBarry Smith   PetscReal     shift;          /* if true, shift until positive pivots */
8372cea7109SBarry Smith   PetscReal     shift_fraction; /* record shift fraction taken */
83815e8a5b3SHong Zhang   PetscReal     diagonal_fill;  /* force diagonal to fill in if initially not filled */
83915e8a5b3SHong Zhang   PetscReal     dt;             /* drop tolerance */
840b00f7748SHong Zhang   PetscReal     dtcol;          /* tolerance for pivoting */
84115e8a5b3SHong Zhang   PetscReal     dtcount;        /* maximum nonzeros to be allowed per row */
842f6275e2eSBarry Smith   PetscReal     fill;           /* expected fill; nonzeros in factored matrix/nonzeros in original matrix*/
843348344bbSBarry Smith   PetscReal     levels;         /* ICC/ILU(levels) */
844bcd9e38bSBarry Smith   PetscReal     pivotinblocks;  /* for BAIJ and SBAIJ matrices pivot in factorization on blocks, default 1.0
845bcd9e38bSBarry Smith                                    factorization may be faster if do not pivot */
84615e8a5b3SHong Zhang   PetscReal     zeropivot;      /* pivot is called zero if less than this */
84715e8a5b3SHong Zhang } MatFactorInfo;
848ffa6d0a5SLois Curfman McInnes 
84915e8a5b3SHong Zhang EXTERN int MatCholeskyFactor(Mat,IS,MatFactorInfo*);
85015e8a5b3SHong Zhang EXTERN int MatCholeskyFactorSymbolic(Mat,IS,MatFactorInfo*,Mat*);
85115e8a5b3SHong Zhang EXTERN int MatCholeskyFactorNumeric(Mat,Mat*);
852b380c88cSHong Zhang EXTERN int MatLUFactor(Mat,IS,IS,MatFactorInfo*);
853b380c88cSHong Zhang EXTERN int MatILUFactor(Mat,IS,IS,MatFactorInfo*);
854b380c88cSHong Zhang EXTERN int MatLUFactorSymbolic(Mat,IS,IS,MatFactorInfo*,Mat*);
855b380c88cSHong Zhang EXTERN int MatILUFactorSymbolic(Mat,IS,IS,MatFactorInfo*,Mat*);
85615e8a5b3SHong Zhang EXTERN int MatICCFactorSymbolic(Mat,IS,MatFactorInfo*,Mat*);
85715e8a5b3SHong Zhang EXTERN int MatICCFactor(Mat,IS,MatFactorInfo*);
858ca44d042SBarry Smith EXTERN int MatLUFactorNumeric(Mat,Mat*);
859b380c88cSHong Zhang EXTERN int MatILUDTFactor(Mat,MatFactorInfo*,IS,IS,Mat *);
8603e0d88b5SBarry Smith EXTERN int MatGetInertia(Mat,int*,int*,int*);
861ca44d042SBarry Smith EXTERN int MatSolve(Mat,Vec,Vec);
862ca44d042SBarry Smith EXTERN int MatForwardSolve(Mat,Vec,Vec);
863ca44d042SBarry Smith EXTERN int MatBackwardSolve(Mat,Vec,Vec);
864ca44d042SBarry Smith EXTERN int MatSolveAdd(Mat,Vec,Vec,Vec);
865ca44d042SBarry Smith EXTERN int MatSolveTranspose(Mat,Vec,Vec);
866ca44d042SBarry Smith EXTERN int MatSolveTransposeAdd(Mat,Vec,Vec,Vec);
867d59c15a7SBarry Smith EXTERN int MatSolves(Mat,Vecs,Vecs);
8688ed539a5SBarry Smith 
869ca44d042SBarry Smith EXTERN int MatSetUnfactored(Mat);
870bb5a7306SBarry Smith 
871d91e6319SBarry Smith /*E
872d91e6319SBarry Smith     MatSORType - What type of (S)SOR to perform
873bb1eb677SSatish Balay 
874d91e6319SBarry Smith     Level: beginner
875d91e6319SBarry Smith 
876d9274352SBarry Smith    May be bitwise ORd together
877d9274352SBarry Smith 
878d91e6319SBarry Smith    Any additions/changes here MUST also be made in include/finclude/petscmat.h
879d91e6319SBarry Smith 
8804e7234bfSBarry Smith    MatSORType may be bitwise ORd together, so do not change the numbers
8814e7234bfSBarry Smith 
882a1d92eedSBarry Smith .seealso: MatRelax(), MatPBRelax()
883d91e6319SBarry Smith E*/
884ee50ffe9SBarry Smith typedef enum {SOR_FORWARD_SWEEP=1,SOR_BACKWARD_SWEEP=2,SOR_SYMMETRIC_SWEEP=3,
885ee50ffe9SBarry Smith               SOR_LOCAL_FORWARD_SWEEP=4,SOR_LOCAL_BACKWARD_SWEEP=8,
886ee50ffe9SBarry Smith               SOR_LOCAL_SYMMETRIC_SWEEP=12,SOR_ZERO_INITIAL_GUESS=16,
88784cb2905SBarry Smith               SOR_EISENSTAT=32,SOR_APPLY_UPPER=64,SOR_APPLY_LOWER=128} MatSORType;
888c14dc6b6SHong Zhang EXTERN int MatRelax(Mat,Vec,PetscReal,MatSORType,PetscReal,int,int,Vec);
889a1d92eedSBarry Smith EXTERN int MatPBRelax(Mat,Vec,PetscReal,MatSORType,PetscReal,int,int,Vec);
8908ed539a5SBarry Smith 
891d4fbbf0eSBarry Smith /*
892639f9d9dSBarry Smith     These routines are for efficiently computing Jacobians via finite differences.
893639f9d9dSBarry Smith */
894b12f92e5SBarry Smith 
895d9274352SBarry Smith /*E
896d9274352SBarry Smith     MatColoringType - String with the name of a PETSc matrix coloring or the creation function
897d9274352SBarry Smith        with an optional dynamic library name, for example
898d9274352SBarry Smith        http://www.mcs.anl.gov/petsc/lib.a:coloringcreate()
899d9274352SBarry Smith 
900d9274352SBarry Smith    Level: beginner
901d9274352SBarry Smith 
902d9274352SBarry Smith .seealso: MatGetColoring()
903d9274352SBarry Smith E*/
90449773a63SBarry Smith #define MatColoringType char*
905b12f92e5SBarry Smith #define MATCOLORING_NATURAL "natural"
906b12f92e5SBarry Smith #define MATCOLORING_SL      "sl"
907b12f92e5SBarry Smith #define MATCOLORING_LF      "lf"
908b12f92e5SBarry Smith #define MATCOLORING_ID      "id"
909b12f92e5SBarry Smith 
910234db7c0SBarry Smith EXTERN int MatGetColoring(Mat,const MatColoringType,ISColoring*);
911234db7c0SBarry Smith EXTERN int MatColoringRegister(const char[],const char[],const char[],int(*)(Mat,const MatColoringType,ISColoring *));
91230de9b25SBarry Smith 
91330de9b25SBarry Smith /*MC
91430de9b25SBarry Smith    MatColoringRegisterDynamic - Adds a new sparse matrix coloring to the
91530de9b25SBarry Smith                                matrix package.
91630de9b25SBarry Smith 
91730de9b25SBarry Smith    Synopsis:
91830de9b25SBarry Smith    int MatColoringRegisterDynamic(char *name_coloring,char *path,char *name_create,int (*routine_create)(MatColoring))
91930de9b25SBarry Smith 
92030de9b25SBarry Smith    Not Collective
92130de9b25SBarry Smith 
92230de9b25SBarry Smith    Input Parameters:
92330de9b25SBarry Smith +  sname - name of Coloring (for example MATCOLORING_SL)
92430de9b25SBarry Smith .  path - location of library where creation routine is
92530de9b25SBarry Smith .  name - name of function that creates the Coloring type, a string
92630de9b25SBarry Smith -  function - function pointer that creates the coloring
92730de9b25SBarry Smith 
92830de9b25SBarry Smith    Level: developer
92930de9b25SBarry Smith 
93030de9b25SBarry Smith    If dynamic libraries are used, then the fourth input argument (function)
93130de9b25SBarry Smith    is ignored.
93230de9b25SBarry Smith 
93330de9b25SBarry Smith    Sample usage:
93430de9b25SBarry Smith .vb
93530de9b25SBarry Smith    MatColoringRegisterDynamic("my_color",/home/username/my_lib/lib/libO/solaris/mylib.a,
93630de9b25SBarry Smith                "MyColor",MyColor);
93730de9b25SBarry Smith .ve
93830de9b25SBarry Smith 
93930de9b25SBarry Smith    Then, your partitioner can be chosen with the procedural interface via
94030de9b25SBarry Smith $     MatColoringSetType(part,"my_color")
94130de9b25SBarry Smith    or at runtime via the option
94230de9b25SBarry Smith $     -mat_coloring_type my_color
94330de9b25SBarry Smith 
94430de9b25SBarry Smith    $PETSC_ARCH and $BOPT occuring in pathname will be replaced with appropriate values.
94530de9b25SBarry Smith 
94630de9b25SBarry Smith .keywords: matrix, Coloring, register
94730de9b25SBarry Smith 
94830de9b25SBarry Smith .seealso: MatColoringRegisterDestroy(), MatColoringRegisterAll()
94930de9b25SBarry Smith M*/
950aa482453SBarry Smith #if defined(PETSC_USE_DYNAMIC_LIBRARIES)
951f1af5d2fSBarry Smith #define MatColoringRegisterDynamic(a,b,c,d) MatColoringRegister(a,b,c,0)
952b12f92e5SBarry Smith #else
953f1af5d2fSBarry Smith #define MatColoringRegisterDynamic(a,b,c,d) MatColoringRegister(a,b,c,d)
954b12f92e5SBarry Smith #endif
95530de9b25SBarry Smith 
9560e33f6ddSBarry Smith EXTERN int        MatColoringRegisterAll(const char[]);
9572bad1931SBarry Smith extern PetscTruth MatColoringRegisterAllCalled;
958ca44d042SBarry Smith EXTERN int        MatColoringRegisterDestroy(void);
9594e7234bfSBarry Smith EXTERN int        MatColoringPatch(Mat,int,int,const ISColoringValue[],ISColoring*);
960639f9d9dSBarry Smith 
961d9274352SBarry Smith /*S
962d9274352SBarry Smith      MatFDColoring - Object for computing a sparse Jacobian via finite differences
963d9274352SBarry Smith         and coloring
964639f9d9dSBarry Smith 
965d9274352SBarry Smith    Level: beginner
966d9274352SBarry Smith 
967d9274352SBarry Smith   Concepts: coloring, sparse Jacobian, finite differences
968d9274352SBarry Smith 
969d9274352SBarry Smith .seealso:  MatFDColoringCreate()
970d9274352SBarry Smith S*/
971e2a1c21fSSatish Balay typedef struct _p_MatFDColoring *MatFDColoring;
972639f9d9dSBarry Smith 
973ca44d042SBarry Smith EXTERN int MatFDColoringCreate(Mat,ISColoring,MatFDColoring *);
974ca44d042SBarry Smith EXTERN int MatFDColoringDestroy(MatFDColoring);
975b0a32e0cSBarry Smith EXTERN int MatFDColoringView(MatFDColoring,PetscViewer);
976ca44d042SBarry Smith EXTERN int MatFDColoringSetFunction(MatFDColoring,int (*)(void),void*);
97787828ca2SBarry Smith EXTERN int MatFDColoringSetParameters(MatFDColoring,PetscReal,PetscReal);
978ca44d042SBarry Smith EXTERN int MatFDColoringSetFrequency(MatFDColoring,int);
979ca44d042SBarry Smith EXTERN int MatFDColoringGetFrequency(MatFDColoring,int*);
980ca44d042SBarry Smith EXTERN int MatFDColoringSetFromOptions(MatFDColoring);
981ca44d042SBarry Smith EXTERN int MatFDColoringApply(Mat,MatFDColoring,Vec,MatStructure*,void *);
98287828ca2SBarry Smith EXTERN int MatFDColoringApplyTS(Mat,MatFDColoring,PetscReal,Vec,MatStructure*,void *);
98362152c8bSBarry Smith EXTERN int MatFDColoringSetRecompute(MatFDColoring);
9843a7fca6bSBarry Smith EXTERN int MatFDColoringSetF(MatFDColoring,Vec);
9854e7234bfSBarry Smith EXTERN int MatFDColoringGetPerturbedColumns(MatFDColoring,int*,int*[]);
986639f9d9dSBarry Smith /*
9870752156aSBarry Smith     These routines are for partitioning matrices: currently used only
9883eda8832SBarry Smith   for adjacency matrix, MatCreateMPIAdj().
9890752156aSBarry Smith */
990ca161407SBarry Smith 
991d9274352SBarry Smith /*S
992d9274352SBarry Smith      MatPartitioning - Object for managing the partitioning of a matrix or graph
993d9274352SBarry Smith 
994d9274352SBarry Smith    Level: beginner
995d9274352SBarry Smith 
996d9274352SBarry Smith   Concepts: partitioning
997d9274352SBarry Smith 
998743a1026Svictorle .seealso:  MatPartitioningCreate(), MatPartitioningType
999d9274352SBarry Smith S*/
100091e9ee9fSBarry Smith typedef struct _p_MatPartitioning *MatPartitioning;
1001d9274352SBarry Smith 
1002d9274352SBarry Smith /*E
10035bc6e7ccSvictorle     MatPartitioningType - String with the name of a PETSc matrix partitioning or the creation function
1004d9274352SBarry Smith        with an optional dynamic library name, for example
1005d9274352SBarry Smith        http://www.mcs.anl.gov/petsc/lib.a:partitioningcreate()
1006d9274352SBarry Smith 
1007d9274352SBarry Smith    Level: beginner
1008d9274352SBarry Smith 
1009b547a13bSvictorle .seealso: MatPartitioningCreate(), MatPartitioning
1010d9274352SBarry Smith E*/
101149773a63SBarry Smith #define MatPartitioningType char*
10128ba1e511SMatthew Knepley #define MAT_PARTITIONING_CURRENT  "current"
10138ba1e511SMatthew Knepley #define MAT_PARTITIONING_PARMETIS "parmetis"
101471306c60Sjroman #define MAT_PARTITIONING_CHACO    "chaco"
101571306c60Sjroman #define MAT_PARTITIONING_JOSTLE   "jostle"
101671306c60Sjroman #define MAT_PARTITIONING_PARTY    "party"
101771306c60Sjroman #define MAT_PARTITIONING_SCOTCH   "scotch"
101871306c60Sjroman 
1019ca161407SBarry Smith 
1020ca44d042SBarry Smith EXTERN int MatPartitioningCreate(MPI_Comm,MatPartitioning*);
10210e33f6ddSBarry Smith EXTERN int MatPartitioningSetType(MatPartitioning,const MatPartitioningType);
10225bc6e7ccSvictorle EXTERN int MatPartitioningSetNParts(MatPartitioning,int);
1023ca44d042SBarry Smith EXTERN int MatPartitioningSetAdjacency(MatPartitioning,Mat);
10244e7234bfSBarry Smith EXTERN int MatPartitioningSetVertexWeights(MatPartitioning,const int[]);
10254e7234bfSBarry Smith EXTERN int MatPartitioningSetPartitionWeights(MatPartitioning,const PetscReal []);
1026ca44d042SBarry Smith EXTERN int MatPartitioningApply(MatPartitioning,IS*);
1027ca44d042SBarry Smith EXTERN int MatPartitioningDestroy(MatPartitioning);
10282aabb6bbSBarry Smith 
10290e33f6ddSBarry Smith EXTERN int MatPartitioningRegister(const char[],const char[],const char[],int(*)(MatPartitioning));
103030de9b25SBarry Smith 
103130de9b25SBarry Smith /*MC
103230de9b25SBarry Smith    MatPartitioningRegisterDynamic - Adds a new sparse matrix partitioning to the
103330de9b25SBarry Smith    matrix package.
103430de9b25SBarry Smith 
103530de9b25SBarry Smith    Synopsis:
103630de9b25SBarry Smith    int MatPartitioningRegisterDynamic(char *name_partitioning,char *path,char *name_create,int (*routine_create)(MatPartitioning))
103730de9b25SBarry Smith 
103830de9b25SBarry Smith    Not Collective
103930de9b25SBarry Smith 
104030de9b25SBarry Smith    Input Parameters:
104130de9b25SBarry Smith +  sname - name of partitioning (for example MAT_PARTITIONING_CURRENT) or parmetis
104230de9b25SBarry Smith .  path - location of library where creation routine is
104330de9b25SBarry Smith .  name - name of function that creates the partitioning type, a string
104430de9b25SBarry Smith -  function - function pointer that creates the partitioning type
104530de9b25SBarry Smith 
104630de9b25SBarry Smith    Level: developer
104730de9b25SBarry Smith 
104830de9b25SBarry Smith    If dynamic libraries are used, then the fourth input argument (function)
104930de9b25SBarry Smith    is ignored.
105030de9b25SBarry Smith 
105130de9b25SBarry Smith    Sample usage:
105230de9b25SBarry Smith .vb
105330de9b25SBarry Smith    MatPartitioningRegisterDynamic("my_part",/home/username/my_lib/lib/libO/solaris/mylib.a,
105430de9b25SBarry Smith                "MyPartCreate",MyPartCreate);
105530de9b25SBarry Smith .ve
105630de9b25SBarry Smith 
105730de9b25SBarry Smith    Then, your partitioner can be chosen with the procedural interface via
105830de9b25SBarry Smith $     MatPartitioningSetType(part,"my_part")
105930de9b25SBarry Smith    or at runtime via the option
106030de9b25SBarry Smith $     -mat_partitioning_type my_part
106130de9b25SBarry Smith 
106230de9b25SBarry Smith    $PETSC_ARCH and $BOPT occuring in pathname will be replaced with appropriate values.
106330de9b25SBarry Smith 
106430de9b25SBarry Smith .keywords: matrix, partitioning, register
106530de9b25SBarry Smith 
106630de9b25SBarry Smith .seealso: MatPartitioningRegisterDestroy(), MatPartitioningRegisterAll()
106730de9b25SBarry Smith M*/
1068aa482453SBarry Smith #if defined(PETSC_USE_DYNAMIC_LIBRARIES)
1069f1af5d2fSBarry Smith #define MatPartitioningRegisterDynamic(a,b,c,d) MatPartitioningRegister(a,b,c,0)
10702aabb6bbSBarry Smith #else
1071f1af5d2fSBarry Smith #define MatPartitioningRegisterDynamic(a,b,c,d) MatPartitioningRegister(a,b,c,d)
10722aabb6bbSBarry Smith #endif
10732aabb6bbSBarry Smith 
10740e33f6ddSBarry Smith EXTERN int        MatPartitioningRegisterAll(const char[]);
10752bad1931SBarry Smith extern PetscTruth MatPartitioningRegisterAllCalled;
1076ca44d042SBarry Smith EXTERN int        MatPartitioningRegisterDestroy(void);
10772bad1931SBarry Smith 
1078b0a32e0cSBarry Smith EXTERN int MatPartitioningView(MatPartitioning,PetscViewer);
1079ca44d042SBarry Smith EXTERN int MatPartitioningSetFromOptions(MatPartitioning);
1080ca44d042SBarry Smith EXTERN int MatPartitioningGetType(MatPartitioning,MatPartitioningType*);
1081ca161407SBarry Smith 
1082ca44d042SBarry Smith EXTERN int MatPartitioningParmetisSetCoarseSequential(MatPartitioning);
10830752156aSBarry Smith 
108471306c60Sjroman EXTERN int MatPartitioningJostleSetCoarseLevel(MatPartitioning,PetscReal);
108571306c60Sjroman EXTERN int MatPartitioningJostleSetCoarseSequential(MatPartitioning);
108671306c60Sjroman 
108771306c60Sjroman typedef enum { MP_CHACO_MULTILEVEL_KL, MP_CHACO_SPECTRAL, MP_CHACO_LINEAR,
108871306c60Sjroman     MP_CHACO_RANDOM, MP_CHACO_SCATTERED } MPChacoGlobalType;
108971306c60Sjroman EXTERN int MatPartitioningChacoSetGlobal(MatPartitioning, MPChacoGlobalType);
109071306c60Sjroman typedef enum { MP_CHACO_KERNIGHAN_LIN, MP_CHACO_NONE } MPChacoLocalType;
109171306c60Sjroman EXTERN int MatPartitioningChacoSetLocal(MatPartitioning, MPChacoLocalType);
109271306c60Sjroman EXTERN int MatPartitioningChacoSetCoarseLevel(MatPartitioning,PetscReal);
109371306c60Sjroman typedef enum { MP_CHACO_LANCZOS, MP_CHACO_RQI_SYMMLQ } MPChacoEigenType;
109471306c60Sjroman EXTERN int MatPartitioningChacoSetEigenSolver(MatPartitioning,MPChacoEigenType);
109571306c60Sjroman EXTERN int MatPartitioningChacoSetEigenTol(MatPartitioning, PetscReal);
109671306c60Sjroman EXTERN int MatPartitioningChacoSetEigenNumber(MatPartitioning, int);
109771306c60Sjroman 
109871306c60Sjroman #define MP_PARTY_OPT "opt"
109971306c60Sjroman #define MP_PARTY_LIN "lin"
110071306c60Sjroman #define MP_PARTY_SCA "sca"
110171306c60Sjroman #define MP_PARTY_RAN "ran"
110271306c60Sjroman #define MP_PARTY_GBF "gbf"
110371306c60Sjroman #define MP_PARTY_GCF "gcf"
110471306c60Sjroman #define MP_PARTY_BUB "bub"
110571306c60Sjroman #define MP_PARTY_DEF "def"
110671306c60Sjroman EXTERN int MatPartitioningPartySetGlobal(MatPartitioning, const char*);
110771306c60Sjroman #define MP_PARTY_HELPFUL_SETS "hs"
110871306c60Sjroman #define MP_PARTY_KERNIGHAN_LIN "kl"
110971306c60Sjroman #define MP_PARTY_NONE "no"
111071306c60Sjroman EXTERN int MatPartitioningPartySetLocal(MatPartitioning, const char*);
111171306c60Sjroman EXTERN int MatPartitioningPartySetCoarseLevel(MatPartitioning,PetscReal);
111271306c60Sjroman EXTERN int MatPartitioningPartySetBipart(MatPartitioning,PetscTruth);
111371306c60Sjroman EXTERN int MatPartitioningPartySetMatchOptimization(MatPartitioning,PetscTruth);
111471306c60Sjroman 
111571306c60Sjroman typedef enum { MP_SCOTCH_GREEDY, MP_SCOTCH_GPS, MP_SCOTCH_GR_GPS } MPScotchGlobalType;
111671306c60Sjroman EXTERN int MatPartitioningScotchSetArch(MatPartitioning,const char*);
111771306c60Sjroman EXTERN int MatPartitioningScotchSetMultilevel(MatPartitioning);
111871306c60Sjroman EXTERN int MatPartitioningScotchSetGlobal(MatPartitioning,MPScotchGlobalType);
111971306c60Sjroman EXTERN int MatPartitioningScotchSetCoarseLevel(MatPartitioning,PetscReal);
112071306c60Sjroman EXTERN int MatPartitioningScotchSetHostList(MatPartitioning,const char*);
112171306c60Sjroman typedef enum { MP_SCOTCH_KERNIGHAN_LIN, MP_SCOTCH_NONE } MPScotchLocalType;
112271306c60Sjroman EXTERN int MatPartitioningScotchSetLocal(MatPartitioning,MPScotchLocalType);
112371306c60Sjroman EXTERN int MatPartitioningScotchSetMapping(MatPartitioning);
112471306c60Sjroman EXTERN int MatPartitioningScotchSetStrategy(MatPartitioning,char*);
112571306c60Sjroman 
11260752156aSBarry Smith /*
11270a835dfdSSatish Balay     If you add entries here you must also add them to finclude/petscmat.h
1128d4fbbf0eSBarry Smith */
11291c1c02c0SLois Curfman McInnes typedef enum { MATOP_SET_VALUES=0,
11301c1c02c0SLois Curfman McInnes                MATOP_GET_ROW=1,
11311c1c02c0SLois Curfman McInnes                MATOP_RESTORE_ROW=2,
11321c1c02c0SLois Curfman McInnes                MATOP_MULT=3,
11331c1c02c0SLois Curfman McInnes                MATOP_MULT_ADD=4,
11347c922b88SBarry Smith                MATOP_MULT_TRANSPOSE=5,
11357c922b88SBarry Smith                MATOP_MULT_TRANSPOSE_ADD=6,
11361c1c02c0SLois Curfman McInnes                MATOP_SOLVE=7,
11371c1c02c0SLois Curfman McInnes                MATOP_SOLVE_ADD=8,
11387c922b88SBarry Smith                MATOP_SOLVE_TRANSPOSE=9,
11397c922b88SBarry Smith                MATOP_SOLVE_TRANSPOSE_ADD=10,
11401c1c02c0SLois Curfman McInnes                MATOP_LUFACTOR=11,
11411c1c02c0SLois Curfman McInnes                MATOP_CHOLESKYFACTOR=12,
11421c1c02c0SLois Curfman McInnes                MATOP_RELAX=13,
11431c1c02c0SLois Curfman McInnes                MATOP_TRANSPOSE=14,
11441c1c02c0SLois Curfman McInnes                MATOP_GETINFO=15,
11451c1c02c0SLois Curfman McInnes                MATOP_EQUAL=16,
11461c1c02c0SLois Curfman McInnes                MATOP_GET_DIAGONAL=17,
11471c1c02c0SLois Curfman McInnes                MATOP_DIAGONAL_SCALE=18,
11481c1c02c0SLois Curfman McInnes                MATOP_NORM=19,
11491c1c02c0SLois Curfman McInnes                MATOP_ASSEMBLY_BEGIN=20,
11501c1c02c0SLois Curfman McInnes                MATOP_ASSEMBLY_END=21,
11511c1c02c0SLois Curfman McInnes                MATOP_COMPRESS=22,
11521c1c02c0SLois Curfman McInnes                MATOP_SET_OPTION=23,
11531c1c02c0SLois Curfman McInnes                MATOP_ZERO_ENTRIES=24,
11541c1c02c0SLois Curfman McInnes                MATOP_ZERO_ROWS=25,
11551c1c02c0SLois Curfman McInnes                MATOP_LUFACTOR_SYMBOLIC=26,
11561c1c02c0SLois Curfman McInnes                MATOP_LUFACTOR_NUMERIC=27,
11571c1c02c0SLois Curfman McInnes                MATOP_CHOLESKY_FACTOR_SYMBOLIC=28,
11581c1c02c0SLois Curfman McInnes                MATOP_CHOLESKY_FACTOR_NUMERIC=29,
1159d643ce63SMatthew Knepley                MATOP_SETUP_PREALLOCATION=30,
1160d643ce63SMatthew Knepley                MATOP_ILUFACTOR_SYMBOLIC=31,
1161d643ce63SMatthew Knepley                MATOP_ICCFACTOR_SYMBOLIC=32,
1162d643ce63SMatthew Knepley                MATOP_GET_ARRAY=33,
1163d643ce63SMatthew Knepley                MATOP_RESTORE_ARRAY=34,
1164d643ce63SMatthew Knepley                MATOP_DUPLCIATE=35,
1165d643ce63SMatthew Knepley                MATOP_FORWARD_SOLVE=36,
1166d643ce63SMatthew Knepley                MATOP_BACKWARD_SOLVE=37,
1167d643ce63SMatthew Knepley                MATOP_ILUFACTOR=38,
1168d643ce63SMatthew Knepley                MATOP_ICCFACTOR=39,
1169d643ce63SMatthew Knepley                MATOP_AXPY=40,
1170d643ce63SMatthew Knepley                MATOP_GET_SUBMATRICES=41,
1171d643ce63SMatthew Knepley                MATOP_INCREASE_OVERLAP=42,
1172d643ce63SMatthew Knepley                MATOP_GET_VALUES=43,
1173d643ce63SMatthew Knepley                MATOP_COPY=44,
1174d643ce63SMatthew Knepley                MATOP_PRINT_HELP=45,
1175d643ce63SMatthew Knepley                MATOP_SCALE=46,
1176d643ce63SMatthew Knepley                MATOP_SHIFT=47,
1177d643ce63SMatthew Knepley                MATOP_DIAGONAL_SHIFT=48,
1178d643ce63SMatthew Knepley                MATOP_ILUDT_FACTOR=49,
1179d643ce63SMatthew Knepley                MATOP_GET_BLOCK_SIZE=50,
1180d643ce63SMatthew Knepley                MATOP_GET_ROW_IJ=51,
1181d643ce63SMatthew Knepley                MATOP_RESTORE_ROW_IJ=52,
1182d643ce63SMatthew Knepley                MATOP_GET_COLUMN_IJ=53,
1183d643ce63SMatthew Knepley                MATOP_RESTORE_COLUMN_IJ=54,
1184d643ce63SMatthew Knepley                MATOP_FDCOLORING_CREATE=55,
1185d643ce63SMatthew Knepley                MATOP_COLORING_PATCH=56,
1186d643ce63SMatthew Knepley                MATOP_SET_UNFACTORED=57,
1187d643ce63SMatthew Knepley                MATOP_PERMUTE=58,
1188d643ce63SMatthew Knepley                MATOP_SET_VALUES_BLOCKED=59,
1189d643ce63SMatthew Knepley                MATOP_GET_SUBMATRIX=60,
1190d643ce63SMatthew Knepley                MATOP_DESTROY=61,
1191d643ce63SMatthew Knepley                MATOP_VIEW=62,
1192d643ce63SMatthew Knepley                MATOP_GET_MAPS=63,
1193d643ce63SMatthew Knepley                MATOP_USE_SCALED_FORM=64,
1194d643ce63SMatthew Knepley                MATOP_SCALE_SYSTEM=65,
1195d643ce63SMatthew Knepley                MATOP_UNSCALE_SYSTEM=66,
1196d643ce63SMatthew Knepley                MATOP_SET_LOCAL_TO_GLOBAL_MAPPING=67,
1197d643ce63SMatthew Knepley                MATOP_SET_VALUES_LOCAL=68,
1198d643ce63SMatthew Knepley                MATOP_ZERO_ROWS_LOCAL=69,
1199d643ce63SMatthew Knepley                MATOP_GET_ROW_MAX=70,
1200d643ce63SMatthew Knepley                MATOP_CONVERT=71,
1201d643ce63SMatthew Knepley                MATOP_SET_COLORING=72,
1202d643ce63SMatthew Knepley                MATOP_SET_VALUES_ADIC=73,
1203d643ce63SMatthew Knepley                MATOP_SET_VALUES_ADIFOR=74,
1204d643ce63SMatthew Knepley                MATOP_FD_COLORING_APPLY=75,
1205d643ce63SMatthew Knepley                MATOP_SET_FROM_OPTIONS=76,
1206d643ce63SMatthew Knepley                MATOP_MULT_CONSTRAINED=77,
1207d643ce63SMatthew Knepley                MATOP_MULT_TRANSPOSE_CONSTRAINED=78,
1208d643ce63SMatthew Knepley                MATOP_ILU_FACTOR_SYMBOLIC_CONSTRAINED=79,
1209d643ce63SMatthew Knepley                MATOP_PERMUTE_SPARSIFY=80,
1210d643ce63SMatthew Knepley                MATOP_MULT_MULTIPLE=81,
1211d643ce63SMatthew Knepley                MATOP_SOLVE_MULTIPLE=82
1212fae171e0SBarry Smith              } MatOperation;
1213ca44d042SBarry Smith EXTERN int MatHasOperation(Mat,MatOperation,PetscTruth*);
1214ff8b7a98SSatish Balay EXTERN int MatShellSetOperation(Mat,MatOperation,void(*)(void));
1215ff8b7a98SSatish Balay EXTERN int MatShellGetOperation(Mat,MatOperation,void(**)(void));
1216273d9f13SBarry Smith EXTERN int MatShellSetContext(Mat,void*);
1217112a2221SBarry Smith 
121890ace30eSBarry Smith /*
121990ace30eSBarry Smith    Codes for matrices stored on disk. By default they are
122090ace30eSBarry Smith  stored in a universal format. By changing the format with
1221fb9695e5SSatish Balay  PetscViewerSetFormat(viewer,PETSC_VIEWER_BINARY_NATIVE); the matrices will
122290ace30eSBarry Smith  be stored in a way natural for the matrix, for example dense matrices
122390ace30eSBarry Smith  would be stored as dense. Matrices stored this way may only be
122490ace30eSBarry Smith  read into matrices of the same time.
122590ace30eSBarry Smith */
122690ace30eSBarry Smith #define MATRIX_BINARY_FORMAT_DENSE -1
122790ace30eSBarry Smith 
12286d053be9SSatish Balay EXTERN int MatMPIBAIJSetHashTableFactor(Mat,PetscReal);
1229ca44d042SBarry Smith EXTERN int MatSeqAIJGetInodeSizes(Mat,int *,int *[],int *);
123008918a0eSSatish Balay EXTERN int MatMPIRowbsGetColor(Mat,ISColoring *);
1231860d1616SSatish Balay 
12321f4e1ec7SBarry Smith EXTERN int MatISGetLocalMat(Mat,Mat*);
12331f4e1ec7SBarry Smith 
1234d9274352SBarry Smith /*S
1235d9274352SBarry Smith      MatNullSpace - Object that removes a null space from a vector, i.e.
1236d9274352SBarry Smith          orthogonalizes the vector to a subsapce
1237d9274352SBarry Smith 
1238f7a9e4ceSBarry Smith    Level: advanced
1239d9274352SBarry Smith 
1240d9274352SBarry Smith   Concepts: matrix; linear operator, null space
1241d9274352SBarry Smith 
12426e1639daSBarry Smith   Users manual sections:
12436e1639daSBarry Smith .   sec_singular
12446e1639daSBarry Smith 
1245d9274352SBarry Smith .seealso:  MatNullSpaceCreate()
1246d9274352SBarry Smith S*/
124774637425SBarry Smith typedef struct _p_MatNullSpace* MatNullSpace;
1248d9274352SBarry Smith 
12494e7234bfSBarry Smith EXTERN int MatNullSpaceCreate(MPI_Comm,int,int,const Vec[],MatNullSpace*);
125074637425SBarry Smith EXTERN int MatNullSpaceDestroy(MatNullSpace);
125174637425SBarry Smith EXTERN int MatNullSpaceRemove(MatNullSpace,Vec,Vec*);
125274637425SBarry Smith EXTERN int MatNullSpaceAttach(Mat,MatNullSpace);
125374637425SBarry Smith EXTERN int MatNullSpaceTest(MatNullSpace,Mat);
125474637425SBarry Smith 
1255*1c741599SHong Zhang EXTERN int MatReorderingSeqSBAIJ(Mat,IS);
1256273d9f13SBarry Smith EXTERN int MatMPISBAIJSetHashTableFactor(Mat,PetscReal);
1257273d9f13SBarry Smith EXTERN int MatSeqSBAIJSetColumnIndices(Mat,int *);
1258273d9f13SBarry Smith 
12593f1d51d7SBarry Smith 
1260f069c275SSatish Balay EXTERN int MatCreateMAIJ(Mat,int,Mat*);
1261c4f061fbSSatish Balay EXTERN int MatMAIJRedimension(Mat,int,Mat*);
1262c4f061fbSSatish Balay EXTERN int MatMAIJGetAIJ(Mat,Mat*);
1263c4f061fbSSatish Balay 
1264b0a32e0cSBarry Smith EXTERN int MatComputeExplicitOperator(Mat,Mat*);
1265b0a32e0cSBarry Smith 
12660e33f6ddSBarry Smith EXTERN int MatESISetType(Mat,const char*);
126724a595ddSBarry Smith EXTERN int MatESISetFromOptions(Mat);
126824a595ddSBarry Smith 
12692cd6534aSBarry Smith EXTERN int MatDiagonalScaleLocal(Mat,Vec);
127004f1ad80SBarry Smith 
12717dbadf16SMatthew Knepley EXTERN int PetscViewerMathematicaPutMatrix(PetscViewer, int, int, PetscReal *);
12727dbadf16SMatthew Knepley EXTERN int PetscViewerMathematicaPutCSRMatrix(PetscViewer, int, int, int *, int *, PetscReal *);
12737dbadf16SMatthew Knepley 
12741f4e1ec7SBarry Smith EXTERN int MatSeqAIJPtAP(Mat,Mat,Mat*);
1275231952e2SKris Buschelman EXTERN int MatSeqAIJPtAPSymbolic(Mat,Mat,Mat*);
1276231952e2SKris Buschelman EXTERN int MatSeqAIJPtAPNumeric(Mat,Mat,Mat);
1277e82a3eeeSBarry Smith 
1278e9fa29b7SSatish Balay PETSC_EXTERN_CXX_END
12792eac72dbSBarry Smith #endif
1280