xref: /petsc/src/mat/interface/matrix.c (revision 9927e4df806edf8c408daf2bc5d826ec018627cd)
1 /*
2    This is where the abstract matrix operations are defined
3    Portions of this code are under:
4    Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved.
5 */
6 
7 #include <petsc/private/matimpl.h> /*I "petscmat.h" I*/
8 #include <petsc/private/isimpl.h>
9 #include <petsc/private/vecimpl.h>
10 
11 /* Logging support */
12 PetscClassId MAT_CLASSID;
13 PetscClassId MAT_COLORING_CLASSID;
14 PetscClassId MAT_FDCOLORING_CLASSID;
15 PetscClassId MAT_TRANSPOSECOLORING_CLASSID;
16 
17 PetscLogEvent MAT_Mult, MAT_MultAdd, MAT_MultTranspose;
18 PetscLogEvent MAT_MultTransposeAdd, MAT_Solve, MAT_Solves, MAT_SolveAdd, MAT_SolveTranspose, MAT_MatSolve, MAT_MatTrSolve;
19 PetscLogEvent MAT_SolveTransposeAdd, MAT_SOR, MAT_ForwardSolve, MAT_BackwardSolve, MAT_LUFactor, MAT_LUFactorSymbolic;
20 PetscLogEvent MAT_LUFactorNumeric, MAT_CholeskyFactor, MAT_CholeskyFactorSymbolic, MAT_CholeskyFactorNumeric, MAT_ILUFactor;
21 PetscLogEvent MAT_ILUFactorSymbolic, MAT_ICCFactorSymbolic, MAT_Copy, MAT_Convert, MAT_Scale, MAT_AssemblyBegin;
22 PetscLogEvent MAT_QRFactorNumeric, MAT_QRFactorSymbolic, MAT_QRFactor;
23 PetscLogEvent MAT_AssemblyEnd, MAT_SetValues, MAT_GetValues, MAT_GetRow, MAT_GetRowIJ, MAT_CreateSubMats, MAT_GetOrdering, MAT_RedundantMat, MAT_GetSeqNonzeroStructure;
24 PetscLogEvent MAT_IncreaseOverlap, MAT_Partitioning, MAT_PartitioningND, MAT_Coarsen, MAT_ZeroEntries, MAT_Load, MAT_View, MAT_AXPY, MAT_FDColoringCreate;
25 PetscLogEvent MAT_FDColoringSetUp, MAT_FDColoringApply, MAT_Transpose, MAT_FDColoringFunction, MAT_CreateSubMat;
26 PetscLogEvent MAT_TransposeColoringCreate;
27 PetscLogEvent MAT_MatMult, MAT_MatMultSymbolic, MAT_MatMultNumeric;
28 PetscLogEvent MAT_PtAP, MAT_PtAPSymbolic, MAT_PtAPNumeric, MAT_RARt, MAT_RARtSymbolic, MAT_RARtNumeric;
29 PetscLogEvent MAT_MatTransposeMult, MAT_MatTransposeMultSymbolic, MAT_MatTransposeMultNumeric;
30 PetscLogEvent MAT_TransposeMatMult, MAT_TransposeMatMultSymbolic, MAT_TransposeMatMultNumeric;
31 PetscLogEvent MAT_MatMatMult, MAT_MatMatMultSymbolic, MAT_MatMatMultNumeric;
32 PetscLogEvent MAT_MultHermitianTranspose, MAT_MultHermitianTransposeAdd;
33 PetscLogEvent MAT_Getsymtransreduced, MAT_GetBrowsOfAcols;
34 PetscLogEvent MAT_GetBrowsOfAocols, MAT_Getlocalmat, MAT_Getlocalmatcondensed, MAT_Seqstompi, MAT_Seqstompinum, MAT_Seqstompisym;
35 PetscLogEvent MAT_GetMultiProcBlock;
36 PetscLogEvent MAT_CUSPARSECopyToGPU, MAT_CUSPARSECopyFromGPU, MAT_CUSPARSEGenerateTranspose, MAT_CUSPARSESolveAnalysis;
37 PetscLogEvent MAT_HIPSPARSECopyToGPU, MAT_HIPSPARSECopyFromGPU, MAT_HIPSPARSEGenerateTranspose, MAT_HIPSPARSESolveAnalysis;
38 PetscLogEvent MAT_PreallCOO, MAT_SetVCOO;
39 PetscLogEvent MAT_SetValuesBatch;
40 PetscLogEvent MAT_ViennaCLCopyToGPU;
41 PetscLogEvent MAT_CUDACopyToGPU;
42 PetscLogEvent MAT_DenseCopyToGPU, MAT_DenseCopyFromGPU;
43 PetscLogEvent MAT_Merge, MAT_Residual, MAT_SetRandom;
44 PetscLogEvent MAT_FactorFactS, MAT_FactorInvS;
45 PetscLogEvent MATCOLORING_Apply, MATCOLORING_Comm, MATCOLORING_Local, MATCOLORING_ISCreate, MATCOLORING_SetUp, MATCOLORING_Weights;
46 PetscLogEvent MAT_H2Opus_Build, MAT_H2Opus_Compress, MAT_H2Opus_Orthog, MAT_H2Opus_LR;
47 
48 const char *const MatFactorTypes[] = {"NONE", "LU", "CHOLESKY", "ILU", "ICC", "ILUDT", "QR", "MatFactorType", "MAT_FACTOR_", NULL};
49 
50 /*@
51   MatSetRandom - Sets all components of a matrix to random numbers.
52 
53   Logically Collective
54 
55   Input Parameters:
56 + x    - the matrix
57 - rctx - the `PetscRandom` object, formed by `PetscRandomCreate()`, or `NULL` and
58           it will create one internally.
59 
60   Example:
61 .vb
62      PetscRandomCreate(PETSC_COMM_WORLD,&rctx);
63      MatSetRandom(x,rctx);
64      PetscRandomDestroy(rctx);
65 .ve
66 
67   Level: intermediate
68 
69   Notes:
70   For sparse matrices that have been preallocated but not been assembled, it randomly selects appropriate locations,
71 
72   for sparse matrices that already have nonzero locations, it fills the locations with random numbers.
73 
74   It generates an error if used on unassembled sparse matrices that have not been preallocated.
75 
76 .seealso: [](ch_matrices), `Mat`, `PetscRandom`, `PetscRandomCreate()`, `MatZeroEntries()`, `MatSetValues()`, `PetscRandomDestroy()`
77 @*/
78 PetscErrorCode MatSetRandom(Mat x, PetscRandom rctx)
79 {
80   PetscRandom randObj = NULL;
81 
82   PetscFunctionBegin;
83   PetscValidHeaderSpecific(x, MAT_CLASSID, 1);
84   if (rctx) PetscValidHeaderSpecific(rctx, PETSC_RANDOM_CLASSID, 2);
85   PetscValidType(x, 1);
86   MatCheckPreallocated(x, 1);
87 
88   if (!rctx) {
89     MPI_Comm comm;
90     PetscCall(PetscObjectGetComm((PetscObject)x, &comm));
91     PetscCall(PetscRandomCreate(comm, &randObj));
92     PetscCall(PetscRandomSetType(randObj, x->defaultrandtype));
93     PetscCall(PetscRandomSetFromOptions(randObj));
94     rctx = randObj;
95   }
96   PetscCall(PetscLogEventBegin(MAT_SetRandom, x, rctx, 0, 0));
97   PetscUseTypeMethod(x, setrandom, rctx);
98   PetscCall(PetscLogEventEnd(MAT_SetRandom, x, rctx, 0, 0));
99 
100   PetscCall(MatAssemblyBegin(x, MAT_FINAL_ASSEMBLY));
101   PetscCall(MatAssemblyEnd(x, MAT_FINAL_ASSEMBLY));
102   PetscCall(PetscRandomDestroy(&randObj));
103   PetscFunctionReturn(PETSC_SUCCESS);
104 }
105 
106 /*@
107   MatFactorGetErrorZeroPivot - returns the pivot value that was determined to be zero and the row it occurred in
108 
109   Logically Collective
110 
111   Input Parameter:
112 . mat - the factored matrix
113 
114   Output Parameters:
115 + pivot - the pivot value computed
116 - row   - the row that the zero pivot occurred. This row value must be interpreted carefully due to row reorderings and which processes
117          the share the matrix
118 
119   Level: advanced
120 
121   Notes:
122   This routine does not work for factorizations done with external packages.
123 
124   This routine should only be called if `MatGetFactorError()` returns a value of `MAT_FACTOR_NUMERIC_ZEROPIVOT`
125 
126   This can also be called on non-factored matrices that come from, for example, matrices used in SOR.
127 
128 .seealso: [](ch_matrices), `Mat`, `MatZeroEntries()`, `MatFactor()`, `MatGetFactor()`,
129 `MatLUFactorSymbolic()`, `MatCholeskyFactorSymbolic()`, `MatFactorClearError()`,
130 `MAT_FACTOR_NUMERIC_ZEROPIVOT`
131 @*/
132 PetscErrorCode MatFactorGetErrorZeroPivot(Mat mat, PetscReal *pivot, PetscInt *row)
133 {
134   PetscFunctionBegin;
135   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
136   PetscAssertPointer(pivot, 2);
137   PetscAssertPointer(row, 3);
138   *pivot = mat->factorerror_zeropivot_value;
139   *row   = mat->factorerror_zeropivot_row;
140   PetscFunctionReturn(PETSC_SUCCESS);
141 }
142 
143 /*@
144   MatFactorGetError - gets the error code from a factorization
145 
146   Logically Collective
147 
148   Input Parameter:
149 . mat - the factored matrix
150 
151   Output Parameter:
152 . err - the error code
153 
154   Level: advanced
155 
156   Note:
157   This can also be called on non-factored matrices that come from, for example, matrices used in SOR.
158 
159 .seealso: [](ch_matrices), `Mat`, `MatZeroEntries()`, `MatFactor()`, `MatGetFactor()`, `MatLUFactorSymbolic()`, `MatCholeskyFactorSymbolic()`,
160           `MatFactorClearError()`, `MatFactorGetErrorZeroPivot()`, `MatFactorError`
161 @*/
162 PetscErrorCode MatFactorGetError(Mat mat, MatFactorError *err)
163 {
164   PetscFunctionBegin;
165   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
166   PetscAssertPointer(err, 2);
167   *err = mat->factorerrortype;
168   PetscFunctionReturn(PETSC_SUCCESS);
169 }
170 
171 /*@
172   MatFactorClearError - clears the error code in a factorization
173 
174   Logically Collective
175 
176   Input Parameter:
177 . mat - the factored matrix
178 
179   Level: developer
180 
181   Note:
182   This can also be called on non-factored matrices that come from, for example, matrices used in SOR.
183 
184 .seealso: [](ch_matrices), `Mat`, `MatZeroEntries()`, `MatFactor()`, `MatGetFactor()`, `MatLUFactorSymbolic()`, `MatCholeskyFactorSymbolic()`, `MatFactorGetError()`, `MatFactorGetErrorZeroPivot()`,
185           `MatGetErrorCode()`, `MatFactorError`
186 @*/
187 PetscErrorCode MatFactorClearError(Mat mat)
188 {
189   PetscFunctionBegin;
190   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
191   mat->factorerrortype             = MAT_FACTOR_NOERROR;
192   mat->factorerror_zeropivot_value = 0.0;
193   mat->factorerror_zeropivot_row   = 0;
194   PetscFunctionReturn(PETSC_SUCCESS);
195 }
196 
197 PetscErrorCode MatFindNonzeroRowsOrCols_Basic(Mat mat, PetscBool cols, PetscReal tol, IS *nonzero)
198 {
199   Vec                r, l;
200   const PetscScalar *al;
201   PetscInt           i, nz, gnz, N, n, st;
202 
203   PetscFunctionBegin;
204   PetscCall(MatCreateVecs(mat, &r, &l));
205   if (!cols) { /* nonzero rows */
206     PetscCall(MatGetOwnershipRange(mat, &st, NULL));
207     PetscCall(MatGetSize(mat, &N, NULL));
208     PetscCall(MatGetLocalSize(mat, &n, NULL));
209     PetscCall(VecSet(l, 0.0));
210     PetscCall(VecSetRandom(r, NULL));
211     PetscCall(MatMult(mat, r, l));
212     PetscCall(VecGetArrayRead(l, &al));
213   } else { /* nonzero columns */
214     PetscCall(MatGetOwnershipRangeColumn(mat, &st, NULL));
215     PetscCall(MatGetSize(mat, NULL, &N));
216     PetscCall(MatGetLocalSize(mat, NULL, &n));
217     PetscCall(VecSet(r, 0.0));
218     PetscCall(VecSetRandom(l, NULL));
219     PetscCall(MatMultTranspose(mat, l, r));
220     PetscCall(VecGetArrayRead(r, &al));
221   }
222   if (tol <= 0.0) {
223     for (i = 0, nz = 0; i < n; i++)
224       if (al[i] != 0.0) nz++;
225   } else {
226     for (i = 0, nz = 0; i < n; i++)
227       if (PetscAbsScalar(al[i]) > tol) nz++;
228   }
229   PetscCall(MPIU_Allreduce(&nz, &gnz, 1, MPIU_INT, MPI_SUM, PetscObjectComm((PetscObject)mat)));
230   if (gnz != N) {
231     PetscInt *nzr;
232     PetscCall(PetscMalloc1(nz, &nzr));
233     if (nz) {
234       if (tol < 0) {
235         for (i = 0, nz = 0; i < n; i++)
236           if (al[i] != 0.0) nzr[nz++] = i + st;
237       } else {
238         for (i = 0, nz = 0; i < n; i++)
239           if (PetscAbsScalar(al[i]) > tol) nzr[nz++] = i + st;
240       }
241     }
242     PetscCall(ISCreateGeneral(PetscObjectComm((PetscObject)mat), nz, nzr, PETSC_OWN_POINTER, nonzero));
243   } else *nonzero = NULL;
244   if (!cols) { /* nonzero rows */
245     PetscCall(VecRestoreArrayRead(l, &al));
246   } else {
247     PetscCall(VecRestoreArrayRead(r, &al));
248   }
249   PetscCall(VecDestroy(&l));
250   PetscCall(VecDestroy(&r));
251   PetscFunctionReturn(PETSC_SUCCESS);
252 }
253 
254 /*@
255   MatFindNonzeroRows - Locate all rows that are not completely zero in the matrix
256 
257   Input Parameter:
258 . mat - the matrix
259 
260   Output Parameter:
261 . keptrows - the rows that are not completely zero
262 
263   Level: intermediate
264 
265   Note:
266   `keptrows` is set to `NULL` if all rows are nonzero.
267 
268 .seealso: [](ch_matrices), `Mat`, `MatFindZeroRows()`
269  @*/
270 PetscErrorCode MatFindNonzeroRows(Mat mat, IS *keptrows)
271 {
272   PetscFunctionBegin;
273   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
274   PetscValidType(mat, 1);
275   PetscAssertPointer(keptrows, 2);
276   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
277   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
278   if (mat->ops->findnonzerorows) PetscUseTypeMethod(mat, findnonzerorows, keptrows);
279   else PetscCall(MatFindNonzeroRowsOrCols_Basic(mat, PETSC_FALSE, 0.0, keptrows));
280   PetscFunctionReturn(PETSC_SUCCESS);
281 }
282 
283 /*@
284   MatFindZeroRows - Locate all rows that are completely zero in the matrix
285 
286   Input Parameter:
287 . mat - the matrix
288 
289   Output Parameter:
290 . zerorows - the rows that are completely zero
291 
292   Level: intermediate
293 
294   Note:
295   `zerorows` is set to `NULL` if no rows are zero.
296 
297 .seealso: [](ch_matrices), `Mat`, `MatFindNonzeroRows()`
298  @*/
299 PetscErrorCode MatFindZeroRows(Mat mat, IS *zerorows)
300 {
301   IS       keptrows;
302   PetscInt m, n;
303 
304   PetscFunctionBegin;
305   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
306   PetscValidType(mat, 1);
307   PetscAssertPointer(zerorows, 2);
308   PetscCall(MatFindNonzeroRows(mat, &keptrows));
309   /* MatFindNonzeroRows sets keptrows to NULL if there are no zero rows.
310      In keeping with this convention, we set zerorows to NULL if there are no zero
311      rows. */
312   if (keptrows == NULL) {
313     *zerorows = NULL;
314   } else {
315     PetscCall(MatGetOwnershipRange(mat, &m, &n));
316     PetscCall(ISComplement(keptrows, m, n, zerorows));
317     PetscCall(ISDestroy(&keptrows));
318   }
319   PetscFunctionReturn(PETSC_SUCCESS);
320 }
321 
322 /*@
323   MatGetDiagonalBlock - Returns the part of the matrix associated with the on-process coupling
324 
325   Not Collective
326 
327   Input Parameter:
328 . A - the matrix
329 
330   Output Parameter:
331 . a - the diagonal part (which is a SEQUENTIAL matrix)
332 
333   Level: advanced
334 
335   Notes:
336   See `MatCreateAIJ()` for more information on the "diagonal part" of the matrix.
337 
338   Use caution, as the reference count on the returned matrix is not incremented and it is used as part of `A`'s normal operation.
339 
340 .seealso: [](ch_matrices), `Mat`, `MatCreateAIJ()`, `MATAIJ`, `MATBAIJ`, `MATSBAIJ`
341 @*/
342 PetscErrorCode MatGetDiagonalBlock(Mat A, Mat *a)
343 {
344   PetscFunctionBegin;
345   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
346   PetscValidType(A, 1);
347   PetscAssertPointer(a, 2);
348   PetscCheck(!A->factortype, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
349   if (A->ops->getdiagonalblock) PetscUseTypeMethod(A, getdiagonalblock, a);
350   else {
351     PetscMPIInt size;
352 
353     PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)A), &size));
354     PetscCheck(size == 1, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Not for parallel matrix type %s", ((PetscObject)A)->type_name);
355     *a = A;
356   }
357   PetscFunctionReturn(PETSC_SUCCESS);
358 }
359 
360 /*@
361   MatGetTrace - Gets the trace of a matrix. The sum of the diagonal entries.
362 
363   Collective
364 
365   Input Parameter:
366 . mat - the matrix
367 
368   Output Parameter:
369 . trace - the sum of the diagonal entries
370 
371   Level: advanced
372 
373 .seealso: [](ch_matrices), `Mat`
374 @*/
375 PetscErrorCode MatGetTrace(Mat mat, PetscScalar *trace)
376 {
377   Vec diag;
378 
379   PetscFunctionBegin;
380   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
381   PetscAssertPointer(trace, 2);
382   PetscCall(MatCreateVecs(mat, &diag, NULL));
383   PetscCall(MatGetDiagonal(mat, diag));
384   PetscCall(VecSum(diag, trace));
385   PetscCall(VecDestroy(&diag));
386   PetscFunctionReturn(PETSC_SUCCESS);
387 }
388 
389 /*@
390   MatRealPart - Zeros out the imaginary part of the matrix
391 
392   Logically Collective
393 
394   Input Parameter:
395 . mat - the matrix
396 
397   Level: advanced
398 
399 .seealso: [](ch_matrices), `Mat`, `MatImaginaryPart()`
400 @*/
401 PetscErrorCode MatRealPart(Mat mat)
402 {
403   PetscFunctionBegin;
404   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
405   PetscValidType(mat, 1);
406   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
407   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
408   MatCheckPreallocated(mat, 1);
409   PetscUseTypeMethod(mat, realpart);
410   PetscFunctionReturn(PETSC_SUCCESS);
411 }
412 
413 /*@C
414   MatGetGhosts - Get the global indices of all ghost nodes defined by the sparse matrix
415 
416   Collective
417 
418   Input Parameter:
419 . mat - the matrix
420 
421   Output Parameters:
422 + nghosts - number of ghosts (for `MATBAIJ` and `MATSBAIJ` matrices there is one ghost for each matrix block)
423 - ghosts  - the global indices of the ghost points
424 
425   Level: advanced
426 
427   Note:
428   `nghosts` and `ghosts` are suitable to pass into `VecCreateGhost()` or `VecCreateGhostBlock()`
429 
430 .seealso: [](ch_matrices), `Mat`, `VecCreateGhost()`, `VecCreateGhostBlock()`
431 @*/
432 PetscErrorCode MatGetGhosts(Mat mat, PetscInt *nghosts, const PetscInt *ghosts[])
433 {
434   PetscFunctionBegin;
435   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
436   PetscValidType(mat, 1);
437   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
438   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
439   if (mat->ops->getghosts) PetscUseTypeMethod(mat, getghosts, nghosts, ghosts);
440   else {
441     if (nghosts) *nghosts = 0;
442     if (ghosts) *ghosts = NULL;
443   }
444   PetscFunctionReturn(PETSC_SUCCESS);
445 }
446 
447 /*@
448   MatImaginaryPart - Moves the imaginary part of the matrix to the real part and zeros the imaginary part
449 
450   Logically Collective
451 
452   Input Parameter:
453 . mat - the matrix
454 
455   Level: advanced
456 
457 .seealso: [](ch_matrices), `Mat`, `MatRealPart()`
458 @*/
459 PetscErrorCode MatImaginaryPart(Mat mat)
460 {
461   PetscFunctionBegin;
462   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
463   PetscValidType(mat, 1);
464   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
465   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
466   MatCheckPreallocated(mat, 1);
467   PetscUseTypeMethod(mat, imaginarypart);
468   PetscFunctionReturn(PETSC_SUCCESS);
469 }
470 
471 /*@
472   MatMissingDiagonal - Determine if sparse matrix is missing a diagonal entry (or block entry for `MATBAIJ` and `MATSBAIJ` matrices) in the nonzero structure
473 
474   Not Collective
475 
476   Input Parameter:
477 . mat - the matrix
478 
479   Output Parameters:
480 + missing - is any diagonal entry missing
481 - dd      - first diagonal entry that is missing (optional) on this process
482 
483   Level: advanced
484 
485   Note:
486   This does not return diagonal entries that are in the nonzero structure but happen to have a zero numerical value
487 
488 .seealso: [](ch_matrices), `Mat`
489 @*/
490 PetscErrorCode MatMissingDiagonal(Mat mat, PetscBool *missing, PetscInt *dd)
491 {
492   PetscFunctionBegin;
493   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
494   PetscValidType(mat, 1);
495   PetscAssertPointer(missing, 2);
496   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix %s", ((PetscObject)mat)->type_name);
497   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
498   PetscUseTypeMethod(mat, missingdiagonal, missing, dd);
499   PetscFunctionReturn(PETSC_SUCCESS);
500 }
501 
502 // PetscClangLinter pragma disable: -fdoc-section-header-unknown
503 /*@C
504   MatGetRow - Gets a row of a matrix.  You MUST call `MatRestoreRow()`
505   for each row that you get to ensure that your application does
506   not bleed memory.
507 
508   Not Collective
509 
510   Input Parameters:
511 + mat - the matrix
512 - row - the row to get
513 
514   Output Parameters:
515 + ncols - if not `NULL`, the number of nonzeros in `row`
516 . cols  - if not `NULL`, the column numbers
517 - vals  - if not `NULL`, the numerical values
518 
519   Level: advanced
520 
521   Notes:
522   This routine is provided for people who need to have direct access
523   to the structure of a matrix.  We hope that we provide enough
524   high-level matrix routines that few users will need it.
525 
526   `MatGetRow()` always returns 0-based column indices, regardless of
527   whether the internal representation is 0-based (default) or 1-based.
528 
529   For better efficiency, set `cols` and/or `vals` to `NULL` if you do
530   not wish to extract these quantities.
531 
532   The user can only examine the values extracted with `MatGetRow()`;
533   the values CANNOT be altered.  To change the matrix entries, one
534   must use `MatSetValues()`.
535 
536   You can only have one call to `MatGetRow()` outstanding for a particular
537   matrix at a time, per processor. `MatGetRow()` can only obtain rows
538   associated with the given processor, it cannot get rows from the
539   other processors; for that we suggest using `MatCreateSubMatrices()`, then
540   `MatGetRow()` on the submatrix. The row index passed to `MatGetRow()`
541   is in the global number of rows.
542 
543   Use `MatGetRowIJ()` and `MatRestoreRowIJ()` to access all the local indices of the sparse matrix.
544 
545   Use `MatSeqAIJGetArray()` and similar functions to access the numerical values for certain matrix types directly.
546 
547   Fortran Note:
548   The calling sequence is
549 .vb
550    MatGetRow(matrix,row,ncols,cols,values,ierr)
551          Mat     matrix (input)
552          integer row    (input)
553          integer ncols  (output)
554          integer cols(maxcols) (output)
555          double precision (or double complex) values(maxcols) output
556 .ve
557   where maxcols >= maximum nonzeros in any row of the matrix.
558 
559 .seealso: [](ch_matrices), `Mat`, `MatRestoreRow()`, `MatSetValues()`, `MatGetValues()`, `MatCreateSubMatrices()`, `MatGetDiagonal()`, `MatGetRowIJ()`, `MatRestoreRowIJ()`
560 @*/
561 PetscErrorCode MatGetRow(Mat mat, PetscInt row, PetscInt *ncols, const PetscInt *cols[], const PetscScalar *vals[])
562 {
563   PetscInt incols;
564 
565   PetscFunctionBegin;
566   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
567   PetscValidType(mat, 1);
568   PetscCheck(mat->assembled, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
569   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
570   MatCheckPreallocated(mat, 1);
571   PetscCheck(row >= mat->rmap->rstart && row < mat->rmap->rend, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Only for local rows, %" PetscInt_FMT " not in [%" PetscInt_FMT ",%" PetscInt_FMT ")", row, mat->rmap->rstart, mat->rmap->rend);
572   PetscCall(PetscLogEventBegin(MAT_GetRow, mat, 0, 0, 0));
573   PetscUseTypeMethod(mat, getrow, row, &incols, (PetscInt **)cols, (PetscScalar **)vals);
574   if (ncols) *ncols = incols;
575   PetscCall(PetscLogEventEnd(MAT_GetRow, mat, 0, 0, 0));
576   PetscFunctionReturn(PETSC_SUCCESS);
577 }
578 
579 /*@
580   MatConjugate - replaces the matrix values with their complex conjugates
581 
582   Logically Collective
583 
584   Input Parameter:
585 . mat - the matrix
586 
587   Level: advanced
588 
589 .seealso: [](ch_matrices), `Mat`, `MatRealPart()`, `MatImaginaryPart()`, `VecConjugate()`, `MatTranspose()`
590 @*/
591 PetscErrorCode MatConjugate(Mat mat)
592 {
593   PetscFunctionBegin;
594   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
595   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
596   if (PetscDefined(USE_COMPLEX) && mat->hermitian != PETSC_BOOL3_TRUE) {
597     PetscUseTypeMethod(mat, conjugate);
598     PetscCall(PetscObjectStateIncrease((PetscObject)mat));
599   }
600   PetscFunctionReturn(PETSC_SUCCESS);
601 }
602 
603 /*@C
604   MatRestoreRow - Frees any temporary space allocated by `MatGetRow()`.
605 
606   Not Collective
607 
608   Input Parameters:
609 + mat   - the matrix
610 . row   - the row to get
611 . ncols - the number of nonzeros
612 . cols  - the columns of the nonzeros
613 - vals  - if nonzero the column values
614 
615   Level: advanced
616 
617   Notes:
618   This routine should be called after you have finished examining the entries.
619 
620   This routine zeros out `ncols`, `cols`, and `vals`. This is to prevent accidental
621   us of the array after it has been restored. If you pass `NULL`, it will
622   not zero the pointers.  Use of `cols` or `vals` after `MatRestoreRow()` is invalid.
623 
624   Fortran Notes:
625   The calling sequence is
626 .vb
627    MatRestoreRow(matrix,row,ncols,cols,values,ierr)
628       Mat     matrix (input)
629       integer row    (input)
630       integer ncols  (output)
631       integer cols(maxcols) (output)
632       double precision (or double complex) values(maxcols) output
633 .ve
634   Where maxcols >= maximum nonzeros in any row of the matrix.
635 
636   In Fortran `MatRestoreRow()` MUST be called after `MatGetRow()`
637   before another call to `MatGetRow()` can be made.
638 
639 .seealso: [](ch_matrices), `Mat`, `MatGetRow()`
640 @*/
641 PetscErrorCode MatRestoreRow(Mat mat, PetscInt row, PetscInt *ncols, const PetscInt *cols[], const PetscScalar *vals[])
642 {
643   PetscFunctionBegin;
644   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
645   if (ncols) PetscAssertPointer(ncols, 3);
646   PetscCheck(mat->assembled, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
647   if (!mat->ops->restorerow) PetscFunctionReturn(PETSC_SUCCESS);
648   PetscUseTypeMethod(mat, restorerow, row, ncols, (PetscInt **)cols, (PetscScalar **)vals);
649   if (ncols) *ncols = 0;
650   if (cols) *cols = NULL;
651   if (vals) *vals = NULL;
652   PetscFunctionReturn(PETSC_SUCCESS);
653 }
654 
655 /*@
656   MatGetRowUpperTriangular - Sets a flag to enable calls to `MatGetRow()` for matrix in `MATSBAIJ` format.
657   You should call `MatRestoreRowUpperTriangular()` after calling` MatGetRow()` and `MatRestoreRow()` to disable the flag.
658 
659   Not Collective
660 
661   Input Parameter:
662 . mat - the matrix
663 
664   Level: advanced
665 
666   Note:
667   The flag is to ensure that users are aware that `MatGetRow()` only provides the upper triangular part of the row for the matrices in `MATSBAIJ` format.
668 
669 .seealso: [](ch_matrices), `Mat`, `MATSBAIJ`, `MatRestoreRowUpperTriangular()`
670 @*/
671 PetscErrorCode MatGetRowUpperTriangular(Mat mat)
672 {
673   PetscFunctionBegin;
674   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
675   PetscValidType(mat, 1);
676   PetscCheck(mat->assembled, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
677   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
678   MatCheckPreallocated(mat, 1);
679   if (!mat->ops->getrowuppertriangular) PetscFunctionReturn(PETSC_SUCCESS);
680   PetscUseTypeMethod(mat, getrowuppertriangular);
681   PetscFunctionReturn(PETSC_SUCCESS);
682 }
683 
684 /*@
685   MatRestoreRowUpperTriangular - Disable calls to `MatGetRow()` for matrix in `MATSBAIJ` format.
686 
687   Not Collective
688 
689   Input Parameter:
690 . mat - the matrix
691 
692   Level: advanced
693 
694   Note:
695   This routine should be called after you have finished calls to `MatGetRow()` and `MatRestoreRow()`.
696 
697 .seealso: [](ch_matrices), `Mat`, `MATSBAIJ`, `MatGetRowUpperTriangular()`
698 @*/
699 PetscErrorCode MatRestoreRowUpperTriangular(Mat mat)
700 {
701   PetscFunctionBegin;
702   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
703   PetscValidType(mat, 1);
704   PetscCheck(mat->assembled, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
705   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
706   MatCheckPreallocated(mat, 1);
707   if (!mat->ops->restorerowuppertriangular) PetscFunctionReturn(PETSC_SUCCESS);
708   PetscUseTypeMethod(mat, restorerowuppertriangular);
709   PetscFunctionReturn(PETSC_SUCCESS);
710 }
711 
712 /*@C
713   MatSetOptionsPrefix - Sets the prefix used for searching for all
714   `Mat` options in the database.
715 
716   Logically Collective
717 
718   Input Parameters:
719 + A      - the matrix
720 - prefix - the prefix to prepend to all option names
721 
722   Level: advanced
723 
724   Notes:
725   A hyphen (-) must NOT be given at the beginning of the prefix name.
726   The first character of all runtime options is AUTOMATICALLY the hyphen.
727 
728   This is NOT used for options for the factorization of the matrix. Normally the
729   prefix is automatically passed in from the PC calling the factorization. To set
730   it directly use  `MatSetOptionsPrefixFactor()`
731 
732 .seealso: [](ch_matrices), `Mat`, `MatSetFromOptions()`, `MatSetOptionsPrefixFactor()`
733 @*/
734 PetscErrorCode MatSetOptionsPrefix(Mat A, const char prefix[])
735 {
736   PetscFunctionBegin;
737   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
738   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)A, prefix));
739   PetscFunctionReturn(PETSC_SUCCESS);
740 }
741 
742 /*@C
743   MatSetOptionsPrefixFactor - Sets the prefix used for searching for all matrix factor options in the database for
744   for matrices created with `MatGetFactor()`
745 
746   Logically Collective
747 
748   Input Parameters:
749 + A      - the matrix
750 - prefix - the prefix to prepend to all option names for the factored matrix
751 
752   Level: developer
753 
754   Notes:
755   A hyphen (-) must NOT be given at the beginning of the prefix name.
756   The first character of all runtime options is AUTOMATICALLY the hyphen.
757 
758   Normally the prefix is automatically passed in from the `PC` calling the factorization. To set
759   it directly when not using `KSP`/`PC` use  `MatSetOptionsPrefixFactor()`
760 
761 .seealso: [](ch_matrices), `Mat`,   [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatSetFromOptions()`, `MatSetOptionsPrefix()`, `MatAppendOptionsPrefixFactor()`
762 @*/
763 PetscErrorCode MatSetOptionsPrefixFactor(Mat A, const char prefix[])
764 {
765   PetscFunctionBegin;
766   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
767   if (prefix) {
768     PetscAssertPointer(prefix, 2);
769     PetscCheck(prefix[0] != '-', PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONG, "Options prefix should not begin with a hyphen");
770     if (prefix != A->factorprefix) {
771       PetscCall(PetscFree(A->factorprefix));
772       PetscCall(PetscStrallocpy(prefix, &A->factorprefix));
773     }
774   } else PetscCall(PetscFree(A->factorprefix));
775   PetscFunctionReturn(PETSC_SUCCESS);
776 }
777 
778 /*@C
779   MatAppendOptionsPrefixFactor - Appends to the prefix used for searching for all matrix factor options in the database for
780   for matrices created with `MatGetFactor()`
781 
782   Logically Collective
783 
784   Input Parameters:
785 + A      - the matrix
786 - prefix - the prefix to prepend to all option names for the factored matrix
787 
788   Level: developer
789 
790   Notes:
791   A hyphen (-) must NOT be given at the beginning of the prefix name.
792   The first character of all runtime options is AUTOMATICALLY the hyphen.
793 
794   Normally the prefix is automatically passed in from the `PC` calling the factorization. To set
795   it directly when not using `KSP`/`PC` use  `MatAppendOptionsPrefixFactor()`
796 
797 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `PetscOptionsCreate()`, `PetscOptionsDestroy()`, `PetscObjectSetOptionsPrefix()`, `PetscObjectPrependOptionsPrefix()`,
798           `PetscObjectGetOptionsPrefix()`, `TSAppendOptionsPrefix()`, `SNESAppendOptionsPrefix()`, `KSPAppendOptionsPrefix()`, `MatSetOptionsPrefixFactor()`,
799           `MatSetOptionsPrefix()`
800 @*/
801 PetscErrorCode MatAppendOptionsPrefixFactor(Mat A, const char prefix[])
802 {
803   size_t len1, len2, new_len;
804 
805   PetscFunctionBegin;
806   PetscValidHeader(A, 1);
807   if (!prefix) PetscFunctionReturn(PETSC_SUCCESS);
808   if (!A->factorprefix) {
809     PetscCall(MatSetOptionsPrefixFactor(A, prefix));
810     PetscFunctionReturn(PETSC_SUCCESS);
811   }
812   PetscCheck(prefix[0] != '-', PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONG, "Options prefix should not begin with a hyphen");
813 
814   PetscCall(PetscStrlen(A->factorprefix, &len1));
815   PetscCall(PetscStrlen(prefix, &len2));
816   new_len = len1 + len2 + 1;
817   PetscCall(PetscRealloc(new_len * sizeof(*(A->factorprefix)), &A->factorprefix));
818   PetscCall(PetscStrncpy(A->factorprefix + len1, prefix, len2 + 1));
819   PetscFunctionReturn(PETSC_SUCCESS);
820 }
821 
822 /*@C
823   MatAppendOptionsPrefix - Appends to the prefix used for searching for all
824   matrix options in the database.
825 
826   Logically Collective
827 
828   Input Parameters:
829 + A      - the matrix
830 - prefix - the prefix to prepend to all option names
831 
832   Level: advanced
833 
834   Note:
835   A hyphen (-) must NOT be given at the beginning of the prefix name.
836   The first character of all runtime options is AUTOMATICALLY the hyphen.
837 
838 .seealso: [](ch_matrices), `Mat`, `MatGetOptionsPrefix()`, `MatAppendOptionsPrefixFactor()`, `MatSetOptionsPrefix()`
839 @*/
840 PetscErrorCode MatAppendOptionsPrefix(Mat A, const char prefix[])
841 {
842   PetscFunctionBegin;
843   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
844   PetscCall(PetscObjectAppendOptionsPrefix((PetscObject)A, prefix));
845   PetscFunctionReturn(PETSC_SUCCESS);
846 }
847 
848 /*@C
849   MatGetOptionsPrefix - Gets the prefix used for searching for all
850   matrix options in the database.
851 
852   Not Collective
853 
854   Input Parameter:
855 . A - the matrix
856 
857   Output Parameter:
858 . prefix - pointer to the prefix string used
859 
860   Level: advanced
861 
862   Fortran Note:
863   The user should pass in a string `prefix` of
864   sufficient length to hold the prefix.
865 
866 .seealso: [](ch_matrices), `Mat`, `MatAppendOptionsPrefix()`, `MatSetOptionsPrefix()`, `MatAppendOptionsPrefixFactor()`, `MatSetOptionsPrefixFactor()`
867 @*/
868 PetscErrorCode MatGetOptionsPrefix(Mat A, const char *prefix[])
869 {
870   PetscFunctionBegin;
871   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
872   PetscAssertPointer(prefix, 2);
873   PetscCall(PetscObjectGetOptionsPrefix((PetscObject)A, prefix));
874   PetscFunctionReturn(PETSC_SUCCESS);
875 }
876 
877 /*@
878   MatResetPreallocation - Reset matrix to use the original nonzero pattern provided by the user.
879 
880   Collective
881 
882   Input Parameter:
883 . A - the matrix
884 
885   Level: beginner
886 
887   Notes:
888   The allocated memory will be shrunk after calling `MatAssemblyBegin()` and `MatAssemblyEnd()` with `MAT_FINAL_ASSEMBLY`.
889 
890   Users can reset the preallocation to access the original memory.
891 
892   Currently only supported for  `MATAIJ` matrices.
893 
894 .seealso: [](ch_matrices), `Mat`, `MatSeqAIJSetPreallocation()`, `MatMPIAIJSetPreallocation()`, `MatXAIJSetPreallocation()`
895 @*/
896 PetscErrorCode MatResetPreallocation(Mat A)
897 {
898   PetscFunctionBegin;
899   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
900   PetscValidType(A, 1);
901   PetscCheck(A->insertmode == NOT_SET_VALUES, PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot reset preallocation after setting some values but not yet calling MatAssemblyBegin()/MatAsssemblyEnd()");
902   if (A->num_ass == 0) PetscFunctionReturn(PETSC_SUCCESS);
903   PetscUseMethod(A, "MatResetPreallocation_C", (Mat), (A));
904   PetscFunctionReturn(PETSC_SUCCESS);
905 }
906 
907 /*@
908   MatSetUp - Sets up the internal matrix data structures for later use.
909 
910   Collective
911 
912   Input Parameter:
913 . A - the matrix
914 
915   Level: intermediate
916 
917   Notes:
918   If the user has not set preallocation for this matrix then an efficient algorithm will be used for the first round of
919   setting values in the matrix.
920 
921   This routine is called internally by other matrix functions when needed so rarely needs to be called by users
922 
923 .seealso: [](ch_matrices), `Mat`, `MatMult()`, `MatCreate()`, `MatDestroy()`, `MatXAIJSetPreallocation()`
924 @*/
925 PetscErrorCode MatSetUp(Mat A)
926 {
927   PetscFunctionBegin;
928   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
929   if (!((PetscObject)A)->type_name) {
930     PetscMPIInt size;
931 
932     PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)A), &size));
933     PetscCall(MatSetType(A, size == 1 ? MATSEQAIJ : MATMPIAIJ));
934   }
935   if (!A->preallocated) PetscTryTypeMethod(A, setup);
936   PetscCall(PetscLayoutSetUp(A->rmap));
937   PetscCall(PetscLayoutSetUp(A->cmap));
938   A->preallocated = PETSC_TRUE;
939   PetscFunctionReturn(PETSC_SUCCESS);
940 }
941 
942 #if defined(PETSC_HAVE_SAWS)
943   #include <petscviewersaws.h>
944 #endif
945 
946 /*
947    If threadsafety is on extraneous matrices may be printed
948 
949    This flag cannot be stored in the matrix because the original matrix in MatView() may assemble a new matrix which is passed into MatViewFromOptions()
950 */
951 #if !defined(PETSC_HAVE_THREADSAFETY)
952 static PetscInt insidematview = 0;
953 #endif
954 
955 /*@C
956   MatViewFromOptions - View properties of the matrix based on options set in the options database
957 
958   Collective
959 
960   Input Parameters:
961 + A    - the matrix
962 . obj  - optional additional object that provides the options prefix to use
963 - name - command line option
964 
965   Options Database Key:
966 . -mat_view [viewertype]:... - the viewer and its options
967 
968   Level: intermediate
969 
970   Note:
971 .vb
972     If no value is provided ascii:stdout is used
973        ascii[:[filename][:[format][:append]]]    defaults to stdout - format can be one of ascii_info, ascii_info_detail, or ascii_matlab,
974                                                   for example ascii::ascii_info prints just the information about the object not all details
975                                                   unless :append is given filename opens in write mode, overwriting what was already there
976        binary[:[filename][:[format][:append]]]   defaults to the file binaryoutput
977        draw[:drawtype[:filename]]                for example, draw:tikz, draw:tikz:figure.tex  or draw:x
978        socket[:port]                             defaults to the standard output port
979        saws[:communicatorname]                    publishes object to the Scientific Application Webserver (SAWs)
980 .ve
981 
982 .seealso: [](ch_matrices), `Mat`, `MatView()`, `PetscObjectViewFromOptions()`, `MatCreate()`
983 @*/
984 PetscErrorCode MatViewFromOptions(Mat A, PetscObject obj, const char name[])
985 {
986   PetscFunctionBegin;
987   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
988 #if !defined(PETSC_HAVE_THREADSAFETY)
989   if (insidematview) PetscFunctionReturn(PETSC_SUCCESS);
990 #endif
991   PetscCall(PetscObjectViewFromOptions((PetscObject)A, obj, name));
992   PetscFunctionReturn(PETSC_SUCCESS);
993 }
994 
995 /*@C
996   MatView - display information about a matrix in a variety ways
997 
998   Collective
999 
1000   Input Parameters:
1001 + mat    - the matrix
1002 - viewer - visualization context
1003 
1004   Options Database Keys:
1005 + -mat_view ::ascii_info           - Prints info on matrix at conclusion of `MatAssemblyEnd()`
1006 . -mat_view ::ascii_info_detail    - Prints more detailed info
1007 . -mat_view                        - Prints matrix in ASCII format
1008 . -mat_view ::ascii_matlab         - Prints matrix in MATLAB format
1009 . -mat_view draw                   - PetscDraws nonzero structure of matrix, using `MatView()` and `PetscDrawOpenX()`.
1010 . -display <name>                  - Sets display name (default is host)
1011 . -draw_pause <sec>                - Sets number of seconds to pause after display
1012 . -mat_view socket                 - Sends matrix to socket, can be accessed from MATLAB (see Users-Manual: ch_matlab for details)
1013 . -viewer_socket_machine <machine> - -
1014 . -viewer_socket_port <port>       - -
1015 . -mat_view binary                 - save matrix to file in binary format
1016 - -viewer_binary_filename <name>   - -
1017 
1018   Level: beginner
1019 
1020   Notes:
1021   The available visualization contexts include
1022 +    `PETSC_VIEWER_STDOUT_SELF` - for sequential matrices
1023 .    `PETSC_VIEWER_STDOUT_WORLD` - for parallel matrices created on `PETSC_COMM_WORLD`
1024 .    `PETSC_VIEWER_STDOUT_`(comm) - for matrices created on MPI communicator comm
1025 -     `PETSC_VIEWER_DRAW_WORLD` - graphical display of nonzero structure
1026 
1027   The user can open alternative visualization contexts with
1028 +    `PetscViewerASCIIOpen()` - Outputs matrix to a specified file
1029 .    `PetscViewerBinaryOpen()` - Outputs matrix in binary to a
1030   specified file; corresponding input uses `MatLoad()`
1031 .    `PetscViewerDrawOpen()` - Outputs nonzero matrix structure to
1032   an X window display
1033 -    `PetscViewerSocketOpen()` - Outputs matrix to Socket viewer.
1034   Currently only the `MATSEQDENSE` and `MATAIJ`
1035   matrix types support the Socket viewer.
1036 
1037   The user can call `PetscViewerPushFormat()` to specify the output
1038   format of ASCII printed objects (when using `PETSC_VIEWER_STDOUT_SELF`,
1039   `PETSC_VIEWER_STDOUT_WORLD` and `PetscViewerASCIIOpen()`).  Available formats include
1040 +    `PETSC_VIEWER_DEFAULT` - default, prints matrix contents
1041 .    `PETSC_VIEWER_ASCII_MATLAB` - prints matrix contents in MATLAB format
1042 .    `PETSC_VIEWER_ASCII_DENSE` - prints entire matrix including zeros
1043 .    `PETSC_VIEWER_ASCII_COMMON` - prints matrix contents, using a sparse
1044   format common among all matrix types
1045 .    `PETSC_VIEWER_ASCII_IMPL` - prints matrix contents, using an implementation-specific
1046   format (which is in many cases the same as the default)
1047 .    `PETSC_VIEWER_ASCII_INFO` - prints basic information about the matrix
1048   size and structure (not the matrix entries)
1049 -    `PETSC_VIEWER_ASCII_INFO_DETAIL` - prints more detailed information about
1050   the matrix structure
1051 
1052   The ASCII viewers are only recommended for small matrices on at most a moderate number of processes,
1053   the program will seemingly hang and take hours for larger matrices, for larger matrices one should use the binary format.
1054 
1055   In the debugger you can do "call MatView(mat,0)" to display the matrix. (The same holds for any PETSc object viewer).
1056 
1057   See the manual page for `MatLoad()` for the exact format of the binary file when the binary
1058   viewer is used.
1059 
1060   See share/petsc/matlab/PetscBinaryRead.m for a MATLAB code that can read in the binary file when the binary
1061   viewer is used and lib/petsc/bin/PetscBinaryIO.py for loading them into Python.
1062 
1063   One can use '-mat_view draw -draw_pause -1' to pause the graphical display of matrix nonzero structure,
1064   and then use the following mouse functions.
1065 .vb
1066   left mouse: zoom in
1067   middle mouse: zoom out
1068   right mouse: continue with the simulation
1069 .ve
1070 
1071 .seealso: [](ch_matrices), `Mat`, `PetscViewerPushFormat()`, `PetscViewerASCIIOpen()`, `PetscViewerDrawOpen()`, `PetscViewer`,
1072           `PetscViewerSocketOpen()`, `PetscViewerBinaryOpen()`, `MatLoad()`, `MatViewFromOptions()`
1073 @*/
1074 PetscErrorCode MatView(Mat mat, PetscViewer viewer)
1075 {
1076   PetscInt          rows, cols, rbs, cbs;
1077   PetscBool         isascii, isstring, issaws;
1078   PetscViewerFormat format;
1079   PetscMPIInt       size;
1080 
1081   PetscFunctionBegin;
1082   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1083   PetscValidType(mat, 1);
1084   if (!viewer) PetscCall(PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)mat), &viewer));
1085   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
1086   PetscCheckSameComm(mat, 1, viewer, 2);
1087 
1088   PetscCall(PetscViewerGetFormat(viewer, &format));
1089   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)mat), &size));
1090   if (size == 1 && format == PETSC_VIEWER_LOAD_BALANCE) PetscFunctionReturn(PETSC_SUCCESS);
1091 
1092 #if !defined(PETSC_HAVE_THREADSAFETY)
1093   insidematview++;
1094 #endif
1095   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERSTRING, &isstring));
1096   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERASCII, &isascii));
1097   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERSAWS, &issaws));
1098   PetscCheck((isascii && (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL)) || !mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "No viewers for factored matrix except ASCII, info, or info_detail");
1099 
1100   PetscCall(PetscLogEventBegin(MAT_View, mat, viewer, 0, 0));
1101   if (isascii) {
1102     if (!mat->preallocated) {
1103       PetscCall(PetscViewerASCIIPrintf(viewer, "Matrix has not been preallocated yet\n"));
1104 #if !defined(PETSC_HAVE_THREADSAFETY)
1105       insidematview--;
1106 #endif
1107       PetscCall(PetscLogEventEnd(MAT_View, mat, viewer, 0, 0));
1108       PetscFunctionReturn(PETSC_SUCCESS);
1109     }
1110     if (!mat->assembled) {
1111       PetscCall(PetscViewerASCIIPrintf(viewer, "Matrix has not been assembled yet\n"));
1112 #if !defined(PETSC_HAVE_THREADSAFETY)
1113       insidematview--;
1114 #endif
1115       PetscCall(PetscLogEventEnd(MAT_View, mat, viewer, 0, 0));
1116       PetscFunctionReturn(PETSC_SUCCESS);
1117     }
1118     PetscCall(PetscObjectPrintClassNamePrefixType((PetscObject)mat, viewer));
1119     if (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
1120       MatNullSpace nullsp, transnullsp;
1121 
1122       PetscCall(PetscViewerASCIIPushTab(viewer));
1123       PetscCall(MatGetSize(mat, &rows, &cols));
1124       PetscCall(MatGetBlockSizes(mat, &rbs, &cbs));
1125       if (rbs != 1 || cbs != 1) {
1126         if (rbs != cbs) PetscCall(PetscViewerASCIIPrintf(viewer, "rows=%" PetscInt_FMT ", cols=%" PetscInt_FMT ", rbs=%" PetscInt_FMT ", cbs=%" PetscInt_FMT "%s\n", rows, cols, rbs, cbs, mat->bsizes ? " variable blocks set" : ""));
1127         else PetscCall(PetscViewerASCIIPrintf(viewer, "rows=%" PetscInt_FMT ", cols=%" PetscInt_FMT ", bs=%" PetscInt_FMT "%s\n", rows, cols, rbs, mat->bsizes ? " variable blocks set" : ""));
1128       } else PetscCall(PetscViewerASCIIPrintf(viewer, "rows=%" PetscInt_FMT ", cols=%" PetscInt_FMT "\n", rows, cols));
1129       if (mat->factortype) {
1130         MatSolverType solver;
1131         PetscCall(MatFactorGetSolverType(mat, &solver));
1132         PetscCall(PetscViewerASCIIPrintf(viewer, "package used to perform factorization: %s\n", solver));
1133       }
1134       if (mat->ops->getinfo) {
1135         MatInfo info;
1136         PetscCall(MatGetInfo(mat, MAT_GLOBAL_SUM, &info));
1137         PetscCall(PetscViewerASCIIPrintf(viewer, "total: nonzeros=%.f, allocated nonzeros=%.f\n", info.nz_used, info.nz_allocated));
1138         if (!mat->factortype) PetscCall(PetscViewerASCIIPrintf(viewer, "total number of mallocs used during MatSetValues calls=%" PetscInt_FMT "\n", (PetscInt)info.mallocs));
1139       }
1140       PetscCall(MatGetNullSpace(mat, &nullsp));
1141       PetscCall(MatGetTransposeNullSpace(mat, &transnullsp));
1142       if (nullsp) PetscCall(PetscViewerASCIIPrintf(viewer, "  has attached null space\n"));
1143       if (transnullsp && transnullsp != nullsp) PetscCall(PetscViewerASCIIPrintf(viewer, "  has attached transposed null space\n"));
1144       PetscCall(MatGetNearNullSpace(mat, &nullsp));
1145       if (nullsp) PetscCall(PetscViewerASCIIPrintf(viewer, "  has attached near null space\n"));
1146       PetscCall(PetscViewerASCIIPushTab(viewer));
1147       PetscCall(MatProductView(mat, viewer));
1148       PetscCall(PetscViewerASCIIPopTab(viewer));
1149       if (mat->bsizes && format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
1150         IS tmp;
1151 
1152         PetscCall(ISCreateGeneral(PetscObjectComm((PetscObject)mat), mat->nblocks, mat->bsizes, PETSC_USE_POINTER, &tmp));
1153         PetscCall(PetscObjectSetName((PetscObject)tmp, "Block Sizes"));
1154         PetscCall(PetscViewerASCIIPushTab(viewer));
1155         PetscCall(ISView(tmp, viewer));
1156         PetscCall(PetscViewerASCIIPopTab(viewer));
1157         PetscCall(ISDestroy(&tmp));
1158       }
1159     }
1160   } else if (issaws) {
1161 #if defined(PETSC_HAVE_SAWS)
1162     PetscMPIInt rank;
1163 
1164     PetscCall(PetscObjectName((PetscObject)mat));
1165     PetscCallMPI(MPI_Comm_rank(PETSC_COMM_WORLD, &rank));
1166     if (!((PetscObject)mat)->amsmem && rank == 0) PetscCall(PetscObjectViewSAWs((PetscObject)mat, viewer));
1167 #endif
1168   } else if (isstring) {
1169     const char *type;
1170     PetscCall(MatGetType(mat, &type));
1171     PetscCall(PetscViewerStringSPrintf(viewer, " MatType: %-7.7s", type));
1172     PetscTryTypeMethod(mat, view, viewer);
1173   }
1174   if ((format == PETSC_VIEWER_NATIVE || format == PETSC_VIEWER_LOAD_BALANCE) && mat->ops->viewnative) {
1175     PetscCall(PetscViewerASCIIPushTab(viewer));
1176     PetscUseTypeMethod(mat, viewnative, viewer);
1177     PetscCall(PetscViewerASCIIPopTab(viewer));
1178   } else if (mat->ops->view) {
1179     PetscCall(PetscViewerASCIIPushTab(viewer));
1180     PetscUseTypeMethod(mat, view, viewer);
1181     PetscCall(PetscViewerASCIIPopTab(viewer));
1182   }
1183   if (isascii) {
1184     PetscCall(PetscViewerGetFormat(viewer, &format));
1185     if (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL) PetscCall(PetscViewerASCIIPopTab(viewer));
1186   }
1187   PetscCall(PetscLogEventEnd(MAT_View, mat, viewer, 0, 0));
1188 #if !defined(PETSC_HAVE_THREADSAFETY)
1189   insidematview--;
1190 #endif
1191   PetscFunctionReturn(PETSC_SUCCESS);
1192 }
1193 
1194 #if defined(PETSC_USE_DEBUG)
1195   #include <../src/sys/totalview/tv_data_display.h>
1196 PETSC_UNUSED static int TV_display_type(const struct _p_Mat *mat)
1197 {
1198   TV_add_row("Local rows", "int", &mat->rmap->n);
1199   TV_add_row("Local columns", "int", &mat->cmap->n);
1200   TV_add_row("Global rows", "int", &mat->rmap->N);
1201   TV_add_row("Global columns", "int", &mat->cmap->N);
1202   TV_add_row("Typename", TV_ascii_string_type, ((PetscObject)mat)->type_name);
1203   return TV_format_OK;
1204 }
1205 #endif
1206 
1207 /*@C
1208   MatLoad - Loads a matrix that has been stored in binary/HDF5 format
1209   with `MatView()`.  The matrix format is determined from the options database.
1210   Generates a parallel MPI matrix if the communicator has more than one
1211   processor.  The default matrix type is `MATAIJ`.
1212 
1213   Collective
1214 
1215   Input Parameters:
1216 + mat    - the newly loaded matrix, this needs to have been created with `MatCreate()`
1217             or some related function before a call to `MatLoad()`
1218 - viewer - `PETSCVIEWERBINARY`/`PETSCVIEWERHDF5` file viewer
1219 
1220   Options Database Key:
1221 . -matload_block_size <bs> - set block size
1222 
1223   Level: beginner
1224 
1225   Notes:
1226   If the `Mat` type has not yet been given then `MATAIJ` is used, call `MatSetFromOptions()` on the
1227   `Mat` before calling this routine if you wish to set it from the options database.
1228 
1229   `MatLoad()` automatically loads into the options database any options
1230   given in the file filename.info where filename is the name of the file
1231   that was passed to the `PetscViewerBinaryOpen()`. The options in the info
1232   file will be ignored if you use the -viewer_binary_skip_info option.
1233 
1234   If the type or size of mat is not set before a call to `MatLoad()`, PETSc
1235   sets the default matrix type AIJ and sets the local and global sizes.
1236   If type and/or size is already set, then the same are used.
1237 
1238   In parallel, each processor can load a subset of rows (or the
1239   entire matrix).  This routine is especially useful when a large
1240   matrix is stored on disk and only part of it is desired on each
1241   processor.  For example, a parallel solver may access only some of
1242   the rows from each processor.  The algorithm used here reads
1243   relatively small blocks of data rather than reading the entire
1244   matrix and then subsetting it.
1245 
1246   Viewer's `PetscViewerType` must be either `PETSCVIEWERBINARY` or `PETSCVIEWERHDF5`.
1247   Such viewer can be created using `PetscViewerBinaryOpen()` or `PetscViewerHDF5Open()`,
1248   or the sequence like
1249 .vb
1250     `PetscViewer` v;
1251     `PetscViewerCreate`(`PETSC_COMM_WORLD`,&v);
1252     `PetscViewerSetType`(v,`PETSCVIEWERBINARY`);
1253     `PetscViewerSetFromOptions`(v);
1254     `PetscViewerFileSetMode`(v,`FILE_MODE_READ`);
1255     `PetscViewerFileSetName`(v,"datafile");
1256 .ve
1257   The optional `PetscViewerSetFromOptions()` call allows overriding `PetscViewerSetType()` using the option
1258 $ -viewer_type {binary, hdf5}
1259 
1260   See the example src/ksp/ksp/tutorials/ex27.c with the first approach,
1261   and src/mat/tutorials/ex10.c with the second approach.
1262 
1263   In case of `PETSCVIEWERBINARY`, a native PETSc binary format is used. Each of the blocks
1264   is read onto MPI rank 0 and then shipped to its destination MPI rank, one after another.
1265   Multiple objects, both matrices and vectors, can be stored within the same file.
1266   Their `PetscObject` name is ignored; they are loaded in the order of their storage.
1267 
1268   Most users should not need to know the details of the binary storage
1269   format, since `MatLoad()` and `MatView()` completely hide these details.
1270   But for anyone who is interested, the standard binary matrix storage
1271   format is
1272 
1273 .vb
1274     PetscInt    MAT_FILE_CLASSID
1275     PetscInt    number of rows
1276     PetscInt    number of columns
1277     PetscInt    total number of nonzeros
1278     PetscInt    *number nonzeros in each row
1279     PetscInt    *column indices of all nonzeros (starting index is zero)
1280     PetscScalar *values of all nonzeros
1281 .ve
1282   If PETSc was not configured with `--with-64-bit-indices` then only `MATMPIAIJ` matrices with more than `PETSC_INT_MAX` non-zeros can be
1283   stored or loaded (each MPI process part of the matrix must have less than `PETSC_INT_MAX` nonzeros). Since the total nonzero count in this
1284   case will not fit in a (32-bit) `PetscInt` the value `PETSC_INT_MAX` is used for the header entry `total number of nonzeros`.
1285 
1286   PETSc automatically does the byte swapping for
1287   machines that store the bytes reversed. Thus if you write your own binary
1288   read/write routines you have to swap the bytes; see `PetscBinaryRead()`
1289   and `PetscBinaryWrite()` to see how this may be done.
1290 
1291   In case of `PETSCVIEWERHDF5`, a parallel HDF5 reader is used.
1292   Each processor's chunk is loaded independently by its owning MPI process.
1293   Multiple objects, both matrices and vectors, can be stored within the same file.
1294   They are looked up by their PetscObject name.
1295 
1296   As the MATLAB MAT-File Version 7.3 format is also a HDF5 flavor, we decided to use
1297   by default the same structure and naming of the AIJ arrays and column count
1298   within the HDF5 file. This means that a MAT file saved with -v7.3 flag, e.g.
1299 $    save example.mat A b -v7.3
1300   can be directly read by this routine (see Reference 1 for details).
1301 
1302   Depending on your MATLAB version, this format might be a default,
1303   otherwise you can set it as default in Preferences.
1304 
1305   Unless -nocompression flag is used to save the file in MATLAB,
1306   PETSc must be configured with ZLIB package.
1307 
1308   See also examples src/mat/tutorials/ex10.c and src/ksp/ksp/tutorials/ex27.c
1309 
1310   This reader currently supports only real `MATSEQAIJ`, `MATMPIAIJ`, `MATSEQDENSE` and `MATMPIDENSE` matrices for `PETSCVIEWERHDF5`
1311 
1312   Corresponding `MatView()` is not yet implemented.
1313 
1314   The loaded matrix is actually a transpose of the original one in MATLAB,
1315   unless you push `PETSC_VIEWER_HDF5_MAT` format (see examples above).
1316   With this format, matrix is automatically transposed by PETSc,
1317   unless the matrix is marked as SPD or symmetric
1318   (see `MatSetOption()`, `MAT_SPD`, `MAT_SYMMETRIC`).
1319 
1320   See MATLAB Documentation on `save()`, <https://www.mathworks.com/help/matlab/ref/save.html#btox10b-1-version>
1321 
1322 .seealso: [](ch_matrices), `Mat`, `PetscViewerBinaryOpen()`, `PetscViewerSetType()`, `MatView()`, `VecLoad()`
1323  @*/
1324 PetscErrorCode MatLoad(Mat mat, PetscViewer viewer)
1325 {
1326   PetscBool flg;
1327 
1328   PetscFunctionBegin;
1329   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1330   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
1331 
1332   if (!((PetscObject)mat)->type_name) PetscCall(MatSetType(mat, MATAIJ));
1333 
1334   flg = PETSC_FALSE;
1335   PetscCall(PetscOptionsGetBool(((PetscObject)mat)->options, ((PetscObject)mat)->prefix, "-matload_symmetric", &flg, NULL));
1336   if (flg) {
1337     PetscCall(MatSetOption(mat, MAT_SYMMETRIC, PETSC_TRUE));
1338     PetscCall(MatSetOption(mat, MAT_SYMMETRY_ETERNAL, PETSC_TRUE));
1339   }
1340   flg = PETSC_FALSE;
1341   PetscCall(PetscOptionsGetBool(((PetscObject)mat)->options, ((PetscObject)mat)->prefix, "-matload_spd", &flg, NULL));
1342   if (flg) PetscCall(MatSetOption(mat, MAT_SPD, PETSC_TRUE));
1343 
1344   PetscCall(PetscLogEventBegin(MAT_Load, mat, viewer, 0, 0));
1345   PetscUseTypeMethod(mat, load, viewer);
1346   PetscCall(PetscLogEventEnd(MAT_Load, mat, viewer, 0, 0));
1347   PetscFunctionReturn(PETSC_SUCCESS);
1348 }
1349 
1350 static PetscErrorCode MatDestroy_Redundant(Mat_Redundant **redundant)
1351 {
1352   Mat_Redundant *redund = *redundant;
1353 
1354   PetscFunctionBegin;
1355   if (redund) {
1356     if (redund->matseq) { /* via MatCreateSubMatrices()  */
1357       PetscCall(ISDestroy(&redund->isrow));
1358       PetscCall(ISDestroy(&redund->iscol));
1359       PetscCall(MatDestroySubMatrices(1, &redund->matseq));
1360     } else {
1361       PetscCall(PetscFree2(redund->send_rank, redund->recv_rank));
1362       PetscCall(PetscFree(redund->sbuf_j));
1363       PetscCall(PetscFree(redund->sbuf_a));
1364       for (PetscInt i = 0; i < redund->nrecvs; i++) {
1365         PetscCall(PetscFree(redund->rbuf_j[i]));
1366         PetscCall(PetscFree(redund->rbuf_a[i]));
1367       }
1368       PetscCall(PetscFree4(redund->sbuf_nz, redund->rbuf_nz, redund->rbuf_j, redund->rbuf_a));
1369     }
1370 
1371     if (redund->subcomm) PetscCall(PetscCommDestroy(&redund->subcomm));
1372     PetscCall(PetscFree(redund));
1373   }
1374   PetscFunctionReturn(PETSC_SUCCESS);
1375 }
1376 
1377 /*@C
1378   MatDestroy - Frees space taken by a matrix.
1379 
1380   Collective
1381 
1382   Input Parameter:
1383 . A - the matrix
1384 
1385   Level: beginner
1386 
1387   Developer Note:
1388   Some special arrays of matrices are not destroyed in this routine but instead by the routines called by
1389   `MatDestroySubMatrices()`. Thus one must be sure that any changes here must also be made in those routines.
1390   `MatHeaderMerge()` and `MatHeaderReplace()` also manipulate the data in the `Mat` object and likely need changes
1391   if changes are needed here.
1392 
1393 .seealso: [](ch_matrices), `Mat`, `MatCreate()`
1394 @*/
1395 PetscErrorCode MatDestroy(Mat *A)
1396 {
1397   PetscFunctionBegin;
1398   if (!*A) PetscFunctionReturn(PETSC_SUCCESS);
1399   PetscValidHeaderSpecific(*A, MAT_CLASSID, 1);
1400   if (--((PetscObject)(*A))->refct > 0) {
1401     *A = NULL;
1402     PetscFunctionReturn(PETSC_SUCCESS);
1403   }
1404 
1405   /* if memory was published with SAWs then destroy it */
1406   PetscCall(PetscObjectSAWsViewOff((PetscObject)*A));
1407   PetscTryTypeMethod(*A, destroy);
1408 
1409   PetscCall(PetscFree((*A)->factorprefix));
1410   PetscCall(PetscFree((*A)->defaultvectype));
1411   PetscCall(PetscFree((*A)->defaultrandtype));
1412   PetscCall(PetscFree((*A)->bsizes));
1413   PetscCall(PetscFree((*A)->solvertype));
1414   for (PetscInt i = 0; i < MAT_FACTOR_NUM_TYPES; i++) PetscCall(PetscFree((*A)->preferredordering[i]));
1415   if ((*A)->redundant && (*A)->redundant->matseq[0] == *A) (*A)->redundant->matseq[0] = NULL;
1416   PetscCall(MatDestroy_Redundant(&(*A)->redundant));
1417   PetscCall(MatProductClear(*A));
1418   PetscCall(MatNullSpaceDestroy(&(*A)->nullsp));
1419   PetscCall(MatNullSpaceDestroy(&(*A)->transnullsp));
1420   PetscCall(MatNullSpaceDestroy(&(*A)->nearnullsp));
1421   PetscCall(MatDestroy(&(*A)->schur));
1422   PetscCall(PetscLayoutDestroy(&(*A)->rmap));
1423   PetscCall(PetscLayoutDestroy(&(*A)->cmap));
1424   PetscCall(PetscHeaderDestroy(A));
1425   PetscFunctionReturn(PETSC_SUCCESS);
1426 }
1427 
1428 // PetscClangLinter pragma disable: -fdoc-section-header-unknown
1429 /*@C
1430   MatSetValues - Inserts or adds a block of values into a matrix.
1431   These values may be cached, so `MatAssemblyBegin()` and `MatAssemblyEnd()`
1432   MUST be called after all calls to `MatSetValues()` have been completed.
1433 
1434   Not Collective
1435 
1436   Input Parameters:
1437 + mat  - the matrix
1438 . v    - a logically two-dimensional array of values
1439 . m    - the number of rows
1440 . idxm - the global indices of the rows
1441 . n    - the number of columns
1442 . idxn - the global indices of the columns
1443 - addv - either `ADD_VALUES` to add values to any existing entries, or `INSERT_VALUES` to replace existing entries with new values
1444 
1445   Level: beginner
1446 
1447   Notes:
1448   By default the values, `v`, are stored row-oriented. See `MatSetOption()` for other options.
1449 
1450   Calls to `MatSetValues()` with the `INSERT_VALUES` and `ADD_VALUES`
1451   options cannot be mixed without intervening calls to the assembly
1452   routines.
1453 
1454   `MatSetValues()` uses 0-based row and column numbers in Fortran
1455   as well as in C.
1456 
1457   Negative indices may be passed in `idxm` and `idxn`, these rows and columns are
1458   simply ignored. This allows easily inserting element stiffness matrices
1459   with homogeneous Dirichlet boundary conditions that you don't want represented
1460   in the matrix.
1461 
1462   Efficiency Alert:
1463   The routine `MatSetValuesBlocked()` may offer much better efficiency
1464   for users of block sparse formats (`MATSEQBAIJ` and `MATMPIBAIJ`).
1465 
1466   Developer Note:
1467   This is labeled with C so does not automatically generate Fortran stubs and interfaces
1468   because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays.
1469 
1470 .seealso: [](ch_matrices), `Mat`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`,
1471           `InsertMode`, `INSERT_VALUES`, `ADD_VALUES`
1472 @*/
1473 PetscErrorCode MatSetValues(Mat mat, PetscInt m, const PetscInt idxm[], PetscInt n, const PetscInt idxn[], const PetscScalar v[], InsertMode addv)
1474 {
1475   PetscFunctionBeginHot;
1476   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1477   PetscValidType(mat, 1);
1478   if (!m || !n) PetscFunctionReturn(PETSC_SUCCESS); /* no values to insert */
1479   PetscAssertPointer(idxm, 3);
1480   PetscAssertPointer(idxn, 5);
1481   MatCheckPreallocated(mat, 1);
1482 
1483   if (mat->insertmode == NOT_SET_VALUES) mat->insertmode = addv;
1484   else PetscCheck(mat->insertmode == addv, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Cannot mix add values and insert values");
1485 
1486   if (PetscDefined(USE_DEBUG)) {
1487     PetscInt i, j;
1488 
1489     PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
1490     for (i = 0; i < m; i++) {
1491       for (j = 0; j < n; j++) {
1492         if (mat->erroriffailure && PetscIsInfOrNanScalar(v[i * n + j]))
1493 #if defined(PETSC_USE_COMPLEX)
1494           SETERRQ(PETSC_COMM_SELF, PETSC_ERR_FP, "Inserting %g+i%g at matrix entry (%" PetscInt_FMT ",%" PetscInt_FMT ")", (double)PetscRealPart(v[i * n + j]), (double)PetscImaginaryPart(v[i * n + j]), idxm[i], idxn[j]);
1495 #else
1496           SETERRQ(PETSC_COMM_SELF, PETSC_ERR_FP, "Inserting %g at matrix entry (%" PetscInt_FMT ",%" PetscInt_FMT ")", (double)v[i * n + j], idxm[i], idxn[j]);
1497 #endif
1498       }
1499     }
1500     for (i = 0; i < m; i++) PetscCheck(idxm[i] < mat->rmap->N, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cannot insert in row %" PetscInt_FMT ", maximum is %" PetscInt_FMT, idxm[i], mat->rmap->N - 1);
1501     for (i = 0; i < n; i++) PetscCheck(idxn[i] < mat->cmap->N, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cannot insert in column %" PetscInt_FMT ", maximum is %" PetscInt_FMT, idxn[i], mat->cmap->N - 1);
1502   }
1503 
1504   if (mat->assembled) {
1505     mat->was_assembled = PETSC_TRUE;
1506     mat->assembled     = PETSC_FALSE;
1507   }
1508   PetscCall(PetscLogEventBegin(MAT_SetValues, mat, 0, 0, 0));
1509   PetscUseTypeMethod(mat, setvalues, m, idxm, n, idxn, v, addv);
1510   PetscCall(PetscLogEventEnd(MAT_SetValues, mat, 0, 0, 0));
1511   PetscFunctionReturn(PETSC_SUCCESS);
1512 }
1513 
1514 // PetscClangLinter pragma disable: -fdoc-section-header-unknown
1515 /*@C
1516   MatSetValuesIS - Inserts or adds a block of values into a matrix using an `IS` to indicate the rows and columns
1517   These values may be cached, so `MatAssemblyBegin()` and `MatAssemblyEnd()`
1518   MUST be called after all calls to `MatSetValues()` have been completed.
1519 
1520   Not Collective
1521 
1522   Input Parameters:
1523 + mat  - the matrix
1524 . v    - a logically two-dimensional array of values
1525 . ism  - the rows to provide
1526 . isn  - the columns to provide
1527 - addv - either `ADD_VALUES` to add values to any existing entries, or `INSERT_VALUES` to replace existing entries with new values
1528 
1529   Level: beginner
1530 
1531   Notes:
1532   By default the values, `v`, are stored row-oriented. See `MatSetOption()` for other options.
1533 
1534   Calls to `MatSetValues()` with the `INSERT_VALUES` and `ADD_VALUES`
1535   options cannot be mixed without intervening calls to the assembly
1536   routines.
1537 
1538   `MatSetValues()` uses 0-based row and column numbers in Fortran
1539   as well as in C.
1540 
1541   Negative indices may be passed in `ism` and `isn`, these rows and columns are
1542   simply ignored. This allows easily inserting element stiffness matrices
1543   with homogeneous Dirichlet boundary conditions that you don't want represented
1544   in the matrix.
1545 
1546   Efficiency Alert:
1547   The routine `MatSetValuesBlocked()` may offer much better efficiency
1548   for users of block sparse formats (`MATSEQBAIJ` and `MATMPIBAIJ`).
1549 
1550   This is currently not optimized for any particular `ISType`
1551 
1552   Developer Note:
1553   This is labeled with C so does not automatically generate Fortran stubs and interfaces
1554   because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays.
1555 
1556 .seealso: [](ch_matrices), `Mat`, `MatSetOption()`, `MatSetValues()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`,
1557           `InsertMode`, `INSERT_VALUES`, `ADD_VALUES`
1558 @*/
1559 PetscErrorCode MatSetValuesIS(Mat mat, IS ism, IS isn, const PetscScalar v[], InsertMode addv)
1560 {
1561   PetscInt        m, n;
1562   const PetscInt *rows, *cols;
1563 
1564   PetscFunctionBeginHot;
1565   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1566   PetscCall(ISGetIndices(ism, &rows));
1567   PetscCall(ISGetIndices(isn, &cols));
1568   PetscCall(ISGetLocalSize(ism, &m));
1569   PetscCall(ISGetLocalSize(isn, &n));
1570   PetscCall(MatSetValues(mat, m, rows, n, cols, v, addv));
1571   PetscCall(ISRestoreIndices(ism, &rows));
1572   PetscCall(ISRestoreIndices(isn, &cols));
1573   PetscFunctionReturn(PETSC_SUCCESS);
1574 }
1575 
1576 /*@
1577   MatSetValuesRowLocal - Inserts a row (block row for `MATBAIJ` matrices) of nonzero
1578   values into a matrix
1579 
1580   Not Collective
1581 
1582   Input Parameters:
1583 + mat - the matrix
1584 . row - the (block) row to set
1585 - v   - a logically two-dimensional array of values
1586 
1587   Level: intermediate
1588 
1589   Notes:
1590   The values, `v`, are column-oriented (for the block version) and sorted
1591 
1592   All the nonzero values in `row` must be provided
1593 
1594   The matrix must have previously had its column indices set, likely by having been assembled.
1595 
1596   `row` must belong to this MPI process
1597 
1598 .seealso: [](ch_matrices), `Mat`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`,
1599           `InsertMode`, `INSERT_VALUES`, `ADD_VALUES`, `MatSetValues()`, `MatSetValuesRow()`, `MatSetLocalToGlobalMapping()`
1600 @*/
1601 PetscErrorCode MatSetValuesRowLocal(Mat mat, PetscInt row, const PetscScalar v[])
1602 {
1603   PetscInt globalrow;
1604 
1605   PetscFunctionBegin;
1606   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1607   PetscValidType(mat, 1);
1608   PetscAssertPointer(v, 3);
1609   PetscCall(ISLocalToGlobalMappingApply(mat->rmap->mapping, 1, &row, &globalrow));
1610   PetscCall(MatSetValuesRow(mat, globalrow, v));
1611   PetscFunctionReturn(PETSC_SUCCESS);
1612 }
1613 
1614 /*@
1615   MatSetValuesRow - Inserts a row (block row for `MATBAIJ` matrices) of nonzero
1616   values into a matrix
1617 
1618   Not Collective
1619 
1620   Input Parameters:
1621 + mat - the matrix
1622 . row - the (block) row to set
1623 - v   - a logically two-dimensional (column major) array of values for  block matrices with blocksize larger than one, otherwise a one dimensional array of values
1624 
1625   Level: advanced
1626 
1627   Notes:
1628   The values, `v`, are column-oriented for the block version.
1629 
1630   All the nonzeros in `row` must be provided
1631 
1632   THE MATRIX MUST HAVE PREVIOUSLY HAD ITS COLUMN INDICES SET. IT IS RARE THAT THIS ROUTINE IS USED, usually `MatSetValues()` is used.
1633 
1634   `row` must belong to this process
1635 
1636 .seealso: [](ch_matrices), `Mat`, `MatSetValues()`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`,
1637           `InsertMode`, `INSERT_VALUES`, `ADD_VALUES`
1638 @*/
1639 PetscErrorCode MatSetValuesRow(Mat mat, PetscInt row, const PetscScalar v[])
1640 {
1641   PetscFunctionBeginHot;
1642   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1643   PetscValidType(mat, 1);
1644   MatCheckPreallocated(mat, 1);
1645   PetscAssertPointer(v, 3);
1646   PetscCheck(mat->insertmode != ADD_VALUES, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Cannot mix add and insert values");
1647   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
1648   mat->insertmode = INSERT_VALUES;
1649 
1650   if (mat->assembled) {
1651     mat->was_assembled = PETSC_TRUE;
1652     mat->assembled     = PETSC_FALSE;
1653   }
1654   PetscCall(PetscLogEventBegin(MAT_SetValues, mat, 0, 0, 0));
1655   PetscUseTypeMethod(mat, setvaluesrow, row, v);
1656   PetscCall(PetscLogEventEnd(MAT_SetValues, mat, 0, 0, 0));
1657   PetscFunctionReturn(PETSC_SUCCESS);
1658 }
1659 
1660 // PetscClangLinter pragma disable: -fdoc-section-header-unknown
1661 /*@
1662   MatSetValuesStencil - Inserts or adds a block of values into a matrix.
1663   Using structured grid indexing
1664 
1665   Not Collective
1666 
1667   Input Parameters:
1668 + mat  - the matrix
1669 . m    - number of rows being entered
1670 . idxm - grid coordinates (and component number when dof > 1) for matrix rows being entered
1671 . n    - number of columns being entered
1672 . idxn - grid coordinates (and component number when dof > 1) for matrix columns being entered
1673 . v    - a logically two-dimensional array of values
1674 - addv - either `ADD_VALUES` to add to existing entries at that location or `INSERT_VALUES` to replace existing entries with new values
1675 
1676   Level: beginner
1677 
1678   Notes:
1679   By default the values, `v`, are row-oriented.  See `MatSetOption()` for other options.
1680 
1681   Calls to `MatSetValuesStencil()` with the `INSERT_VALUES` and `ADD_VALUES`
1682   options cannot be mixed without intervening calls to the assembly
1683   routines.
1684 
1685   The grid coordinates are across the entire grid, not just the local portion
1686 
1687   `MatSetValuesStencil()` uses 0-based row and column numbers in Fortran
1688   as well as in C.
1689 
1690   For setting/accessing vector values via array coordinates you can use the `DMDAVecGetArray()` routine
1691 
1692   In order to use this routine you must either obtain the matrix with `DMCreateMatrix()`
1693   or call `MatSetLocalToGlobalMapping()` and `MatSetStencil()` first.
1694 
1695   The columns and rows in the stencil passed in MUST be contained within the
1696   ghost region of the given process as set with DMDACreateXXX() or `MatSetStencil()`. For example,
1697   if you create a `DMDA` with an overlap of one grid level and on a particular process its first
1698   local nonghost x logical coordinate is 6 (so its first ghost x logical coordinate is 5) the
1699   first i index you can use in your column and row indices in `MatSetStencil()` is 5.
1700 
1701   For periodic boundary conditions use negative indices for values to the left (below 0; that are to be
1702   obtained by wrapping values from right edge). For values to the right of the last entry using that index plus one
1703   etc to obtain values that obtained by wrapping the values from the left edge. This does not work for anything but the
1704   `DM_BOUNDARY_PERIODIC` boundary type.
1705 
1706   For indices that don't mean anything for your case (like the k index when working in 2d) or the c index when you have
1707   a single value per point) you can skip filling those indices.
1708 
1709   Inspired by the structured grid interface to the HYPRE package
1710   (https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods)
1711 
1712   Efficiency Alert:
1713   The routine `MatSetValuesBlockedStencil()` may offer much better efficiency
1714   for users of block sparse formats (`MATSEQBAIJ` and `MATMPIBAIJ`).
1715 
1716   Fortran Note:
1717   `idxm` and `idxn` should be declared as
1718 $     MatStencil idxm(4,m),idxn(4,n)
1719   and the values inserted using
1720 .vb
1721     idxm(MatStencil_i,1) = i
1722     idxm(MatStencil_j,1) = j
1723     idxm(MatStencil_k,1) = k
1724     idxm(MatStencil_c,1) = c
1725     etc
1726 .ve
1727 
1728 .seealso: [](ch_matrices), `Mat`, `DMDA`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`
1729           `MatSetValues()`, `MatSetValuesBlockedStencil()`, `MatSetStencil()`, `DMCreateMatrix()`, `DMDAVecGetArray()`, `MatStencil`
1730 @*/
1731 PetscErrorCode MatSetValuesStencil(Mat mat, PetscInt m, const MatStencil idxm[], PetscInt n, const MatStencil idxn[], const PetscScalar v[], InsertMode addv)
1732 {
1733   PetscInt  buf[8192], *bufm = NULL, *bufn = NULL, *jdxm, *jdxn;
1734   PetscInt  j, i, dim = mat->stencil.dim, *dims = mat->stencil.dims + 1, tmp;
1735   PetscInt *starts = mat->stencil.starts, *dxm = (PetscInt *)idxm, *dxn = (PetscInt *)idxn, sdim = dim - (1 - (PetscInt)mat->stencil.noc);
1736 
1737   PetscFunctionBegin;
1738   if (!m || !n) PetscFunctionReturn(PETSC_SUCCESS); /* no values to insert */
1739   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1740   PetscValidType(mat, 1);
1741   PetscAssertPointer(idxm, 3);
1742   PetscAssertPointer(idxn, 5);
1743 
1744   if ((m + n) <= (PetscInt)PETSC_STATIC_ARRAY_LENGTH(buf)) {
1745     jdxm = buf;
1746     jdxn = buf + m;
1747   } else {
1748     PetscCall(PetscMalloc2(m, &bufm, n, &bufn));
1749     jdxm = bufm;
1750     jdxn = bufn;
1751   }
1752   for (i = 0; i < m; i++) {
1753     for (j = 0; j < 3 - sdim; j++) dxm++;
1754     tmp = *dxm++ - starts[0];
1755     for (j = 0; j < dim - 1; j++) {
1756       if ((*dxm++ - starts[j + 1]) < 0 || tmp < 0) tmp = -1;
1757       else tmp = tmp * dims[j] + *(dxm - 1) - starts[j + 1];
1758     }
1759     if (mat->stencil.noc) dxm++;
1760     jdxm[i] = tmp;
1761   }
1762   for (i = 0; i < n; i++) {
1763     for (j = 0; j < 3 - sdim; j++) dxn++;
1764     tmp = *dxn++ - starts[0];
1765     for (j = 0; j < dim - 1; j++) {
1766       if ((*dxn++ - starts[j + 1]) < 0 || tmp < 0) tmp = -1;
1767       else tmp = tmp * dims[j] + *(dxn - 1) - starts[j + 1];
1768     }
1769     if (mat->stencil.noc) dxn++;
1770     jdxn[i] = tmp;
1771   }
1772   PetscCall(MatSetValuesLocal(mat, m, jdxm, n, jdxn, v, addv));
1773   PetscCall(PetscFree2(bufm, bufn));
1774   PetscFunctionReturn(PETSC_SUCCESS);
1775 }
1776 
1777 /*@
1778   MatSetValuesBlockedStencil - Inserts or adds a block of values into a matrix.
1779   Using structured grid indexing
1780 
1781   Not Collective
1782 
1783   Input Parameters:
1784 + mat  - the matrix
1785 . m    - number of rows being entered
1786 . idxm - grid coordinates for matrix rows being entered
1787 . n    - number of columns being entered
1788 . idxn - grid coordinates for matrix columns being entered
1789 . v    - a logically two-dimensional array of values
1790 - addv - either `ADD_VALUES` to add to existing entries or `INSERT_VALUES` to replace existing entries with new values
1791 
1792   Level: beginner
1793 
1794   Notes:
1795   By default the values, `v`, are row-oriented and unsorted.
1796   See `MatSetOption()` for other options.
1797 
1798   Calls to `MatSetValuesBlockedStencil()` with the `INSERT_VALUES` and `ADD_VALUES`
1799   options cannot be mixed without intervening calls to the assembly
1800   routines.
1801 
1802   The grid coordinates are across the entire grid, not just the local portion
1803 
1804   `MatSetValuesBlockedStencil()` uses 0-based row and column numbers in Fortran
1805   as well as in C.
1806 
1807   For setting/accessing vector values via array coordinates you can use the `DMDAVecGetArray()` routine
1808 
1809   In order to use this routine you must either obtain the matrix with `DMCreateMatrix()`
1810   or call `MatSetBlockSize()`, `MatSetLocalToGlobalMapping()` and `MatSetStencil()` first.
1811 
1812   The columns and rows in the stencil passed in MUST be contained within the
1813   ghost region of the given process as set with DMDACreateXXX() or `MatSetStencil()`. For example,
1814   if you create a `DMDA` with an overlap of one grid level and on a particular process its first
1815   local nonghost x logical coordinate is 6 (so its first ghost x logical coordinate is 5) the
1816   first i index you can use in your column and row indices in `MatSetStencil()` is 5.
1817 
1818   Negative indices may be passed in idxm and idxn, these rows and columns are
1819   simply ignored. This allows easily inserting element stiffness matrices
1820   with homogeneous Dirichlet boundary conditions that you don't want represented
1821   in the matrix.
1822 
1823   Inspired by the structured grid interface to the HYPRE package
1824   (https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods)
1825 
1826   Fortran Note:
1827   `idxm` and `idxn` should be declared as
1828 $     MatStencil idxm(4,m),idxn(4,n)
1829   and the values inserted using
1830 .vb
1831     idxm(MatStencil_i,1) = i
1832     idxm(MatStencil_j,1) = j
1833     idxm(MatStencil_k,1) = k
1834    etc
1835 .ve
1836 
1837 .seealso: [](ch_matrices), `Mat`, `DMDA`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`
1838           `MatSetValues()`, `MatSetValuesStencil()`, `MatSetStencil()`, `DMCreateMatrix()`, `DMDAVecGetArray()`, `MatStencil`,
1839           `MatSetBlockSize()`, `MatSetLocalToGlobalMapping()`
1840 @*/
1841 PetscErrorCode MatSetValuesBlockedStencil(Mat mat, PetscInt m, const MatStencil idxm[], PetscInt n, const MatStencil idxn[], const PetscScalar v[], InsertMode addv)
1842 {
1843   PetscInt  buf[8192], *bufm = NULL, *bufn = NULL, *jdxm, *jdxn;
1844   PetscInt  j, i, dim = mat->stencil.dim, *dims = mat->stencil.dims + 1, tmp;
1845   PetscInt *starts = mat->stencil.starts, *dxm = (PetscInt *)idxm, *dxn = (PetscInt *)idxn, sdim = dim - (1 - (PetscInt)mat->stencil.noc);
1846 
1847   PetscFunctionBegin;
1848   if (!m || !n) PetscFunctionReturn(PETSC_SUCCESS); /* no values to insert */
1849   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1850   PetscValidType(mat, 1);
1851   PetscAssertPointer(idxm, 3);
1852   PetscAssertPointer(idxn, 5);
1853   PetscAssertPointer(v, 6);
1854 
1855   if ((m + n) <= (PetscInt)PETSC_STATIC_ARRAY_LENGTH(buf)) {
1856     jdxm = buf;
1857     jdxn = buf + m;
1858   } else {
1859     PetscCall(PetscMalloc2(m, &bufm, n, &bufn));
1860     jdxm = bufm;
1861     jdxn = bufn;
1862   }
1863   for (i = 0; i < m; i++) {
1864     for (j = 0; j < 3 - sdim; j++) dxm++;
1865     tmp = *dxm++ - starts[0];
1866     for (j = 0; j < sdim - 1; j++) {
1867       if ((*dxm++ - starts[j + 1]) < 0 || tmp < 0) tmp = -1;
1868       else tmp = tmp * dims[j] + *(dxm - 1) - starts[j + 1];
1869     }
1870     dxm++;
1871     jdxm[i] = tmp;
1872   }
1873   for (i = 0; i < n; i++) {
1874     for (j = 0; j < 3 - sdim; j++) dxn++;
1875     tmp = *dxn++ - starts[0];
1876     for (j = 0; j < sdim - 1; j++) {
1877       if ((*dxn++ - starts[j + 1]) < 0 || tmp < 0) tmp = -1;
1878       else tmp = tmp * dims[j] + *(dxn - 1) - starts[j + 1];
1879     }
1880     dxn++;
1881     jdxn[i] = tmp;
1882   }
1883   PetscCall(MatSetValuesBlockedLocal(mat, m, jdxm, n, jdxn, v, addv));
1884   PetscCall(PetscFree2(bufm, bufn));
1885   PetscFunctionReturn(PETSC_SUCCESS);
1886 }
1887 
1888 /*@
1889   MatSetStencil - Sets the grid information for setting values into a matrix via
1890   `MatSetValuesStencil()`
1891 
1892   Not Collective
1893 
1894   Input Parameters:
1895 + mat    - the matrix
1896 . dim    - dimension of the grid 1, 2, or 3
1897 . dims   - number of grid points in x, y, and z direction, including ghost points on your processor
1898 . starts - starting point of ghost nodes on your processor in x, y, and z direction
1899 - dof    - number of degrees of freedom per node
1900 
1901   Level: beginner
1902 
1903   Notes:
1904   Inspired by the structured grid interface to the HYPRE package
1905   (www.llnl.gov/CASC/hyper)
1906 
1907   For matrices generated with `DMCreateMatrix()` this routine is automatically called and so not needed by the
1908   user.
1909 
1910 .seealso: [](ch_matrices), `Mat`, `MatStencil`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`
1911           `MatSetValues()`, `MatSetValuesBlockedStencil()`, `MatSetValuesStencil()`
1912 @*/
1913 PetscErrorCode MatSetStencil(Mat mat, PetscInt dim, const PetscInt dims[], const PetscInt starts[], PetscInt dof)
1914 {
1915   PetscFunctionBegin;
1916   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
1917   PetscAssertPointer(dims, 3);
1918   PetscAssertPointer(starts, 4);
1919 
1920   mat->stencil.dim = dim + (dof > 1);
1921   for (PetscInt i = 0; i < dim; i++) {
1922     mat->stencil.dims[i]   = dims[dim - i - 1]; /* copy the values in backwards */
1923     mat->stencil.starts[i] = starts[dim - i - 1];
1924   }
1925   mat->stencil.dims[dim]   = dof;
1926   mat->stencil.starts[dim] = 0;
1927   mat->stencil.noc         = (PetscBool)(dof == 1);
1928   PetscFunctionReturn(PETSC_SUCCESS);
1929 }
1930 
1931 /*@C
1932   MatSetValuesBlocked - Inserts or adds a block of values into a matrix.
1933 
1934   Not Collective
1935 
1936   Input Parameters:
1937 + mat  - the matrix
1938 . v    - a logically two-dimensional array of values
1939 . m    - the number of block rows
1940 . idxm - the global block indices
1941 . n    - the number of block columns
1942 . idxn - the global block indices
1943 - addv - either `ADD_VALUES` to add values to any existing entries, or `INSERT_VALUES` replaces existing entries with new values
1944 
1945   Level: intermediate
1946 
1947   Notes:
1948   If you create the matrix yourself (that is not with a call to `DMCreateMatrix()`) then you MUST call
1949   MatXXXXSetPreallocation() or `MatSetUp()` before using this routine.
1950 
1951   The `m` and `n` count the NUMBER of blocks in the row direction and column direction,
1952   NOT the total number of rows/columns; for example, if the block size is 2 and
1953   you are passing in values for rows 2,3,4,5  then m would be 2 (not 4).
1954   The values in idxm would be 1 2; that is the first index for each block divided by
1955   the block size.
1956 
1957   You must call `MatSetBlockSize()` when constructing this matrix (before
1958   preallocating it).
1959 
1960   By default the values, `v`, are row-oriented, so the layout of
1961   `v` is the same as for `MatSetValues()`. See `MatSetOption()` for other options.
1962 
1963   Calls to `MatSetValuesBlocked()` with the `INSERT_VALUES` and `ADD_VALUES`
1964   options cannot be mixed without intervening calls to the assembly
1965   routines.
1966 
1967   `MatSetValuesBlocked()` uses 0-based row and column numbers in Fortran
1968   as well as in C.
1969 
1970   Negative indices may be passed in `idxm` and `idxn`, these rows and columns are
1971   simply ignored. This allows easily inserting element stiffness matrices
1972   with homogeneous Dirichlet boundary conditions that you don't want represented
1973   in the matrix.
1974 
1975   Each time an entry is set within a sparse matrix via `MatSetValues()`,
1976   internal searching must be done to determine where to place the
1977   data in the matrix storage space.  By instead inserting blocks of
1978   entries via `MatSetValuesBlocked()`, the overhead of matrix assembly is
1979   reduced.
1980 
1981   Example:
1982 .vb
1983    Suppose m=n=2 and block size(bs) = 2 The array is
1984 
1985    1  2  | 3  4
1986    5  6  | 7  8
1987    - - - | - - -
1988    9  10 | 11 12
1989    13 14 | 15 16
1990 
1991    v[] should be passed in like
1992    v[] = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]
1993 
1994   If you are not using row oriented storage of v (that is you called MatSetOption(mat,MAT_ROW_ORIENTED,PETSC_FALSE)) then
1995    v[] = [1,5,9,13,2,6,10,14,3,7,11,15,4,8,12,16]
1996 .ve
1997 
1998 .seealso: [](ch_matrices), `Mat`, `MatSetBlockSize()`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValues()`, `MatSetValuesBlockedLocal()`
1999 @*/
2000 PetscErrorCode MatSetValuesBlocked(Mat mat, PetscInt m, const PetscInt idxm[], PetscInt n, const PetscInt idxn[], const PetscScalar v[], InsertMode addv)
2001 {
2002   PetscFunctionBeginHot;
2003   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2004   PetscValidType(mat, 1);
2005   if (!m || !n) PetscFunctionReturn(PETSC_SUCCESS); /* no values to insert */
2006   PetscAssertPointer(idxm, 3);
2007   PetscAssertPointer(idxn, 5);
2008   MatCheckPreallocated(mat, 1);
2009   if (mat->insertmode == NOT_SET_VALUES) mat->insertmode = addv;
2010   else PetscCheck(mat->insertmode == addv, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Cannot mix add values and insert values");
2011   if (PetscDefined(USE_DEBUG)) {
2012     PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2013     PetscCheck(mat->ops->setvaluesblocked || mat->ops->setvalues, PETSC_COMM_SELF, PETSC_ERR_SUP, "Mat type %s", ((PetscObject)mat)->type_name);
2014   }
2015   if (PetscDefined(USE_DEBUG)) {
2016     PetscInt rbs, cbs, M, N, i;
2017     PetscCall(MatGetBlockSizes(mat, &rbs, &cbs));
2018     PetscCall(MatGetSize(mat, &M, &N));
2019     for (i = 0; i < m; i++) PetscCheck(idxm[i] * rbs < M, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Row block index %" PetscInt_FMT " (index %" PetscInt_FMT ") greater than row length %" PetscInt_FMT, i, idxm[i], M);
2020     for (i = 0; i < n; i++) PetscCheck(idxn[i] * cbs < N, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Column block index %" PetscInt_FMT " (index %" PetscInt_FMT ") great than column length %" PetscInt_FMT, i, idxn[i], N);
2021   }
2022   if (mat->assembled) {
2023     mat->was_assembled = PETSC_TRUE;
2024     mat->assembled     = PETSC_FALSE;
2025   }
2026   PetscCall(PetscLogEventBegin(MAT_SetValues, mat, 0, 0, 0));
2027   if (mat->ops->setvaluesblocked) {
2028     PetscUseTypeMethod(mat, setvaluesblocked, m, idxm, n, idxn, v, addv);
2029   } else {
2030     PetscInt buf[8192], *bufr = NULL, *bufc = NULL, *iidxm, *iidxn;
2031     PetscInt i, j, bs, cbs;
2032 
2033     PetscCall(MatGetBlockSizes(mat, &bs, &cbs));
2034     if ((m * bs + n * cbs) <= (PetscInt)PETSC_STATIC_ARRAY_LENGTH(buf)) {
2035       iidxm = buf;
2036       iidxn = buf + m * bs;
2037     } else {
2038       PetscCall(PetscMalloc2(m * bs, &bufr, n * cbs, &bufc));
2039       iidxm = bufr;
2040       iidxn = bufc;
2041     }
2042     for (i = 0; i < m; i++) {
2043       for (j = 0; j < bs; j++) iidxm[i * bs + j] = bs * idxm[i] + j;
2044     }
2045     if (m != n || bs != cbs || idxm != idxn) {
2046       for (i = 0; i < n; i++) {
2047         for (j = 0; j < cbs; j++) iidxn[i * cbs + j] = cbs * idxn[i] + j;
2048       }
2049     } else iidxn = iidxm;
2050     PetscCall(MatSetValues(mat, m * bs, iidxm, n * cbs, iidxn, v, addv));
2051     PetscCall(PetscFree2(bufr, bufc));
2052   }
2053   PetscCall(PetscLogEventEnd(MAT_SetValues, mat, 0, 0, 0));
2054   PetscFunctionReturn(PETSC_SUCCESS);
2055 }
2056 
2057 /*@C
2058   MatGetValues - Gets a block of local values from a matrix.
2059 
2060   Not Collective; can only return values that are owned by the give process
2061 
2062   Input Parameters:
2063 + mat  - the matrix
2064 . v    - a logically two-dimensional array for storing the values
2065 . m    - the number of rows
2066 . idxm - the  global indices of the rows
2067 . n    - the number of columns
2068 - idxn - the global indices of the columns
2069 
2070   Level: advanced
2071 
2072   Notes:
2073   The user must allocate space (m*n `PetscScalar`s) for the values, `v`.
2074   The values, `v`, are then returned in a row-oriented format,
2075   analogous to that used by default in `MatSetValues()`.
2076 
2077   `MatGetValues()` uses 0-based row and column numbers in
2078   Fortran as well as in C.
2079 
2080   `MatGetValues()` requires that the matrix has been assembled
2081   with `MatAssemblyBegin()`/`MatAssemblyEnd()`.  Thus, calls to
2082   `MatSetValues()` and `MatGetValues()` CANNOT be made in succession
2083   without intermediate matrix assembly.
2084 
2085   Negative row or column indices will be ignored and those locations in `v` will be
2086   left unchanged.
2087 
2088   For the standard row-based matrix formats, `idxm` can only contain rows owned by the requesting MPI process.
2089   That is, rows with global index greater than or equal to rstart and less than rend where rstart and rend are obtainable
2090   from `MatGetOwnershipRange`(mat,&rstart,&rend).
2091 
2092 .seealso: [](ch_matrices), `Mat`, `MatGetRow()`, `MatCreateSubMatrices()`, `MatSetValues()`, `MatGetOwnershipRange()`, `MatGetValuesLocal()`, `MatGetValue()`
2093 @*/
2094 PetscErrorCode MatGetValues(Mat mat, PetscInt m, const PetscInt idxm[], PetscInt n, const PetscInt idxn[], PetscScalar v[])
2095 {
2096   PetscFunctionBegin;
2097   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2098   PetscValidType(mat, 1);
2099   if (!m || !n) PetscFunctionReturn(PETSC_SUCCESS);
2100   PetscAssertPointer(idxm, 3);
2101   PetscAssertPointer(idxn, 5);
2102   PetscAssertPointer(v, 6);
2103   PetscCheck(mat->assembled, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2104   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2105   MatCheckPreallocated(mat, 1);
2106 
2107   PetscCall(PetscLogEventBegin(MAT_GetValues, mat, 0, 0, 0));
2108   PetscUseTypeMethod(mat, getvalues, m, idxm, n, idxn, v);
2109   PetscCall(PetscLogEventEnd(MAT_GetValues, mat, 0, 0, 0));
2110   PetscFunctionReturn(PETSC_SUCCESS);
2111 }
2112 
2113 /*@C
2114   MatGetValuesLocal - retrieves values from certain locations in a matrix using the local numbering of the indices
2115   defined previously by `MatSetLocalToGlobalMapping()`
2116 
2117   Not Collective
2118 
2119   Input Parameters:
2120 + mat  - the matrix
2121 . nrow - number of rows
2122 . irow - the row local indices
2123 . ncol - number of columns
2124 - icol - the column local indices
2125 
2126   Output Parameter:
2127 . y - a logically two-dimensional array of values
2128 
2129   Level: advanced
2130 
2131   Notes:
2132   If you create the matrix yourself (that is not with a call to `DMCreateMatrix()`) then you MUST call `MatSetLocalToGlobalMapping()` before using this routine.
2133 
2134   This routine can only return values that are owned by the requesting MPI process. That is, for standard matrix formats, rows that, in the global numbering,
2135   are greater than or equal to rstart and less than rend where rstart and rend are obtainable from `MatGetOwnershipRange`(mat,&rstart,&rend). One can
2136   determine if the resulting global row associated with the local row r is owned by the requesting MPI process by applying the `ISLocalToGlobalMapping` set
2137   with `MatSetLocalToGlobalMapping()`.
2138 
2139   Developer Note:
2140   This is labelled with C so does not automatically generate Fortran stubs and interfaces
2141   because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays.
2142 
2143 .seealso: [](ch_matrices), `Mat`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValues()`, `MatSetLocalToGlobalMapping()`,
2144           `MatSetValuesLocal()`, `MatGetValues()`
2145 @*/
2146 PetscErrorCode MatGetValuesLocal(Mat mat, PetscInt nrow, const PetscInt irow[], PetscInt ncol, const PetscInt icol[], PetscScalar y[])
2147 {
2148   PetscFunctionBeginHot;
2149   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2150   PetscValidType(mat, 1);
2151   MatCheckPreallocated(mat, 1);
2152   if (!nrow || !ncol) PetscFunctionReturn(PETSC_SUCCESS); /* no values to retrieve */
2153   PetscAssertPointer(irow, 3);
2154   PetscAssertPointer(icol, 5);
2155   if (PetscDefined(USE_DEBUG)) {
2156     PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2157     PetscCheck(mat->ops->getvalueslocal || mat->ops->getvalues, PETSC_COMM_SELF, PETSC_ERR_SUP, "Mat type %s", ((PetscObject)mat)->type_name);
2158   }
2159   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2160   PetscCall(PetscLogEventBegin(MAT_GetValues, mat, 0, 0, 0));
2161   if (mat->ops->getvalueslocal) PetscUseTypeMethod(mat, getvalueslocal, nrow, irow, ncol, icol, y);
2162   else {
2163     PetscInt buf[8192], *bufr = NULL, *bufc = NULL, *irowm, *icolm;
2164     if ((nrow + ncol) <= (PetscInt)PETSC_STATIC_ARRAY_LENGTH(buf)) {
2165       irowm = buf;
2166       icolm = buf + nrow;
2167     } else {
2168       PetscCall(PetscMalloc2(nrow, &bufr, ncol, &bufc));
2169       irowm = bufr;
2170       icolm = bufc;
2171     }
2172     PetscCheck(mat->rmap->mapping, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "MatGetValuesLocal() cannot proceed without local-to-global row mapping (See MatSetLocalToGlobalMapping()).");
2173     PetscCheck(mat->cmap->mapping, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "MatGetValuesLocal() cannot proceed without local-to-global column mapping (See MatSetLocalToGlobalMapping()).");
2174     PetscCall(ISLocalToGlobalMappingApply(mat->rmap->mapping, nrow, irow, irowm));
2175     PetscCall(ISLocalToGlobalMappingApply(mat->cmap->mapping, ncol, icol, icolm));
2176     PetscCall(MatGetValues(mat, nrow, irowm, ncol, icolm, y));
2177     PetscCall(PetscFree2(bufr, bufc));
2178   }
2179   PetscCall(PetscLogEventEnd(MAT_GetValues, mat, 0, 0, 0));
2180   PetscFunctionReturn(PETSC_SUCCESS);
2181 }
2182 
2183 /*@
2184   MatSetValuesBatch - Adds (`ADD_VALUES`) many blocks of values into a matrix at once. The blocks must all be square and
2185   the same size. Currently, this can only be called once and creates the given matrix.
2186 
2187   Not Collective
2188 
2189   Input Parameters:
2190 + mat  - the matrix
2191 . nb   - the number of blocks
2192 . bs   - the number of rows (and columns) in each block
2193 . rows - a concatenation of the rows for each block
2194 - v    - a concatenation of logically two-dimensional arrays of values
2195 
2196   Level: advanced
2197 
2198   Notes:
2199   `MatSetPreallocationCOO()` and `MatSetValuesCOO()` may be a better way to provide the values
2200 
2201   In the future, we will extend this routine to handle rectangular blocks, and to allow multiple calls for a given matrix.
2202 
2203 .seealso: [](ch_matrices), `Mat`, `MatSetOption()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValuesBlocked()`, `MatSetValuesLocal()`,
2204           `InsertMode`, `INSERT_VALUES`, `ADD_VALUES`, `MatSetValues()`, `MatSetPreallocationCOO()`, `MatSetValuesCOO()`
2205 @*/
2206 PetscErrorCode MatSetValuesBatch(Mat mat, PetscInt nb, PetscInt bs, PetscInt rows[], const PetscScalar v[])
2207 {
2208   PetscFunctionBegin;
2209   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2210   PetscValidType(mat, 1);
2211   PetscAssertPointer(rows, 4);
2212   PetscAssertPointer(v, 5);
2213   PetscAssert(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2214 
2215   PetscCall(PetscLogEventBegin(MAT_SetValuesBatch, mat, 0, 0, 0));
2216   if (mat->ops->setvaluesbatch) PetscUseTypeMethod(mat, setvaluesbatch, nb, bs, rows, v);
2217   else {
2218     for (PetscInt b = 0; b < nb; ++b) PetscCall(MatSetValues(mat, bs, &rows[b * bs], bs, &rows[b * bs], &v[b * bs * bs], ADD_VALUES));
2219   }
2220   PetscCall(PetscLogEventEnd(MAT_SetValuesBatch, mat, 0, 0, 0));
2221   PetscFunctionReturn(PETSC_SUCCESS);
2222 }
2223 
2224 /*@
2225   MatSetLocalToGlobalMapping - Sets a local-to-global numbering for use by
2226   the routine `MatSetValuesLocal()` to allow users to insert matrix entries
2227   using a local (per-processor) numbering.
2228 
2229   Not Collective
2230 
2231   Input Parameters:
2232 + x        - the matrix
2233 . rmapping - row mapping created with `ISLocalToGlobalMappingCreate()` or `ISLocalToGlobalMappingCreateIS()`
2234 - cmapping - column mapping
2235 
2236   Level: intermediate
2237 
2238   Note:
2239   If the matrix is obtained with `DMCreateMatrix()` then this may already have been called on the matrix
2240 
2241 .seealso: [](ch_matrices), `Mat`, `DM`, `DMCreateMatrix()`, `MatGetLocalToGlobalMapping()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValues()`, `MatSetValuesLocal()`, `MatGetValuesLocal()`
2242 @*/
2243 PetscErrorCode MatSetLocalToGlobalMapping(Mat x, ISLocalToGlobalMapping rmapping, ISLocalToGlobalMapping cmapping)
2244 {
2245   PetscFunctionBegin;
2246   PetscValidHeaderSpecific(x, MAT_CLASSID, 1);
2247   PetscValidType(x, 1);
2248   if (rmapping) PetscValidHeaderSpecific(rmapping, IS_LTOGM_CLASSID, 2);
2249   if (cmapping) PetscValidHeaderSpecific(cmapping, IS_LTOGM_CLASSID, 3);
2250   if (x->ops->setlocaltoglobalmapping) PetscUseTypeMethod(x, setlocaltoglobalmapping, rmapping, cmapping);
2251   else {
2252     PetscCall(PetscLayoutSetISLocalToGlobalMapping(x->rmap, rmapping));
2253     PetscCall(PetscLayoutSetISLocalToGlobalMapping(x->cmap, cmapping));
2254   }
2255   PetscFunctionReturn(PETSC_SUCCESS);
2256 }
2257 
2258 /*@
2259   MatGetLocalToGlobalMapping - Gets the local-to-global numbering set by `MatSetLocalToGlobalMapping()`
2260 
2261   Not Collective
2262 
2263   Input Parameter:
2264 . A - the matrix
2265 
2266   Output Parameters:
2267 + rmapping - row mapping
2268 - cmapping - column mapping
2269 
2270   Level: advanced
2271 
2272 .seealso: [](ch_matrices), `Mat`, `MatSetLocalToGlobalMapping()`, `MatSetValuesLocal()`
2273 @*/
2274 PetscErrorCode MatGetLocalToGlobalMapping(Mat A, ISLocalToGlobalMapping *rmapping, ISLocalToGlobalMapping *cmapping)
2275 {
2276   PetscFunctionBegin;
2277   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
2278   PetscValidType(A, 1);
2279   if (rmapping) {
2280     PetscAssertPointer(rmapping, 2);
2281     *rmapping = A->rmap->mapping;
2282   }
2283   if (cmapping) {
2284     PetscAssertPointer(cmapping, 3);
2285     *cmapping = A->cmap->mapping;
2286   }
2287   PetscFunctionReturn(PETSC_SUCCESS);
2288 }
2289 
2290 /*@
2291   MatSetLayouts - Sets the `PetscLayout` objects for rows and columns of a matrix
2292 
2293   Logically Collective
2294 
2295   Input Parameters:
2296 + A    - the matrix
2297 . rmap - row layout
2298 - cmap - column layout
2299 
2300   Level: advanced
2301 
2302   Note:
2303   The `PetscLayout` objects are usually created automatically for the matrix so this routine rarely needs to be called.
2304 
2305 .seealso: [](ch_matrices), `Mat`, `PetscLayout`, `MatCreateVecs()`, `MatGetLocalToGlobalMapping()`, `MatGetLayouts()`
2306 @*/
2307 PetscErrorCode MatSetLayouts(Mat A, PetscLayout rmap, PetscLayout cmap)
2308 {
2309   PetscFunctionBegin;
2310   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
2311   PetscCall(PetscLayoutReference(rmap, &A->rmap));
2312   PetscCall(PetscLayoutReference(cmap, &A->cmap));
2313   PetscFunctionReturn(PETSC_SUCCESS);
2314 }
2315 
2316 /*@
2317   MatGetLayouts - Gets the `PetscLayout` objects for rows and columns
2318 
2319   Not Collective
2320 
2321   Input Parameter:
2322 . A - the matrix
2323 
2324   Output Parameters:
2325 + rmap - row layout
2326 - cmap - column layout
2327 
2328   Level: advanced
2329 
2330 .seealso: [](ch_matrices), `Mat`, [Matrix Layouts](sec_matlayout), `PetscLayout`, `MatCreateVecs()`, `MatGetLocalToGlobalMapping()`, `MatSetLayouts()`
2331 @*/
2332 PetscErrorCode MatGetLayouts(Mat A, PetscLayout *rmap, PetscLayout *cmap)
2333 {
2334   PetscFunctionBegin;
2335   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
2336   PetscValidType(A, 1);
2337   if (rmap) {
2338     PetscAssertPointer(rmap, 2);
2339     *rmap = A->rmap;
2340   }
2341   if (cmap) {
2342     PetscAssertPointer(cmap, 3);
2343     *cmap = A->cmap;
2344   }
2345   PetscFunctionReturn(PETSC_SUCCESS);
2346 }
2347 
2348 /*@C
2349   MatSetValuesLocal - Inserts or adds values into certain locations of a matrix,
2350   using a local numbering of the rows and columns.
2351 
2352   Not Collective
2353 
2354   Input Parameters:
2355 + mat  - the matrix
2356 . nrow - number of rows
2357 . irow - the row local indices
2358 . ncol - number of columns
2359 . icol - the column local indices
2360 . y    - a logically two-dimensional array of values
2361 - addv - either `INSERT_VALUES` to add values to any existing entries, or `INSERT_VALUES` to replace existing entries with new values
2362 
2363   Level: intermediate
2364 
2365   Notes:
2366   If you create the matrix yourself (that is not with a call to `DMCreateMatrix()`) then you MUST call `MatSetLocalToGlobalMapping()` before using this routine
2367 
2368   Calls to `MatSetValuesLocal()` with the `INSERT_VALUES` and `ADD_VALUES`
2369   options cannot be mixed without intervening calls to the assembly
2370   routines.
2371 
2372   These values may be cached, so `MatAssemblyBegin()` and `MatAssemblyEnd()`
2373   MUST be called after all calls to `MatSetValuesLocal()` have been completed.
2374 
2375   Developer Note:
2376   This is labeled with C so does not automatically generate Fortran stubs and interfaces
2377   because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays.
2378 
2379 .seealso: [](ch_matrices), `Mat`, `MatAssemblyBegin()`, `MatAssemblyEnd()`, `MatSetValues()`, `MatSetLocalToGlobalMapping()`,
2380           `MatGetValuesLocal()`
2381 @*/
2382 PetscErrorCode MatSetValuesLocal(Mat mat, PetscInt nrow, const PetscInt irow[], PetscInt ncol, const PetscInt icol[], const PetscScalar y[], InsertMode addv)
2383 {
2384   PetscFunctionBeginHot;
2385   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2386   PetscValidType(mat, 1);
2387   MatCheckPreallocated(mat, 1);
2388   if (!nrow || !ncol) PetscFunctionReturn(PETSC_SUCCESS); /* no values to insert */
2389   PetscAssertPointer(irow, 3);
2390   PetscAssertPointer(icol, 5);
2391   if (mat->insertmode == NOT_SET_VALUES) mat->insertmode = addv;
2392   else PetscCheck(mat->insertmode == addv, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Cannot mix add values and insert values");
2393   if (PetscDefined(USE_DEBUG)) {
2394     PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2395     PetscCheck(mat->ops->setvalueslocal || mat->ops->setvalues, PETSC_COMM_SELF, PETSC_ERR_SUP, "Mat type %s", ((PetscObject)mat)->type_name);
2396   }
2397 
2398   if (mat->assembled) {
2399     mat->was_assembled = PETSC_TRUE;
2400     mat->assembled     = PETSC_FALSE;
2401   }
2402   PetscCall(PetscLogEventBegin(MAT_SetValues, mat, 0, 0, 0));
2403   if (mat->ops->setvalueslocal) PetscUseTypeMethod(mat, setvalueslocal, nrow, irow, ncol, icol, y, addv);
2404   else {
2405     PetscInt        buf[8192], *bufr = NULL, *bufc = NULL;
2406     const PetscInt *irowm, *icolm;
2407 
2408     if ((!mat->rmap->mapping && !mat->cmap->mapping) || (nrow + ncol) <= (PetscInt)PETSC_STATIC_ARRAY_LENGTH(buf)) {
2409       bufr  = buf;
2410       bufc  = buf + nrow;
2411       irowm = bufr;
2412       icolm = bufc;
2413     } else {
2414       PetscCall(PetscMalloc2(nrow, &bufr, ncol, &bufc));
2415       irowm = bufr;
2416       icolm = bufc;
2417     }
2418     if (mat->rmap->mapping) PetscCall(ISLocalToGlobalMappingApply(mat->rmap->mapping, nrow, irow, bufr));
2419     else irowm = irow;
2420     if (mat->cmap->mapping) {
2421       if (mat->cmap->mapping != mat->rmap->mapping || ncol != nrow || icol != irow) {
2422         PetscCall(ISLocalToGlobalMappingApply(mat->cmap->mapping, ncol, icol, bufc));
2423       } else icolm = irowm;
2424     } else icolm = icol;
2425     PetscCall(MatSetValues(mat, nrow, irowm, ncol, icolm, y, addv));
2426     if (bufr != buf) PetscCall(PetscFree2(bufr, bufc));
2427   }
2428   PetscCall(PetscLogEventEnd(MAT_SetValues, mat, 0, 0, 0));
2429   PetscFunctionReturn(PETSC_SUCCESS);
2430 }
2431 
2432 /*@C
2433   MatSetValuesBlockedLocal - Inserts or adds values into certain locations of a matrix,
2434   using a local ordering of the nodes a block at a time.
2435 
2436   Not Collective
2437 
2438   Input Parameters:
2439 + mat  - the matrix
2440 . nrow - number of rows
2441 . irow - the row local indices
2442 . ncol - number of columns
2443 . icol - the column local indices
2444 . y    - a logically two-dimensional array of values
2445 - addv - either `ADD_VALUES` to add values to any existing entries, or `INSERT_VALUES` to replace existing entries with new values
2446 
2447   Level: intermediate
2448 
2449   Notes:
2450   If you create the matrix yourself (that is not with a call to `DMCreateMatrix()`) then you MUST call `MatSetBlockSize()` and `MatSetLocalToGlobalMapping()`
2451   before using this routineBefore calling `MatSetValuesLocal()`, the user must first set the
2452 
2453   Calls to `MatSetValuesBlockedLocal()` with the `INSERT_VALUES` and `ADD_VALUES`
2454   options cannot be mixed without intervening calls to the assembly
2455   routines.
2456 
2457   These values may be cached, so `MatAssemblyBegin()` and `MatAssemblyEnd()`
2458   MUST be called after all calls to `MatSetValuesBlockedLocal()` have been completed.
2459 
2460   Developer Note:
2461   This is labeled with C so does not automatically generate Fortran stubs and interfaces
2462   because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays.
2463 
2464 .seealso: [](ch_matrices), `Mat`, `MatSetBlockSize()`, `MatSetLocalToGlobalMapping()`, `MatAssemblyBegin()`, `MatAssemblyEnd()`,
2465           `MatSetValuesLocal()`, `MatSetValuesBlocked()`
2466 @*/
2467 PetscErrorCode MatSetValuesBlockedLocal(Mat mat, PetscInt nrow, const PetscInt irow[], PetscInt ncol, const PetscInt icol[], const PetscScalar y[], InsertMode addv)
2468 {
2469   PetscFunctionBeginHot;
2470   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2471   PetscValidType(mat, 1);
2472   MatCheckPreallocated(mat, 1);
2473   if (!nrow || !ncol) PetscFunctionReturn(PETSC_SUCCESS); /* no values to insert */
2474   PetscAssertPointer(irow, 3);
2475   PetscAssertPointer(icol, 5);
2476   if (mat->insertmode == NOT_SET_VALUES) mat->insertmode = addv;
2477   else PetscCheck(mat->insertmode == addv, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Cannot mix add values and insert values");
2478   if (PetscDefined(USE_DEBUG)) {
2479     PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2480     PetscCheck(mat->ops->setvaluesblockedlocal || mat->ops->setvaluesblocked || mat->ops->setvalueslocal || mat->ops->setvalues, PETSC_COMM_SELF, PETSC_ERR_SUP, "Mat type %s", ((PetscObject)mat)->type_name);
2481   }
2482 
2483   if (mat->assembled) {
2484     mat->was_assembled = PETSC_TRUE;
2485     mat->assembled     = PETSC_FALSE;
2486   }
2487   if (PetscUnlikelyDebug(mat->rmap->mapping)) { /* Condition on the mapping existing, because MatSetValuesBlockedLocal_IS does not require it to be set. */
2488     PetscInt irbs, rbs;
2489     PetscCall(MatGetBlockSizes(mat, &rbs, NULL));
2490     PetscCall(ISLocalToGlobalMappingGetBlockSize(mat->rmap->mapping, &irbs));
2491     PetscCheck(rbs == irbs, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Different row block sizes! mat %" PetscInt_FMT ", row l2g map %" PetscInt_FMT, rbs, irbs);
2492   }
2493   if (PetscUnlikelyDebug(mat->cmap->mapping)) {
2494     PetscInt icbs, cbs;
2495     PetscCall(MatGetBlockSizes(mat, NULL, &cbs));
2496     PetscCall(ISLocalToGlobalMappingGetBlockSize(mat->cmap->mapping, &icbs));
2497     PetscCheck(cbs == icbs, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Different col block sizes! mat %" PetscInt_FMT ", col l2g map %" PetscInt_FMT, cbs, icbs);
2498   }
2499   PetscCall(PetscLogEventBegin(MAT_SetValues, mat, 0, 0, 0));
2500   if (mat->ops->setvaluesblockedlocal) PetscUseTypeMethod(mat, setvaluesblockedlocal, nrow, irow, ncol, icol, y, addv);
2501   else {
2502     PetscInt        buf[8192], *bufr = NULL, *bufc = NULL;
2503     const PetscInt *irowm, *icolm;
2504 
2505     if ((!mat->rmap->mapping && !mat->cmap->mapping) || (nrow + ncol) <= ((PetscInt)PETSC_STATIC_ARRAY_LENGTH(buf))) {
2506       bufr  = buf;
2507       bufc  = buf + nrow;
2508       irowm = bufr;
2509       icolm = bufc;
2510     } else {
2511       PetscCall(PetscMalloc2(nrow, &bufr, ncol, &bufc));
2512       irowm = bufr;
2513       icolm = bufc;
2514     }
2515     if (mat->rmap->mapping) PetscCall(ISLocalToGlobalMappingApplyBlock(mat->rmap->mapping, nrow, irow, bufr));
2516     else irowm = irow;
2517     if (mat->cmap->mapping) {
2518       if (mat->cmap->mapping != mat->rmap->mapping || ncol != nrow || icol != irow) {
2519         PetscCall(ISLocalToGlobalMappingApplyBlock(mat->cmap->mapping, ncol, icol, bufc));
2520       } else icolm = irowm;
2521     } else icolm = icol;
2522     PetscCall(MatSetValuesBlocked(mat, nrow, irowm, ncol, icolm, y, addv));
2523     if (bufr != buf) PetscCall(PetscFree2(bufr, bufc));
2524   }
2525   PetscCall(PetscLogEventEnd(MAT_SetValues, mat, 0, 0, 0));
2526   PetscFunctionReturn(PETSC_SUCCESS);
2527 }
2528 
2529 /*@
2530   MatMultDiagonalBlock - Computes the matrix-vector product, $y = Dx$. Where `D` is defined by the inode or block structure of the diagonal
2531 
2532   Collective
2533 
2534   Input Parameters:
2535 + mat - the matrix
2536 - x   - the vector to be multiplied
2537 
2538   Output Parameter:
2539 . y - the result
2540 
2541   Level: developer
2542 
2543   Note:
2544   The vectors `x` and `y` cannot be the same.  I.e., one cannot
2545   call `MatMultDiagonalBlock`(A,y,y).
2546 
2547 .seealso: [](ch_matrices), `Mat`, `MatMult()`, `MatMultTranspose()`, `MatMultAdd()`, `MatMultTransposeAdd()`
2548 @*/
2549 PetscErrorCode MatMultDiagonalBlock(Mat mat, Vec x, Vec y)
2550 {
2551   PetscFunctionBegin;
2552   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2553   PetscValidType(mat, 1);
2554   PetscValidHeaderSpecific(x, VEC_CLASSID, 2);
2555   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
2556 
2557   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2558   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2559   PetscCheck(x != y, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "x and y must be different vectors");
2560   MatCheckPreallocated(mat, 1);
2561 
2562   PetscUseTypeMethod(mat, multdiagonalblock, x, y);
2563   PetscCall(PetscObjectStateIncrease((PetscObject)y));
2564   PetscFunctionReturn(PETSC_SUCCESS);
2565 }
2566 
2567 /*@
2568   MatMult - Computes the matrix-vector product, $y = Ax$.
2569 
2570   Neighbor-wise Collective
2571 
2572   Input Parameters:
2573 + mat - the matrix
2574 - x   - the vector to be multiplied
2575 
2576   Output Parameter:
2577 . y - the result
2578 
2579   Level: beginner
2580 
2581   Note:
2582   The vectors `x` and `y` cannot be the same.  I.e., one cannot
2583   call `MatMult`(A,y,y).
2584 
2585 .seealso: [](ch_matrices), `Mat`, `MatMultTranspose()`, `MatMultAdd()`, `MatMultTransposeAdd()`
2586 @*/
2587 PetscErrorCode MatMult(Mat mat, Vec x, Vec y)
2588 {
2589   PetscFunctionBegin;
2590   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2591   PetscValidType(mat, 1);
2592   PetscValidHeaderSpecific(x, VEC_CLASSID, 2);
2593   VecCheckAssembled(x);
2594   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
2595   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2596   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2597   PetscCheck(x != y, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "x and y must be different vectors");
2598   PetscCheck(mat->cmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, x->map->N);
2599   PetscCheck(mat->rmap->N == y->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, y->map->N);
2600   PetscCheck(mat->cmap->n == x->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->n, x->map->n);
2601   PetscCheck(mat->rmap->n == y->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, y->map->n);
2602   PetscCall(VecSetErrorIfLocked(y, 3));
2603   if (mat->erroriffailure) PetscCall(VecValidValues_Internal(x, 2, PETSC_TRUE));
2604   MatCheckPreallocated(mat, 1);
2605 
2606   PetscCall(VecLockReadPush(x));
2607   PetscCall(PetscLogEventBegin(MAT_Mult, mat, x, y, 0));
2608   PetscUseTypeMethod(mat, mult, x, y);
2609   PetscCall(PetscLogEventEnd(MAT_Mult, mat, x, y, 0));
2610   if (mat->erroriffailure) PetscCall(VecValidValues_Internal(y, 3, PETSC_FALSE));
2611   PetscCall(VecLockReadPop(x));
2612   PetscFunctionReturn(PETSC_SUCCESS);
2613 }
2614 
2615 /*@
2616   MatMultTranspose - Computes matrix transpose times a vector $y = A^T * x$.
2617 
2618   Neighbor-wise Collective
2619 
2620   Input Parameters:
2621 + mat - the matrix
2622 - x   - the vector to be multiplied
2623 
2624   Output Parameter:
2625 . y - the result
2626 
2627   Level: beginner
2628 
2629   Notes:
2630   The vectors `x` and `y` cannot be the same.  I.e., one cannot
2631   call `MatMultTranspose`(A,y,y).
2632 
2633   For complex numbers this does NOT compute the Hermitian (complex conjugate) transpose multiple,
2634   use `MatMultHermitianTranspose()`
2635 
2636 .seealso: [](ch_matrices), `Mat`, `MatMult()`, `MatMultAdd()`, `MatMultTransposeAdd()`, `MatMultHermitianTranspose()`, `MatTranspose()`
2637 @*/
2638 PetscErrorCode MatMultTranspose(Mat mat, Vec x, Vec y)
2639 {
2640   PetscErrorCode (*op)(Mat, Vec, Vec) = NULL;
2641 
2642   PetscFunctionBegin;
2643   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2644   PetscValidType(mat, 1);
2645   PetscValidHeaderSpecific(x, VEC_CLASSID, 2);
2646   VecCheckAssembled(x);
2647   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
2648 
2649   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2650   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2651   PetscCheck(x != y, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "x and y must be different vectors");
2652   PetscCheck(mat->cmap->N == y->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, y->map->N);
2653   PetscCheck(mat->rmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, x->map->N);
2654   PetscCheck(mat->cmap->n == y->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->n, y->map->n);
2655   PetscCheck(mat->rmap->n == x->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, x->map->n);
2656   if (mat->erroriffailure) PetscCall(VecValidValues_Internal(x, 2, PETSC_TRUE));
2657   MatCheckPreallocated(mat, 1);
2658 
2659   if (!mat->ops->multtranspose) {
2660     if (mat->symmetric == PETSC_BOOL3_TRUE && mat->ops->mult) op = mat->ops->mult;
2661     PetscCheck(op, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Matrix type %s does not have a multiply transpose defined or is symmetric and does not have a multiply defined", ((PetscObject)mat)->type_name);
2662   } else op = mat->ops->multtranspose;
2663   PetscCall(PetscLogEventBegin(MAT_MultTranspose, mat, x, y, 0));
2664   PetscCall(VecLockReadPush(x));
2665   PetscCall((*op)(mat, x, y));
2666   PetscCall(VecLockReadPop(x));
2667   PetscCall(PetscLogEventEnd(MAT_MultTranspose, mat, x, y, 0));
2668   PetscCall(PetscObjectStateIncrease((PetscObject)y));
2669   if (mat->erroriffailure) PetscCall(VecValidValues_Internal(y, 3, PETSC_FALSE));
2670   PetscFunctionReturn(PETSC_SUCCESS);
2671 }
2672 
2673 /*@
2674   MatMultHermitianTranspose - Computes matrix Hermitian-transpose times a vector $y = A^H * x$.
2675 
2676   Neighbor-wise Collective
2677 
2678   Input Parameters:
2679 + mat - the matrix
2680 - x   - the vector to be multiplied
2681 
2682   Output Parameter:
2683 . y - the result
2684 
2685   Level: beginner
2686 
2687   Notes:
2688   The vectors `x` and `y` cannot be the same.  I.e., one cannot
2689   call `MatMultHermitianTranspose`(A,y,y).
2690 
2691   Also called the conjugate transpose, complex conjugate transpose, or adjoint.
2692 
2693   For real numbers `MatMultTranspose()` and `MatMultHermitianTranspose()` are identical.
2694 
2695 .seealso: [](ch_matrices), `Mat`, `MatMult()`, `MatMultAdd()`, `MatMultHermitianTransposeAdd()`, `MatMultTranspose()`
2696 @*/
2697 PetscErrorCode MatMultHermitianTranspose(Mat mat, Vec x, Vec y)
2698 {
2699   PetscFunctionBegin;
2700   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2701   PetscValidType(mat, 1);
2702   PetscValidHeaderSpecific(x, VEC_CLASSID, 2);
2703   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
2704 
2705   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2706   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2707   PetscCheck(x != y, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "x and y must be different vectors");
2708   PetscCheck(mat->cmap->N == y->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, y->map->N);
2709   PetscCheck(mat->rmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, x->map->N);
2710   PetscCheck(mat->cmap->n == y->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->n, y->map->n);
2711   PetscCheck(mat->rmap->n == x->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, x->map->n);
2712   MatCheckPreallocated(mat, 1);
2713 
2714   PetscCall(PetscLogEventBegin(MAT_MultHermitianTranspose, mat, x, y, 0));
2715 #if defined(PETSC_USE_COMPLEX)
2716   if (mat->ops->multhermitiantranspose || (mat->hermitian == PETSC_BOOL3_TRUE && mat->ops->mult)) {
2717     PetscCall(VecLockReadPush(x));
2718     if (mat->ops->multhermitiantranspose) PetscUseTypeMethod(mat, multhermitiantranspose, x, y);
2719     else PetscUseTypeMethod(mat, mult, x, y);
2720     PetscCall(VecLockReadPop(x));
2721   } else {
2722     Vec w;
2723     PetscCall(VecDuplicate(x, &w));
2724     PetscCall(VecCopy(x, w));
2725     PetscCall(VecConjugate(w));
2726     PetscCall(MatMultTranspose(mat, w, y));
2727     PetscCall(VecDestroy(&w));
2728     PetscCall(VecConjugate(y));
2729   }
2730   PetscCall(PetscObjectStateIncrease((PetscObject)y));
2731 #else
2732   PetscCall(MatMultTranspose(mat, x, y));
2733 #endif
2734   PetscCall(PetscLogEventEnd(MAT_MultHermitianTranspose, mat, x, y, 0));
2735   PetscFunctionReturn(PETSC_SUCCESS);
2736 }
2737 
2738 /*@
2739   MatMultAdd -  Computes $v3 = v2 + A * v1$.
2740 
2741   Neighbor-wise Collective
2742 
2743   Input Parameters:
2744 + mat - the matrix
2745 . v1  - the vector to be multiplied by `mat`
2746 - v2  - the vector to be added to the result
2747 
2748   Output Parameter:
2749 . v3 - the result
2750 
2751   Level: beginner
2752 
2753   Note:
2754   The vectors `v1` and `v3` cannot be the same.  I.e., one cannot
2755   call `MatMultAdd`(A,v1,v2,v1).
2756 
2757 .seealso: [](ch_matrices), `Mat`, `MatMultTranspose()`, `MatMult()`, `MatMultTransposeAdd()`
2758 @*/
2759 PetscErrorCode MatMultAdd(Mat mat, Vec v1, Vec v2, Vec v3)
2760 {
2761   PetscFunctionBegin;
2762   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2763   PetscValidType(mat, 1);
2764   PetscValidHeaderSpecific(v1, VEC_CLASSID, 2);
2765   PetscValidHeaderSpecific(v2, VEC_CLASSID, 3);
2766   PetscValidHeaderSpecific(v3, VEC_CLASSID, 4);
2767 
2768   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2769   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2770   PetscCheck(mat->cmap->N == v1->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec v1: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, v1->map->N);
2771   /* PetscCheck(mat->rmap->N == v2->map->N,PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec v2: global dim %" PetscInt_FMT " %" PetscInt_FMT,mat->rmap->N,v2->map->N);
2772      PetscCheck(mat->rmap->N == v3->map->N,PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec v3: global dim %" PetscInt_FMT " %" PetscInt_FMT,mat->rmap->N,v3->map->N); */
2773   PetscCheck(mat->rmap->n == v3->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec v3: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, v3->map->n);
2774   PetscCheck(mat->rmap->n == v2->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec v2: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, v2->map->n);
2775   PetscCheck(v1 != v3, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "v1 and v3 must be different vectors");
2776   MatCheckPreallocated(mat, 1);
2777 
2778   PetscCall(PetscLogEventBegin(MAT_MultAdd, mat, v1, v2, v3));
2779   PetscCall(VecLockReadPush(v1));
2780   PetscUseTypeMethod(mat, multadd, v1, v2, v3);
2781   PetscCall(VecLockReadPop(v1));
2782   PetscCall(PetscLogEventEnd(MAT_MultAdd, mat, v1, v2, v3));
2783   PetscCall(PetscObjectStateIncrease((PetscObject)v3));
2784   PetscFunctionReturn(PETSC_SUCCESS);
2785 }
2786 
2787 /*@
2788   MatMultTransposeAdd - Computes $v3 = v2 + A^T * v1$.
2789 
2790   Neighbor-wise Collective
2791 
2792   Input Parameters:
2793 + mat - the matrix
2794 . v1  - the vector to be multiplied by the transpose of the matrix
2795 - v2  - the vector to be added to the result
2796 
2797   Output Parameter:
2798 . v3 - the result
2799 
2800   Level: beginner
2801 
2802   Note:
2803   The vectors `v1` and `v3` cannot be the same.  I.e., one cannot
2804   call `MatMultTransposeAdd`(A,v1,v2,v1).
2805 
2806 .seealso: [](ch_matrices), `Mat`, `MatMultTranspose()`, `MatMultAdd()`, `MatMult()`
2807 @*/
2808 PetscErrorCode MatMultTransposeAdd(Mat mat, Vec v1, Vec v2, Vec v3)
2809 {
2810   PetscErrorCode (*op)(Mat, Vec, Vec, Vec) = (!mat->ops->multtransposeadd && mat->symmetric) ? mat->ops->multadd : mat->ops->multtransposeadd;
2811 
2812   PetscFunctionBegin;
2813   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2814   PetscValidType(mat, 1);
2815   PetscValidHeaderSpecific(v1, VEC_CLASSID, 2);
2816   PetscValidHeaderSpecific(v2, VEC_CLASSID, 3);
2817   PetscValidHeaderSpecific(v3, VEC_CLASSID, 4);
2818 
2819   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2820   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2821   PetscCheck(mat->rmap->N == v1->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec v1: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, v1->map->N);
2822   PetscCheck(mat->cmap->N == v2->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec v2: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, v2->map->N);
2823   PetscCheck(mat->cmap->N == v3->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec v3: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, v3->map->N);
2824   PetscCheck(v1 != v3, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "v1 and v3 must be different vectors");
2825   PetscCheck(op, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Mat type %s", ((PetscObject)mat)->type_name);
2826   MatCheckPreallocated(mat, 1);
2827 
2828   PetscCall(PetscLogEventBegin(MAT_MultTransposeAdd, mat, v1, v2, v3));
2829   PetscCall(VecLockReadPush(v1));
2830   PetscCall((*op)(mat, v1, v2, v3));
2831   PetscCall(VecLockReadPop(v1));
2832   PetscCall(PetscLogEventEnd(MAT_MultTransposeAdd, mat, v1, v2, v3));
2833   PetscCall(PetscObjectStateIncrease((PetscObject)v3));
2834   PetscFunctionReturn(PETSC_SUCCESS);
2835 }
2836 
2837 /*@
2838   MatMultHermitianTransposeAdd - Computes $v3 = v2 + A^H * v1$.
2839 
2840   Neighbor-wise Collective
2841 
2842   Input Parameters:
2843 + mat - the matrix
2844 . v1  - the vector to be multiplied by the Hermitian transpose
2845 - v2  - the vector to be added to the result
2846 
2847   Output Parameter:
2848 . v3 - the result
2849 
2850   Level: beginner
2851 
2852   Note:
2853   The vectors `v1` and `v3` cannot be the same.  I.e., one cannot
2854   call `MatMultHermitianTransposeAdd`(A,v1,v2,v1).
2855 
2856 .seealso: [](ch_matrices), `Mat`, `MatMultHermitianTranspose()`, `MatMultTranspose()`, `MatMultAdd()`, `MatMult()`
2857 @*/
2858 PetscErrorCode MatMultHermitianTransposeAdd(Mat mat, Vec v1, Vec v2, Vec v3)
2859 {
2860   PetscFunctionBegin;
2861   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2862   PetscValidType(mat, 1);
2863   PetscValidHeaderSpecific(v1, VEC_CLASSID, 2);
2864   PetscValidHeaderSpecific(v2, VEC_CLASSID, 3);
2865   PetscValidHeaderSpecific(v3, VEC_CLASSID, 4);
2866 
2867   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
2868   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
2869   PetscCheck(v1 != v3, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "v1 and v3 must be different vectors");
2870   PetscCheck(mat->rmap->N == v1->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec v1: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, v1->map->N);
2871   PetscCheck(mat->cmap->N == v2->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec v2: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, v2->map->N);
2872   PetscCheck(mat->cmap->N == v3->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec v3: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, v3->map->N);
2873   MatCheckPreallocated(mat, 1);
2874 
2875   PetscCall(PetscLogEventBegin(MAT_MultHermitianTransposeAdd, mat, v1, v2, v3));
2876   PetscCall(VecLockReadPush(v1));
2877   if (mat->ops->multhermitiantransposeadd) PetscUseTypeMethod(mat, multhermitiantransposeadd, v1, v2, v3);
2878   else {
2879     Vec w, z;
2880     PetscCall(VecDuplicate(v1, &w));
2881     PetscCall(VecCopy(v1, w));
2882     PetscCall(VecConjugate(w));
2883     PetscCall(VecDuplicate(v3, &z));
2884     PetscCall(MatMultTranspose(mat, w, z));
2885     PetscCall(VecDestroy(&w));
2886     PetscCall(VecConjugate(z));
2887     if (v2 != v3) {
2888       PetscCall(VecWAXPY(v3, 1.0, v2, z));
2889     } else {
2890       PetscCall(VecAXPY(v3, 1.0, z));
2891     }
2892     PetscCall(VecDestroy(&z));
2893   }
2894   PetscCall(VecLockReadPop(v1));
2895   PetscCall(PetscLogEventEnd(MAT_MultHermitianTransposeAdd, mat, v1, v2, v3));
2896   PetscCall(PetscObjectStateIncrease((PetscObject)v3));
2897   PetscFunctionReturn(PETSC_SUCCESS);
2898 }
2899 
2900 /*@C
2901   MatGetFactorType - gets the type of factorization a matrix is
2902 
2903   Not Collective
2904 
2905   Input Parameter:
2906 . mat - the matrix
2907 
2908   Output Parameter:
2909 . t - the type, one of `MAT_FACTOR_NONE`, `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ILU`, `MAT_FACTOR_ICC,MAT_FACTOR_ILUDT`, `MAT_FACTOR_QR`
2910 
2911   Level: intermediate
2912 
2913 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorType`, `MatGetFactor()`, `MatSetFactorType()`, `MAT_FACTOR_NONE`, `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ILU`,
2914           `MAT_FACTOR_ICC`,`MAT_FACTOR_ILUDT`, `MAT_FACTOR_QR`
2915 @*/
2916 PetscErrorCode MatGetFactorType(Mat mat, MatFactorType *t)
2917 {
2918   PetscFunctionBegin;
2919   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2920   PetscValidType(mat, 1);
2921   PetscAssertPointer(t, 2);
2922   *t = mat->factortype;
2923   PetscFunctionReturn(PETSC_SUCCESS);
2924 }
2925 
2926 /*@C
2927   MatSetFactorType - sets the type of factorization a matrix is
2928 
2929   Logically Collective
2930 
2931   Input Parameters:
2932 + mat - the matrix
2933 - t   - the type, one of `MAT_FACTOR_NONE`, `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ILU`, `MAT_FACTOR_ICC,MAT_FACTOR_ILUDT`, `MAT_FACTOR_QR`
2934 
2935   Level: intermediate
2936 
2937 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorType`, `MatGetFactor()`, `MatGetFactorType()`, `MAT_FACTOR_NONE`, `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ILU`,
2938           `MAT_FACTOR_ICC`,`MAT_FACTOR_ILUDT`, `MAT_FACTOR_QR`
2939 @*/
2940 PetscErrorCode MatSetFactorType(Mat mat, MatFactorType t)
2941 {
2942   PetscFunctionBegin;
2943   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
2944   PetscValidType(mat, 1);
2945   mat->factortype = t;
2946   PetscFunctionReturn(PETSC_SUCCESS);
2947 }
2948 
2949 /*@C
2950   MatGetInfo - Returns information about matrix storage (number of
2951   nonzeros, memory, etc.).
2952 
2953   Collective if `MAT_GLOBAL_MAX` or `MAT_GLOBAL_SUM` is used as the flag
2954 
2955   Input Parameters:
2956 + mat  - the matrix
2957 - flag - flag indicating the type of parameters to be returned (`MAT_LOCAL` - local matrix, `MAT_GLOBAL_MAX` - maximum over all processors, `MAT_GLOBAL_SUM` - sum over all processors)
2958 
2959   Output Parameter:
2960 . info - matrix information context
2961 
2962   Options Database Key:
2963 . -mat_view ::ascii_info - print matrix info to `PETSC_STDOUT`
2964 
2965   Notes:
2966   The `MatInfo` context contains a variety of matrix data, including
2967   number of nonzeros allocated and used, number of mallocs during
2968   matrix assembly, etc.  Additional information for factored matrices
2969   is provided (such as the fill ratio, number of mallocs during
2970   factorization, etc.).
2971 
2972   Example:
2973   See the file ${PETSC_DIR}/include/petscmat.h for a complete list of
2974   data within the MatInfo context.  For example,
2975 .vb
2976       MatInfo info;
2977       Mat     A;
2978       double  mal, nz_a, nz_u;
2979 
2980       MatGetInfo(A, MAT_LOCAL, &info);
2981       mal  = info.mallocs;
2982       nz_a = info.nz_allocated;
2983 .ve
2984 
2985   Fortran users should declare info as a double precision
2986   array of dimension `MAT_INFO_SIZE`, and then extract the parameters
2987   of interest.  See the file ${PETSC_DIR}/include/petsc/finclude/petscmat.h
2988   a complete list of parameter names.
2989 .vb
2990       double  precision info(MAT_INFO_SIZE)
2991       double  precision mal, nz_a
2992       Mat     A
2993       integer ierr
2994 
2995       call MatGetInfo(A, MAT_LOCAL, info, ierr)
2996       mal = info(MAT_INFO_MALLOCS)
2997       nz_a = info(MAT_INFO_NZ_ALLOCATED)
2998 .ve
2999 
3000   Level: intermediate
3001 
3002   Developer Note:
3003   The Fortran interface is not autogenerated as the
3004   interface definition cannot be generated correctly [due to `MatInfo` argument]
3005 
3006 .seealso: [](ch_matrices), `Mat`, `MatInfo`, `MatStashGetInfo()`
3007 @*/
3008 PetscErrorCode MatGetInfo(Mat mat, MatInfoType flag, MatInfo *info)
3009 {
3010   PetscFunctionBegin;
3011   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3012   PetscValidType(mat, 1);
3013   PetscAssertPointer(info, 3);
3014   MatCheckPreallocated(mat, 1);
3015   PetscUseTypeMethod(mat, getinfo, flag, info);
3016   PetscFunctionReturn(PETSC_SUCCESS);
3017 }
3018 
3019 /*
3020    This is used by external packages where it is not easy to get the info from the actual
3021    matrix factorization.
3022 */
3023 PetscErrorCode MatGetInfo_External(Mat A, MatInfoType flag, MatInfo *info)
3024 {
3025   PetscFunctionBegin;
3026   PetscCall(PetscMemzero(info, sizeof(MatInfo)));
3027   PetscFunctionReturn(PETSC_SUCCESS);
3028 }
3029 
3030 /*@C
3031   MatLUFactor - Performs in-place LU factorization of matrix.
3032 
3033   Collective
3034 
3035   Input Parameters:
3036 + mat  - the matrix
3037 . row  - row permutation
3038 . col  - column permutation
3039 - info - options for factorization, includes
3040 .vb
3041           fill - expected fill as ratio of original fill.
3042           dtcol - pivot tolerance (0 no pivot, 1 full column pivoting)
3043                    Run with the option -info to determine an optimal value to use
3044 .ve
3045 
3046   Level: developer
3047 
3048   Notes:
3049   Most users should employ the `KSP` interface for linear solvers
3050   instead of working directly with matrix algebra routines such as this.
3051   See, e.g., `KSPCreate()`.
3052 
3053   This changes the state of the matrix to a factored matrix; it cannot be used
3054   for example with `MatSetValues()` unless one first calls `MatSetUnfactored()`.
3055 
3056   This is really in-place only for dense matrices, the preferred approach is to use `MatGetFactor()`, `MatLUFactorSymbolic()`, and `MatLUFactorNumeric()`
3057   when not using `KSP`.
3058 
3059   Developer Note:
3060   The Fortran interface is not autogenerated as the
3061   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3062 
3063 .seealso: [](ch_matrices), [Matrix Factorization](sec_matfactor), `Mat`, `MatFactorType`, `MatLUFactorSymbolic()`, `MatLUFactorNumeric()`, `MatCholeskyFactor()`,
3064           `MatGetOrdering()`, `MatSetUnfactored()`, `MatFactorInfo`, `MatGetFactor()`
3065 @*/
3066 PetscErrorCode MatLUFactor(Mat mat, IS row, IS col, const MatFactorInfo *info)
3067 {
3068   MatFactorInfo tinfo;
3069 
3070   PetscFunctionBegin;
3071   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3072   if (row) PetscValidHeaderSpecific(row, IS_CLASSID, 2);
3073   if (col) PetscValidHeaderSpecific(col, IS_CLASSID, 3);
3074   if (info) PetscAssertPointer(info, 4);
3075   PetscValidType(mat, 1);
3076   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3077   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
3078   MatCheckPreallocated(mat, 1);
3079   if (!info) {
3080     PetscCall(MatFactorInfoInitialize(&tinfo));
3081     info = &tinfo;
3082   }
3083 
3084   PetscCall(PetscLogEventBegin(MAT_LUFactor, mat, row, col, 0));
3085   PetscUseTypeMethod(mat, lufactor, row, col, info);
3086   PetscCall(PetscLogEventEnd(MAT_LUFactor, mat, row, col, 0));
3087   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
3088   PetscFunctionReturn(PETSC_SUCCESS);
3089 }
3090 
3091 /*@C
3092   MatILUFactor - Performs in-place ILU factorization of matrix.
3093 
3094   Collective
3095 
3096   Input Parameters:
3097 + mat  - the matrix
3098 . row  - row permutation
3099 . col  - column permutation
3100 - info - structure containing
3101 .vb
3102       levels - number of levels of fill.
3103       expected fill - as ratio of original fill.
3104       1 or 0 - indicating force fill on diagonal (improves robustness for matrices
3105                 missing diagonal entries)
3106 .ve
3107 
3108   Level: developer
3109 
3110   Notes:
3111   Most users should employ the `KSP` interface for linear solvers
3112   instead of working directly with matrix algebra routines such as this.
3113   See, e.g., `KSPCreate()`.
3114 
3115   Probably really in-place only when level of fill is zero, otherwise allocates
3116   new space to store factored matrix and deletes previous memory. The preferred approach is to use `MatGetFactor()`, `MatILUFactorSymbolic()`, and `MatILUFactorNumeric()`
3117   when not using `KSP`.
3118 
3119   Developer Note:
3120   The Fortran interface is not autogenerated as the
3121   interface definition cannot be generated correctly [due to MatFactorInfo]
3122 
3123 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatILUFactorSymbolic()`, `MatLUFactorNumeric()`, `MatCholeskyFactor()`, `MatFactorInfo`
3124 @*/
3125 PetscErrorCode MatILUFactor(Mat mat, IS row, IS col, const MatFactorInfo *info)
3126 {
3127   PetscFunctionBegin;
3128   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3129   if (row) PetscValidHeaderSpecific(row, IS_CLASSID, 2);
3130   if (col) PetscValidHeaderSpecific(col, IS_CLASSID, 3);
3131   PetscAssertPointer(info, 4);
3132   PetscValidType(mat, 1);
3133   PetscCheck(mat->rmap->N == mat->cmap->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONG, "matrix must be square");
3134   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3135   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
3136   MatCheckPreallocated(mat, 1);
3137 
3138   PetscCall(PetscLogEventBegin(MAT_ILUFactor, mat, row, col, 0));
3139   PetscUseTypeMethod(mat, ilufactor, row, col, info);
3140   PetscCall(PetscLogEventEnd(MAT_ILUFactor, mat, row, col, 0));
3141   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
3142   PetscFunctionReturn(PETSC_SUCCESS);
3143 }
3144 
3145 /*@C
3146   MatLUFactorSymbolic - Performs symbolic LU factorization of matrix.
3147   Call this routine before calling `MatLUFactorNumeric()` and after `MatGetFactor()`.
3148 
3149   Collective
3150 
3151   Input Parameters:
3152 + fact - the factor matrix obtained with `MatGetFactor()`
3153 . mat  - the matrix
3154 . row  - the row permutation
3155 . col  - the column permutation
3156 - info - options for factorization, includes
3157 .vb
3158           fill - expected fill as ratio of original fill. Run with the option -info to determine an optimal value to use
3159           dtcol - pivot tolerance (0 no pivot, 1 full column pivoting)
3160 .ve
3161 
3162   Level: developer
3163 
3164   Notes:
3165   See [Matrix Factorization](sec_matfactor) for additional information about factorizations
3166 
3167   Most users should employ the simplified `KSP` interface for linear solvers
3168   instead of working directly with matrix algebra routines such as this.
3169   See, e.g., `KSPCreate()`.
3170 
3171   Developer Note:
3172   The Fortran interface is not autogenerated as the
3173   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3174 
3175 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatLUFactor()`, `MatLUFactorNumeric()`, `MatCholeskyFactor()`, `MatFactorInfo`, `MatFactorInfoInitialize()`
3176 @*/
3177 PetscErrorCode MatLUFactorSymbolic(Mat fact, Mat mat, IS row, IS col, const MatFactorInfo *info)
3178 {
3179   MatFactorInfo tinfo;
3180 
3181   PetscFunctionBegin;
3182   PetscValidHeaderSpecific(fact, MAT_CLASSID, 1);
3183   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
3184   if (row) PetscValidHeaderSpecific(row, IS_CLASSID, 3);
3185   if (col) PetscValidHeaderSpecific(col, IS_CLASSID, 4);
3186   if (info) PetscAssertPointer(info, 5);
3187   PetscValidType(fact, 1);
3188   PetscValidType(mat, 2);
3189   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3190   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
3191   MatCheckPreallocated(mat, 2);
3192   if (!info) {
3193     PetscCall(MatFactorInfoInitialize(&tinfo));
3194     info = &tinfo;
3195   }
3196 
3197   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_LUFactorSymbolic, mat, row, col, 0));
3198   PetscUseTypeMethod(fact, lufactorsymbolic, mat, row, col, info);
3199   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_LUFactorSymbolic, mat, row, col, 0));
3200   PetscCall(PetscObjectStateIncrease((PetscObject)fact));
3201   PetscFunctionReturn(PETSC_SUCCESS);
3202 }
3203 
3204 /*@C
3205   MatLUFactorNumeric - Performs numeric LU factorization of a matrix.
3206   Call this routine after first calling `MatLUFactorSymbolic()` and `MatGetFactor()`.
3207 
3208   Collective
3209 
3210   Input Parameters:
3211 + fact - the factor matrix obtained with `MatGetFactor()`
3212 . mat  - the matrix
3213 - info - options for factorization
3214 
3215   Level: developer
3216 
3217   Notes:
3218   See `MatLUFactor()` for in-place factorization.  See
3219   `MatCholeskyFactorNumeric()` for the symmetric, positive definite case.
3220 
3221   Most users should employ the `KSP` interface for linear solvers
3222   instead of working directly with matrix algebra routines such as this.
3223   See, e.g., `KSPCreate()`.
3224 
3225   Developer Note:
3226   The Fortran interface is not autogenerated as the
3227   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3228 
3229 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatFactorInfo`, `MatLUFactorSymbolic()`, `MatLUFactor()`, `MatCholeskyFactor()`
3230 @*/
3231 PetscErrorCode MatLUFactorNumeric(Mat fact, Mat mat, const MatFactorInfo *info)
3232 {
3233   MatFactorInfo tinfo;
3234 
3235   PetscFunctionBegin;
3236   PetscValidHeaderSpecific(fact, MAT_CLASSID, 1);
3237   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
3238   PetscValidType(fact, 1);
3239   PetscValidType(mat, 2);
3240   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3241   PetscCheck(mat->rmap->N == (fact)->rmap->N && mat->cmap->N == (fact)->cmap->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Mat fact: global dimensions are different %" PetscInt_FMT " should = %" PetscInt_FMT " %" PetscInt_FMT " should = %" PetscInt_FMT,
3242              mat->rmap->N, (fact)->rmap->N, mat->cmap->N, (fact)->cmap->N);
3243 
3244   MatCheckPreallocated(mat, 2);
3245   if (!info) {
3246     PetscCall(MatFactorInfoInitialize(&tinfo));
3247     info = &tinfo;
3248   }
3249 
3250   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_LUFactorNumeric, mat, fact, 0, 0));
3251   else PetscCall(PetscLogEventBegin(MAT_LUFactor, mat, fact, 0, 0));
3252   PetscUseTypeMethod(fact, lufactornumeric, mat, info);
3253   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_LUFactorNumeric, mat, fact, 0, 0));
3254   else PetscCall(PetscLogEventEnd(MAT_LUFactor, mat, fact, 0, 0));
3255   PetscCall(MatViewFromOptions(fact, NULL, "-mat_factor_view"));
3256   PetscCall(PetscObjectStateIncrease((PetscObject)fact));
3257   PetscFunctionReturn(PETSC_SUCCESS);
3258 }
3259 
3260 /*@C
3261   MatCholeskyFactor - Performs in-place Cholesky factorization of a
3262   symmetric matrix.
3263 
3264   Collective
3265 
3266   Input Parameters:
3267 + mat  - the matrix
3268 . perm - row and column permutations
3269 - info - expected fill as ratio of original fill
3270 
3271   Level: developer
3272 
3273   Notes:
3274   See `MatLUFactor()` for the nonsymmetric case.  See also `MatGetFactor()`,
3275   `MatCholeskyFactorSymbolic()`, and `MatCholeskyFactorNumeric()`.
3276 
3277   Most users should employ the `KSP` interface for linear solvers
3278   instead of working directly with matrix algebra routines such as this.
3279   See, e.g., `KSPCreate()`.
3280 
3281   Developer Note:
3282   The Fortran interface is not autogenerated as the
3283   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3284 
3285 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatFactorInfo`, `MatLUFactor()`, `MatCholeskyFactorSymbolic()`, `MatCholeskyFactorNumeric()`
3286           `MatGetOrdering()`
3287 @*/
3288 PetscErrorCode MatCholeskyFactor(Mat mat, IS perm, const MatFactorInfo *info)
3289 {
3290   MatFactorInfo tinfo;
3291 
3292   PetscFunctionBegin;
3293   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3294   if (perm) PetscValidHeaderSpecific(perm, IS_CLASSID, 2);
3295   if (info) PetscAssertPointer(info, 3);
3296   PetscValidType(mat, 1);
3297   PetscCheck(mat->rmap->N == mat->cmap->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONG, "Matrix must be square");
3298   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3299   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
3300   MatCheckPreallocated(mat, 1);
3301   if (!info) {
3302     PetscCall(MatFactorInfoInitialize(&tinfo));
3303     info = &tinfo;
3304   }
3305 
3306   PetscCall(PetscLogEventBegin(MAT_CholeskyFactor, mat, perm, 0, 0));
3307   PetscUseTypeMethod(mat, choleskyfactor, perm, info);
3308   PetscCall(PetscLogEventEnd(MAT_CholeskyFactor, mat, perm, 0, 0));
3309   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
3310   PetscFunctionReturn(PETSC_SUCCESS);
3311 }
3312 
3313 /*@C
3314   MatCholeskyFactorSymbolic - Performs symbolic Cholesky factorization
3315   of a symmetric matrix.
3316 
3317   Collective
3318 
3319   Input Parameters:
3320 + fact - the factor matrix obtained with `MatGetFactor()`
3321 . mat  - the matrix
3322 . perm - row and column permutations
3323 - info - options for factorization, includes
3324 .vb
3325           fill - expected fill as ratio of original fill.
3326           dtcol - pivot tolerance (0 no pivot, 1 full column pivoting)
3327                    Run with the option -info to determine an optimal value to use
3328 .ve
3329 
3330   Level: developer
3331 
3332   Notes:
3333   See `MatLUFactorSymbolic()` for the nonsymmetric case.  See also
3334   `MatCholeskyFactor()` and `MatCholeskyFactorNumeric()`.
3335 
3336   Most users should employ the `KSP` interface for linear solvers
3337   instead of working directly with matrix algebra routines such as this.
3338   See, e.g., `KSPCreate()`.
3339 
3340   Developer Note:
3341   The Fortran interface is not autogenerated as the
3342   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3343 
3344 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorInfo`, `MatGetFactor()`, `MatLUFactorSymbolic()`, `MatCholeskyFactor()`, `MatCholeskyFactorNumeric()`
3345           `MatGetOrdering()`
3346 @*/
3347 PetscErrorCode MatCholeskyFactorSymbolic(Mat fact, Mat mat, IS perm, const MatFactorInfo *info)
3348 {
3349   MatFactorInfo tinfo;
3350 
3351   PetscFunctionBegin;
3352   PetscValidHeaderSpecific(fact, MAT_CLASSID, 1);
3353   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
3354   if (perm) PetscValidHeaderSpecific(perm, IS_CLASSID, 3);
3355   if (info) PetscAssertPointer(info, 4);
3356   PetscValidType(fact, 1);
3357   PetscValidType(mat, 2);
3358   PetscCheck(mat->rmap->N == mat->cmap->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONG, "Matrix must be square");
3359   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3360   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
3361   MatCheckPreallocated(mat, 2);
3362   if (!info) {
3363     PetscCall(MatFactorInfoInitialize(&tinfo));
3364     info = &tinfo;
3365   }
3366 
3367   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_CholeskyFactorSymbolic, mat, perm, 0, 0));
3368   PetscUseTypeMethod(fact, choleskyfactorsymbolic, mat, perm, info);
3369   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_CholeskyFactorSymbolic, mat, perm, 0, 0));
3370   PetscCall(PetscObjectStateIncrease((PetscObject)fact));
3371   PetscFunctionReturn(PETSC_SUCCESS);
3372 }
3373 
3374 /*@C
3375   MatCholeskyFactorNumeric - Performs numeric Cholesky factorization
3376   of a symmetric matrix. Call this routine after first calling `MatGetFactor()` and
3377   `MatCholeskyFactorSymbolic()`.
3378 
3379   Collective
3380 
3381   Input Parameters:
3382 + fact - the factor matrix obtained with `MatGetFactor()`, where the factored values are stored
3383 . mat  - the initial matrix that is to be factored
3384 - info - options for factorization
3385 
3386   Level: developer
3387 
3388   Note:
3389   Most users should employ the `KSP` interface for linear solvers
3390   instead of working directly with matrix algebra routines such as this.
3391   See, e.g., `KSPCreate()`.
3392 
3393   Developer Note:
3394   The Fortran interface is not autogenerated as the
3395   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3396 
3397 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorInfo`, `MatGetFactor()`, `MatCholeskyFactorSymbolic()`, `MatCholeskyFactor()`, `MatLUFactorNumeric()`
3398 @*/
3399 PetscErrorCode MatCholeskyFactorNumeric(Mat fact, Mat mat, const MatFactorInfo *info)
3400 {
3401   MatFactorInfo tinfo;
3402 
3403   PetscFunctionBegin;
3404   PetscValidHeaderSpecific(fact, MAT_CLASSID, 1);
3405   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
3406   PetscValidType(fact, 1);
3407   PetscValidType(mat, 2);
3408   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3409   PetscCheck(mat->rmap->N == (fact)->rmap->N && mat->cmap->N == (fact)->cmap->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Mat fact: global dim %" PetscInt_FMT " should = %" PetscInt_FMT " %" PetscInt_FMT " should = %" PetscInt_FMT,
3410              mat->rmap->N, (fact)->rmap->N, mat->cmap->N, (fact)->cmap->N);
3411   MatCheckPreallocated(mat, 2);
3412   if (!info) {
3413     PetscCall(MatFactorInfoInitialize(&tinfo));
3414     info = &tinfo;
3415   }
3416 
3417   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_CholeskyFactorNumeric, mat, fact, 0, 0));
3418   else PetscCall(PetscLogEventBegin(MAT_CholeskyFactor, mat, fact, 0, 0));
3419   PetscUseTypeMethod(fact, choleskyfactornumeric, mat, info);
3420   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_CholeskyFactorNumeric, mat, fact, 0, 0));
3421   else PetscCall(PetscLogEventEnd(MAT_CholeskyFactor, mat, fact, 0, 0));
3422   PetscCall(MatViewFromOptions(fact, NULL, "-mat_factor_view"));
3423   PetscCall(PetscObjectStateIncrease((PetscObject)fact));
3424   PetscFunctionReturn(PETSC_SUCCESS);
3425 }
3426 
3427 /*@
3428   MatQRFactor - Performs in-place QR factorization of matrix.
3429 
3430   Collective
3431 
3432   Input Parameters:
3433 + mat  - the matrix
3434 . col  - column permutation
3435 - info - options for factorization, includes
3436 .vb
3437           fill - expected fill as ratio of original fill.
3438           dtcol - pivot tolerance (0 no pivot, 1 full column pivoting)
3439                    Run with the option -info to determine an optimal value to use
3440 .ve
3441 
3442   Level: developer
3443 
3444   Notes:
3445   Most users should employ the `KSP` interface for linear solvers
3446   instead of working directly with matrix algebra routines such as this.
3447   See, e.g., `KSPCreate()`.
3448 
3449   This changes the state of the matrix to a factored matrix; it cannot be used
3450   for example with `MatSetValues()` unless one first calls `MatSetUnfactored()`.
3451 
3452   Developer Note:
3453   The Fortran interface is not autogenerated as the
3454   interface definition cannot be generated correctly [due to MatFactorInfo]
3455 
3456 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorInfo`, `MatGetFactor()`, `MatQRFactorSymbolic()`, `MatQRFactorNumeric()`, `MatLUFactor()`,
3457           `MatSetUnfactored()`
3458 @*/
3459 PetscErrorCode MatQRFactor(Mat mat, IS col, const MatFactorInfo *info)
3460 {
3461   PetscFunctionBegin;
3462   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3463   if (col) PetscValidHeaderSpecific(col, IS_CLASSID, 2);
3464   if (info) PetscAssertPointer(info, 3);
3465   PetscValidType(mat, 1);
3466   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3467   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
3468   MatCheckPreallocated(mat, 1);
3469   PetscCall(PetscLogEventBegin(MAT_QRFactor, mat, col, 0, 0));
3470   PetscUseMethod(mat, "MatQRFactor_C", (Mat, IS, const MatFactorInfo *), (mat, col, info));
3471   PetscCall(PetscLogEventEnd(MAT_QRFactor, mat, col, 0, 0));
3472   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
3473   PetscFunctionReturn(PETSC_SUCCESS);
3474 }
3475 
3476 /*@
3477   MatQRFactorSymbolic - Performs symbolic QR factorization of matrix.
3478   Call this routine after `MatGetFactor()` but before calling `MatQRFactorNumeric()`.
3479 
3480   Collective
3481 
3482   Input Parameters:
3483 + fact - the factor matrix obtained with `MatGetFactor()`
3484 . mat  - the matrix
3485 . col  - column permutation
3486 - info - options for factorization, includes
3487 .vb
3488           fill - expected fill as ratio of original fill.
3489           dtcol - pivot tolerance (0 no pivot, 1 full column pivoting)
3490                    Run with the option -info to determine an optimal value to use
3491 .ve
3492 
3493   Level: developer
3494 
3495   Note:
3496   Most users should employ the `KSP` interface for linear solvers
3497   instead of working directly with matrix algebra routines such as this.
3498   See, e.g., `KSPCreate()`.
3499 
3500   Developer Note:
3501   The Fortran interface is not autogenerated as the
3502   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3503 
3504 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatFactorInfo`, `MatQRFactor()`, `MatQRFactorNumeric()`, `MatLUFactor()`, `MatFactorInfoInitialize()`
3505 @*/
3506 PetscErrorCode MatQRFactorSymbolic(Mat fact, Mat mat, IS col, const MatFactorInfo *info)
3507 {
3508   MatFactorInfo tinfo;
3509 
3510   PetscFunctionBegin;
3511   PetscValidHeaderSpecific(fact, MAT_CLASSID, 1);
3512   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
3513   if (col) PetscValidHeaderSpecific(col, IS_CLASSID, 3);
3514   if (info) PetscAssertPointer(info, 4);
3515   PetscValidType(fact, 1);
3516   PetscValidType(mat, 2);
3517   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3518   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
3519   MatCheckPreallocated(mat, 2);
3520   if (!info) {
3521     PetscCall(MatFactorInfoInitialize(&tinfo));
3522     info = &tinfo;
3523   }
3524 
3525   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_QRFactorSymbolic, fact, mat, col, 0));
3526   PetscUseMethod(fact, "MatQRFactorSymbolic_C", (Mat, Mat, IS, const MatFactorInfo *), (fact, mat, col, info));
3527   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_QRFactorSymbolic, fact, mat, col, 0));
3528   PetscCall(PetscObjectStateIncrease((PetscObject)fact));
3529   PetscFunctionReturn(PETSC_SUCCESS);
3530 }
3531 
3532 /*@
3533   MatQRFactorNumeric - Performs numeric QR factorization of a matrix.
3534   Call this routine after first calling `MatGetFactor()`, and `MatQRFactorSymbolic()`.
3535 
3536   Collective
3537 
3538   Input Parameters:
3539 + fact - the factor matrix obtained with `MatGetFactor()`
3540 . mat  - the matrix
3541 - info - options for factorization
3542 
3543   Level: developer
3544 
3545   Notes:
3546   See `MatQRFactor()` for in-place factorization.
3547 
3548   Most users should employ the `KSP` interface for linear solvers
3549   instead of working directly with matrix algebra routines such as this.
3550   See, e.g., `KSPCreate()`.
3551 
3552   Developer Note:
3553   The Fortran interface is not autogenerated as the
3554   interface definition cannot be generated correctly [due to `MatFactorInfo`]
3555 
3556 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorInfo`, `MatGetFactor()`, `MatQRFactor()`, `MatQRFactorSymbolic()`, `MatLUFactor()`
3557 @*/
3558 PetscErrorCode MatQRFactorNumeric(Mat fact, Mat mat, const MatFactorInfo *info)
3559 {
3560   MatFactorInfo tinfo;
3561 
3562   PetscFunctionBegin;
3563   PetscValidHeaderSpecific(fact, MAT_CLASSID, 1);
3564   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
3565   PetscValidType(fact, 1);
3566   PetscValidType(mat, 2);
3567   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
3568   PetscCheck(mat->rmap->N == fact->rmap->N && mat->cmap->N == fact->cmap->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Mat fact: global dimensions are different %" PetscInt_FMT " should = %" PetscInt_FMT " %" PetscInt_FMT " should = %" PetscInt_FMT,
3569              mat->rmap->N, (fact)->rmap->N, mat->cmap->N, (fact)->cmap->N);
3570 
3571   MatCheckPreallocated(mat, 2);
3572   if (!info) {
3573     PetscCall(MatFactorInfoInitialize(&tinfo));
3574     info = &tinfo;
3575   }
3576 
3577   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_QRFactorNumeric, mat, fact, 0, 0));
3578   else PetscCall(PetscLogEventBegin(MAT_QRFactor, mat, fact, 0, 0));
3579   PetscUseMethod(fact, "MatQRFactorNumeric_C", (Mat, Mat, const MatFactorInfo *), (fact, mat, info));
3580   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_QRFactorNumeric, mat, fact, 0, 0));
3581   else PetscCall(PetscLogEventEnd(MAT_QRFactor, mat, fact, 0, 0));
3582   PetscCall(MatViewFromOptions(fact, NULL, "-mat_factor_view"));
3583   PetscCall(PetscObjectStateIncrease((PetscObject)fact));
3584   PetscFunctionReturn(PETSC_SUCCESS);
3585 }
3586 
3587 /*@
3588   MatSolve - Solves $A x = b$, given a factored matrix.
3589 
3590   Neighbor-wise Collective
3591 
3592   Input Parameters:
3593 + mat - the factored matrix
3594 - b   - the right-hand-side vector
3595 
3596   Output Parameter:
3597 . x - the result vector
3598 
3599   Level: developer
3600 
3601   Notes:
3602   The vectors `b` and `x` cannot be the same.  I.e., one cannot
3603   call `MatSolve`(A,x,x).
3604 
3605   Most users should employ the `KSP` interface for linear solvers
3606   instead of working directly with matrix algebra routines such as this.
3607   See, e.g., `KSPCreate()`.
3608 
3609 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatLUFactor()`, `MatSolveAdd()`, `MatSolveTranspose()`, `MatSolveTransposeAdd()`
3610 @*/
3611 PetscErrorCode MatSolve(Mat mat, Vec b, Vec x)
3612 {
3613   PetscFunctionBegin;
3614   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3615   PetscValidType(mat, 1);
3616   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
3617   PetscValidHeaderSpecific(x, VEC_CLASSID, 3);
3618   PetscCheckSameComm(mat, 1, b, 2);
3619   PetscCheckSameComm(mat, 1, x, 3);
3620   PetscCheck(x != b, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "x and b must be different vectors");
3621   PetscCheck(mat->cmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, x->map->N);
3622   PetscCheck(mat->rmap->N == b->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, b->map->N);
3623   PetscCheck(mat->rmap->n == b->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, b->map->n);
3624   if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
3625   MatCheckPreallocated(mat, 1);
3626 
3627   PetscCall(PetscLogEventBegin(MAT_Solve, mat, b, x, 0));
3628   if (mat->factorerrortype) {
3629     PetscCall(PetscInfo(mat, "MatFactorError %d\n", mat->factorerrortype));
3630     PetscCall(VecSetInf(x));
3631   } else PetscUseTypeMethod(mat, solve, b, x);
3632   PetscCall(PetscLogEventEnd(MAT_Solve, mat, b, x, 0));
3633   PetscCall(PetscObjectStateIncrease((PetscObject)x));
3634   PetscFunctionReturn(PETSC_SUCCESS);
3635 }
3636 
3637 static PetscErrorCode MatMatSolve_Basic(Mat A, Mat B, Mat X, PetscBool trans)
3638 {
3639   Vec      b, x;
3640   PetscInt N, i;
3641   PetscErrorCode (*f)(Mat, Vec, Vec);
3642   PetscBool Abound, Bneedconv = PETSC_FALSE, Xneedconv = PETSC_FALSE;
3643 
3644   PetscFunctionBegin;
3645   if (A->factorerrortype) {
3646     PetscCall(PetscInfo(A, "MatFactorError %d\n", A->factorerrortype));
3647     PetscCall(MatSetInf(X));
3648     PetscFunctionReturn(PETSC_SUCCESS);
3649   }
3650   f = (!trans || (!A->ops->solvetranspose && A->symmetric)) ? A->ops->solve : A->ops->solvetranspose;
3651   PetscCheck(f, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Mat type %s", ((PetscObject)A)->type_name);
3652   PetscCall(MatBoundToCPU(A, &Abound));
3653   if (!Abound) {
3654     PetscCall(PetscObjectTypeCompareAny((PetscObject)B, &Bneedconv, MATSEQDENSE, MATMPIDENSE, ""));
3655     PetscCall(PetscObjectTypeCompareAny((PetscObject)X, &Xneedconv, MATSEQDENSE, MATMPIDENSE, ""));
3656   }
3657 #if PetscDefined(HAVE_CUDA)
3658   if (Bneedconv) PetscCall(MatConvert(B, MATDENSECUDA, MAT_INPLACE_MATRIX, &B));
3659   if (Xneedconv) PetscCall(MatConvert(X, MATDENSECUDA, MAT_INPLACE_MATRIX, &X));
3660 #elif PetscDefined(HAVE_HIP)
3661   if (Bneedconv) PetscCall(MatConvert(B, MATDENSEHIP, MAT_INPLACE_MATRIX, &B));
3662   if (Xneedconv) PetscCall(MatConvert(X, MATDENSEHIP, MAT_INPLACE_MATRIX, &X));
3663 #endif
3664   PetscCall(MatGetSize(B, NULL, &N));
3665   for (i = 0; i < N; i++) {
3666     PetscCall(MatDenseGetColumnVecRead(B, i, &b));
3667     PetscCall(MatDenseGetColumnVecWrite(X, i, &x));
3668     PetscCall((*f)(A, b, x));
3669     PetscCall(MatDenseRestoreColumnVecWrite(X, i, &x));
3670     PetscCall(MatDenseRestoreColumnVecRead(B, i, &b));
3671   }
3672   if (Bneedconv) PetscCall(MatConvert(B, MATDENSE, MAT_INPLACE_MATRIX, &B));
3673   if (Xneedconv) PetscCall(MatConvert(X, MATDENSE, MAT_INPLACE_MATRIX, &X));
3674   PetscFunctionReturn(PETSC_SUCCESS);
3675 }
3676 
3677 /*@
3678   MatMatSolve - Solves $A X = B$, given a factored matrix.
3679 
3680   Neighbor-wise Collective
3681 
3682   Input Parameters:
3683 + A - the factored matrix
3684 - B - the right-hand-side matrix `MATDENSE` (or sparse `MATAIJ`-- when using MUMPS)
3685 
3686   Output Parameter:
3687 . X - the result matrix (dense matrix)
3688 
3689   Level: developer
3690 
3691   Note:
3692   If `B` is a `MATDENSE` matrix then one can call `MatMatSolve`(A,B,B) except with `MATSOLVERMKL_CPARDISO`;
3693   otherwise, `B` and `X` cannot be the same.
3694 
3695 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatSolve()`, `MatMatSolveTranspose()`, `MatLUFactor()`, `MatCholeskyFactor()`
3696 @*/
3697 PetscErrorCode MatMatSolve(Mat A, Mat B, Mat X)
3698 {
3699   PetscFunctionBegin;
3700   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
3701   PetscValidType(A, 1);
3702   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
3703   PetscValidHeaderSpecific(X, MAT_CLASSID, 3);
3704   PetscCheckSameComm(A, 1, B, 2);
3705   PetscCheckSameComm(A, 1, X, 3);
3706   PetscCheck(A->cmap->N == X->rmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat X: global dim %" PetscInt_FMT " %" PetscInt_FMT, A->cmap->N, X->rmap->N);
3707   PetscCheck(A->rmap->N == B->rmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat B: global dim %" PetscInt_FMT " %" PetscInt_FMT, A->rmap->N, B->rmap->N);
3708   PetscCheck(X->cmap->N == B->cmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Solution matrix must have same number of columns as rhs matrix");
3709   if (!A->rmap->N && !A->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
3710   MatCheckPreallocated(A, 1);
3711 
3712   PetscCall(PetscLogEventBegin(MAT_MatSolve, A, B, X, 0));
3713   if (!A->ops->matsolve) {
3714     PetscCall(PetscInfo(A, "Mat type %s using basic MatMatSolve\n", ((PetscObject)A)->type_name));
3715     PetscCall(MatMatSolve_Basic(A, B, X, PETSC_FALSE));
3716   } else PetscUseTypeMethod(A, matsolve, B, X);
3717   PetscCall(PetscLogEventEnd(MAT_MatSolve, A, B, X, 0));
3718   PetscCall(PetscObjectStateIncrease((PetscObject)X));
3719   PetscFunctionReturn(PETSC_SUCCESS);
3720 }
3721 
3722 /*@
3723   MatMatSolveTranspose - Solves $A^T X = B $, given a factored matrix.
3724 
3725   Neighbor-wise Collective
3726 
3727   Input Parameters:
3728 + A - the factored matrix
3729 - B - the right-hand-side matrix  (`MATDENSE` matrix)
3730 
3731   Output Parameter:
3732 . X - the result matrix (dense matrix)
3733 
3734   Level: developer
3735 
3736   Note:
3737   The matrices `B` and `X` cannot be the same.  I.e., one cannot
3738   call `MatMatSolveTranspose`(A,X,X).
3739 
3740 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatSolveTranspose()`, `MatMatSolve()`, `MatLUFactor()`, `MatCholeskyFactor()`
3741 @*/
3742 PetscErrorCode MatMatSolveTranspose(Mat A, Mat B, Mat X)
3743 {
3744   PetscFunctionBegin;
3745   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
3746   PetscValidType(A, 1);
3747   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
3748   PetscValidHeaderSpecific(X, MAT_CLASSID, 3);
3749   PetscCheckSameComm(A, 1, B, 2);
3750   PetscCheckSameComm(A, 1, X, 3);
3751   PetscCheck(X != B, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_IDN, "X and B must be different matrices");
3752   PetscCheck(A->cmap->N == X->rmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat X: global dim %" PetscInt_FMT " %" PetscInt_FMT, A->cmap->N, X->rmap->N);
3753   PetscCheck(A->rmap->N == B->rmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat B: global dim %" PetscInt_FMT " %" PetscInt_FMT, A->rmap->N, B->rmap->N);
3754   PetscCheck(A->rmap->n == B->rmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat A,Mat B: local dim %" PetscInt_FMT " %" PetscInt_FMT, A->rmap->n, B->rmap->n);
3755   PetscCheck(X->cmap->N >= B->cmap->N, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Solution matrix must have same number of columns as rhs matrix");
3756   if (!A->rmap->N && !A->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
3757   MatCheckPreallocated(A, 1);
3758 
3759   PetscCall(PetscLogEventBegin(MAT_MatSolve, A, B, X, 0));
3760   if (!A->ops->matsolvetranspose) {
3761     PetscCall(PetscInfo(A, "Mat type %s using basic MatMatSolveTranspose\n", ((PetscObject)A)->type_name));
3762     PetscCall(MatMatSolve_Basic(A, B, X, PETSC_TRUE));
3763   } else PetscUseTypeMethod(A, matsolvetranspose, B, X);
3764   PetscCall(PetscLogEventEnd(MAT_MatSolve, A, B, X, 0));
3765   PetscCall(PetscObjectStateIncrease((PetscObject)X));
3766   PetscFunctionReturn(PETSC_SUCCESS);
3767 }
3768 
3769 /*@
3770   MatMatTransposeSolve - Solves $A X = B^T$, given a factored matrix.
3771 
3772   Neighbor-wise Collective
3773 
3774   Input Parameters:
3775 + A  - the factored matrix
3776 - Bt - the transpose of right-hand-side matrix as a `MATDENSE`
3777 
3778   Output Parameter:
3779 . X - the result matrix (dense matrix)
3780 
3781   Level: developer
3782 
3783   Note:
3784   For MUMPS, it only supports centralized sparse compressed column format on the host processor for right hand side matrix. User must create `Bt` in sparse compressed row
3785   format on the host processor and call `MatMatTransposeSolve()` to implement MUMPS' `MatMatSolve()`.
3786 
3787 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatMatSolve()`, `MatMatSolveTranspose()`, `MatLUFactor()`, `MatCholeskyFactor()`
3788 @*/
3789 PetscErrorCode MatMatTransposeSolve(Mat A, Mat Bt, Mat X)
3790 {
3791   PetscFunctionBegin;
3792   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
3793   PetscValidType(A, 1);
3794   PetscValidHeaderSpecific(Bt, MAT_CLASSID, 2);
3795   PetscValidHeaderSpecific(X, MAT_CLASSID, 3);
3796   PetscCheckSameComm(A, 1, Bt, 2);
3797   PetscCheckSameComm(A, 1, X, 3);
3798 
3799   PetscCheck(X != Bt, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_IDN, "X and B must be different matrices");
3800   PetscCheck(A->cmap->N == X->rmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat X: global dim %" PetscInt_FMT " %" PetscInt_FMT, A->cmap->N, X->rmap->N);
3801   PetscCheck(A->rmap->N == Bt->cmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat Bt: global dim %" PetscInt_FMT " %" PetscInt_FMT, A->rmap->N, Bt->cmap->N);
3802   PetscCheck(X->cmap->N >= Bt->rmap->N, PetscObjectComm((PetscObject)X), PETSC_ERR_ARG_SIZ, "Solution matrix must have same number of columns as row number of the rhs matrix");
3803   if (!A->rmap->N && !A->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
3804   PetscCheck(A->factortype, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Unfactored matrix");
3805   MatCheckPreallocated(A, 1);
3806 
3807   PetscCall(PetscLogEventBegin(MAT_MatTrSolve, A, Bt, X, 0));
3808   PetscUseTypeMethod(A, mattransposesolve, Bt, X);
3809   PetscCall(PetscLogEventEnd(MAT_MatTrSolve, A, Bt, X, 0));
3810   PetscCall(PetscObjectStateIncrease((PetscObject)X));
3811   PetscFunctionReturn(PETSC_SUCCESS);
3812 }
3813 
3814 /*@
3815   MatForwardSolve - Solves $ L x = b $, given a factored matrix, $A = LU $, or
3816   $U^T*D^(1/2) x = b$, given a factored symmetric matrix, $A = U^T*D*U$,
3817 
3818   Neighbor-wise Collective
3819 
3820   Input Parameters:
3821 + mat - the factored matrix
3822 - b   - the right-hand-side vector
3823 
3824   Output Parameter:
3825 . x - the result vector
3826 
3827   Level: developer
3828 
3829   Notes:
3830   `MatSolve()` should be used for most applications, as it performs
3831   a forward solve followed by a backward solve.
3832 
3833   The vectors `b` and `x` cannot be the same,  i.e., one cannot
3834   call `MatForwardSolve`(A,x,x).
3835 
3836   For matrix in `MATSEQBAIJ` format with block size larger than 1,
3837   the diagonal blocks are not implemented as $D = D^(1/2) * D^(1/2)$ yet.
3838   `MatForwardSolve()` solves $U^T*D y = b$, and
3839   `MatBackwardSolve()` solves $U x = y$.
3840   Thus they do not provide a symmetric preconditioner.
3841 
3842 .seealso: [](ch_matrices), `Mat`, `MatBackwardSolve()`, `MatGetFactor()`, `MatSolve()`
3843 @*/
3844 PetscErrorCode MatForwardSolve(Mat mat, Vec b, Vec x)
3845 {
3846   PetscFunctionBegin;
3847   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3848   PetscValidType(mat, 1);
3849   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
3850   PetscValidHeaderSpecific(x, VEC_CLASSID, 3);
3851   PetscCheckSameComm(mat, 1, b, 2);
3852   PetscCheckSameComm(mat, 1, x, 3);
3853   PetscCheck(x != b, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "x and b must be different vectors");
3854   PetscCheck(mat->cmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, x->map->N);
3855   PetscCheck(mat->rmap->N == b->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, b->map->N);
3856   PetscCheck(mat->rmap->n == b->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, b->map->n);
3857   if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
3858   MatCheckPreallocated(mat, 1);
3859 
3860   PetscCall(PetscLogEventBegin(MAT_ForwardSolve, mat, b, x, 0));
3861   PetscUseTypeMethod(mat, forwardsolve, b, x);
3862   PetscCall(PetscLogEventEnd(MAT_ForwardSolve, mat, b, x, 0));
3863   PetscCall(PetscObjectStateIncrease((PetscObject)x));
3864   PetscFunctionReturn(PETSC_SUCCESS);
3865 }
3866 
3867 /*@
3868   MatBackwardSolve - Solves $U x = b$, given a factored matrix, $A = LU$.
3869   $D^(1/2) U x = b$, given a factored symmetric matrix, $A = U^T*D*U$,
3870 
3871   Neighbor-wise Collective
3872 
3873   Input Parameters:
3874 + mat - the factored matrix
3875 - b   - the right-hand-side vector
3876 
3877   Output Parameter:
3878 . x - the result vector
3879 
3880   Level: developer
3881 
3882   Notes:
3883   `MatSolve()` should be used for most applications, as it performs
3884   a forward solve followed by a backward solve.
3885 
3886   The vectors `b` and `x` cannot be the same.  I.e., one cannot
3887   call `MatBackwardSolve`(A,x,x).
3888 
3889   For matrix in `MATSEQBAIJ` format with block size larger than 1,
3890   the diagonal blocks are not implemented as $D = D^(1/2) * D^(1/2)$ yet.
3891   `MatForwardSolve()` solves $U^T*D y = b$, and
3892   `MatBackwardSolve()` solves $U x = y$.
3893   Thus they do not provide a symmetric preconditioner.
3894 
3895 .seealso: [](ch_matrices), `Mat`, `MatForwardSolve()`, `MatGetFactor()`, `MatSolve()`
3896 @*/
3897 PetscErrorCode MatBackwardSolve(Mat mat, Vec b, Vec x)
3898 {
3899   PetscFunctionBegin;
3900   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3901   PetscValidType(mat, 1);
3902   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
3903   PetscValidHeaderSpecific(x, VEC_CLASSID, 3);
3904   PetscCheckSameComm(mat, 1, b, 2);
3905   PetscCheckSameComm(mat, 1, x, 3);
3906   PetscCheck(x != b, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "x and b must be different vectors");
3907   PetscCheck(mat->cmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, x->map->N);
3908   PetscCheck(mat->rmap->N == b->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, b->map->N);
3909   PetscCheck(mat->rmap->n == b->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, b->map->n);
3910   if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
3911   MatCheckPreallocated(mat, 1);
3912 
3913   PetscCall(PetscLogEventBegin(MAT_BackwardSolve, mat, b, x, 0));
3914   PetscUseTypeMethod(mat, backwardsolve, b, x);
3915   PetscCall(PetscLogEventEnd(MAT_BackwardSolve, mat, b, x, 0));
3916   PetscCall(PetscObjectStateIncrease((PetscObject)x));
3917   PetscFunctionReturn(PETSC_SUCCESS);
3918 }
3919 
3920 /*@
3921   MatSolveAdd - Computes $x = y + A^{-1}*b$, given a factored matrix.
3922 
3923   Neighbor-wise Collective
3924 
3925   Input Parameters:
3926 + mat - the factored matrix
3927 . b   - the right-hand-side vector
3928 - y   - the vector to be added to
3929 
3930   Output Parameter:
3931 . x - the result vector
3932 
3933   Level: developer
3934 
3935   Note:
3936   The vectors `b` and `x` cannot be the same.  I.e., one cannot
3937   call `MatSolveAdd`(A,x,y,x).
3938 
3939 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatSolve()`, `MatGetFactor()`, `MatSolveTranspose()`, `MatSolveTransposeAdd()`
3940 @*/
3941 PetscErrorCode MatSolveAdd(Mat mat, Vec b, Vec y, Vec x)
3942 {
3943   PetscScalar one = 1.0;
3944   Vec         tmp;
3945 
3946   PetscFunctionBegin;
3947   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
3948   PetscValidType(mat, 1);
3949   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
3950   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
3951   PetscValidHeaderSpecific(x, VEC_CLASSID, 4);
3952   PetscCheckSameComm(mat, 1, b, 2);
3953   PetscCheckSameComm(mat, 1, y, 3);
3954   PetscCheckSameComm(mat, 1, x, 4);
3955   PetscCheck(x != b, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "x and b must be different vectors");
3956   PetscCheck(mat->cmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, x->map->N);
3957   PetscCheck(mat->rmap->N == b->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, b->map->N);
3958   PetscCheck(mat->rmap->N == y->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, y->map->N);
3959   PetscCheck(mat->rmap->n == b->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, b->map->n);
3960   PetscCheck(x->map->n == y->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Vec x,Vec y: local dim %" PetscInt_FMT " %" PetscInt_FMT, x->map->n, y->map->n);
3961   if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
3962   MatCheckPreallocated(mat, 1);
3963 
3964   PetscCall(PetscLogEventBegin(MAT_SolveAdd, mat, b, x, y));
3965   if (mat->factorerrortype) {
3966     PetscCall(PetscInfo(mat, "MatFactorError %d\n", mat->factorerrortype));
3967     PetscCall(VecSetInf(x));
3968   } else if (mat->ops->solveadd) {
3969     PetscUseTypeMethod(mat, solveadd, b, y, x);
3970   } else {
3971     /* do the solve then the add manually */
3972     if (x != y) {
3973       PetscCall(MatSolve(mat, b, x));
3974       PetscCall(VecAXPY(x, one, y));
3975     } else {
3976       PetscCall(VecDuplicate(x, &tmp));
3977       PetscCall(VecCopy(x, tmp));
3978       PetscCall(MatSolve(mat, b, x));
3979       PetscCall(VecAXPY(x, one, tmp));
3980       PetscCall(VecDestroy(&tmp));
3981     }
3982   }
3983   PetscCall(PetscLogEventEnd(MAT_SolveAdd, mat, b, x, y));
3984   PetscCall(PetscObjectStateIncrease((PetscObject)x));
3985   PetscFunctionReturn(PETSC_SUCCESS);
3986 }
3987 
3988 /*@
3989   MatSolveTranspose - Solves $A^T x = b$, given a factored matrix.
3990 
3991   Neighbor-wise Collective
3992 
3993   Input Parameters:
3994 + mat - the factored matrix
3995 - b   - the right-hand-side vector
3996 
3997   Output Parameter:
3998 . x - the result vector
3999 
4000   Level: developer
4001 
4002   Notes:
4003   The vectors `b` and `x` cannot be the same.  I.e., one cannot
4004   call `MatSolveTranspose`(A,x,x).
4005 
4006   Most users should employ the `KSP` interface for linear solvers
4007   instead of working directly with matrix algebra routines such as this.
4008   See, e.g., `KSPCreate()`.
4009 
4010 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `KSP`, `MatSolve()`, `MatSolveAdd()`, `MatSolveTransposeAdd()`
4011 @*/
4012 PetscErrorCode MatSolveTranspose(Mat mat, Vec b, Vec x)
4013 {
4014   PetscErrorCode (*f)(Mat, Vec, Vec) = (!mat->ops->solvetranspose && mat->symmetric) ? mat->ops->solve : mat->ops->solvetranspose;
4015 
4016   PetscFunctionBegin;
4017   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4018   PetscValidType(mat, 1);
4019   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
4020   PetscValidHeaderSpecific(x, VEC_CLASSID, 3);
4021   PetscCheckSameComm(mat, 1, b, 2);
4022   PetscCheckSameComm(mat, 1, x, 3);
4023   PetscCheck(x != b, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "x and b must be different vectors");
4024   PetscCheck(mat->rmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, x->map->N);
4025   PetscCheck(mat->cmap->N == b->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, b->map->N);
4026   if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
4027   MatCheckPreallocated(mat, 1);
4028   PetscCall(PetscLogEventBegin(MAT_SolveTranspose, mat, b, x, 0));
4029   if (mat->factorerrortype) {
4030     PetscCall(PetscInfo(mat, "MatFactorError %d\n", mat->factorerrortype));
4031     PetscCall(VecSetInf(x));
4032   } else {
4033     PetscCheck(f, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Matrix type %s", ((PetscObject)mat)->type_name);
4034     PetscCall((*f)(mat, b, x));
4035   }
4036   PetscCall(PetscLogEventEnd(MAT_SolveTranspose, mat, b, x, 0));
4037   PetscCall(PetscObjectStateIncrease((PetscObject)x));
4038   PetscFunctionReturn(PETSC_SUCCESS);
4039 }
4040 
4041 /*@
4042   MatSolveTransposeAdd - Computes $x = y + A^{-T} b$
4043   factored matrix.
4044 
4045   Neighbor-wise Collective
4046 
4047   Input Parameters:
4048 + mat - the factored matrix
4049 . b   - the right-hand-side vector
4050 - y   - the vector to be added to
4051 
4052   Output Parameter:
4053 . x - the result vector
4054 
4055   Level: developer
4056 
4057   Note:
4058   The vectors `b` and `x` cannot be the same.  I.e., one cannot
4059   call `MatSolveTransposeAdd`(A,x,y,x).
4060 
4061 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatSolve()`, `MatSolveAdd()`, `MatSolveTranspose()`
4062 @*/
4063 PetscErrorCode MatSolveTransposeAdd(Mat mat, Vec b, Vec y, Vec x)
4064 {
4065   PetscScalar one = 1.0;
4066   Vec         tmp;
4067   PetscErrorCode (*f)(Mat, Vec, Vec, Vec) = (!mat->ops->solvetransposeadd && mat->symmetric) ? mat->ops->solveadd : mat->ops->solvetransposeadd;
4068 
4069   PetscFunctionBegin;
4070   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4071   PetscValidType(mat, 1);
4072   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
4073   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
4074   PetscValidHeaderSpecific(x, VEC_CLASSID, 4);
4075   PetscCheckSameComm(mat, 1, b, 2);
4076   PetscCheckSameComm(mat, 1, y, 3);
4077   PetscCheckSameComm(mat, 1, x, 4);
4078   PetscCheck(x != b, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "x and b must be different vectors");
4079   PetscCheck(mat->rmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, x->map->N);
4080   PetscCheck(mat->cmap->N == b->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, b->map->N);
4081   PetscCheck(mat->cmap->N == y->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec y: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, y->map->N);
4082   PetscCheck(x->map->n == y->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Vec x,Vec y: local dim %" PetscInt_FMT " %" PetscInt_FMT, x->map->n, y->map->n);
4083   if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
4084   MatCheckPreallocated(mat, 1);
4085 
4086   PetscCall(PetscLogEventBegin(MAT_SolveTransposeAdd, mat, b, x, y));
4087   if (mat->factorerrortype) {
4088     PetscCall(PetscInfo(mat, "MatFactorError %d\n", mat->factorerrortype));
4089     PetscCall(VecSetInf(x));
4090   } else if (f) {
4091     PetscCall((*f)(mat, b, y, x));
4092   } else {
4093     /* do the solve then the add manually */
4094     if (x != y) {
4095       PetscCall(MatSolveTranspose(mat, b, x));
4096       PetscCall(VecAXPY(x, one, y));
4097     } else {
4098       PetscCall(VecDuplicate(x, &tmp));
4099       PetscCall(VecCopy(x, tmp));
4100       PetscCall(MatSolveTranspose(mat, b, x));
4101       PetscCall(VecAXPY(x, one, tmp));
4102       PetscCall(VecDestroy(&tmp));
4103     }
4104   }
4105   PetscCall(PetscLogEventEnd(MAT_SolveTransposeAdd, mat, b, x, y));
4106   PetscCall(PetscObjectStateIncrease((PetscObject)x));
4107   PetscFunctionReturn(PETSC_SUCCESS);
4108 }
4109 
4110 // PetscClangLinter pragma disable: -fdoc-section-header-unknown
4111 /*@
4112   MatSOR - Computes relaxation (SOR, Gauss-Seidel) sweeps.
4113 
4114   Neighbor-wise Collective
4115 
4116   Input Parameters:
4117 + mat   - the matrix
4118 . b     - the right hand side
4119 . omega - the relaxation factor
4120 . flag  - flag indicating the type of SOR (see below)
4121 . shift - diagonal shift
4122 . its   - the number of iterations
4123 - lits  - the number of local iterations
4124 
4125   Output Parameter:
4126 . x - the solution (can contain an initial guess, use option `SOR_ZERO_INITIAL_GUESS` to indicate no guess)
4127 
4128   SOR Flags:
4129 +     `SOR_FORWARD_SWEEP` - forward SOR
4130 .     `SOR_BACKWARD_SWEEP` - backward SOR
4131 .     `SOR_SYMMETRIC_SWEEP` - SSOR (symmetric SOR)
4132 .     `SOR_LOCAL_FORWARD_SWEEP` - local forward SOR
4133 .     `SOR_LOCAL_BACKWARD_SWEEP` - local forward SOR
4134 .     `SOR_LOCAL_SYMMETRIC_SWEEP` - local SSOR
4135 .     `SOR_EISENSTAT` - SOR with Eisenstat trick
4136 .     `SOR_APPLY_UPPER`, `SOR_APPLY_LOWER` - applies
4137   upper/lower triangular part of matrix to
4138   vector (with omega)
4139 -     `SOR_ZERO_INITIAL_GUESS` - zero initial guess
4140 
4141   Level: developer
4142 
4143   Notes:
4144   `SOR_LOCAL_FORWARD_SWEEP`, `SOR_LOCAL_BACKWARD_SWEEP`, and
4145   `SOR_LOCAL_SYMMETRIC_SWEEP` perform separate independent smoothings
4146   on each processor.
4147 
4148   Application programmers will not generally use `MatSOR()` directly,
4149   but instead will employ the `KSP`/`PC` interface.
4150 
4151   For `MATBAIJ`, `MATSBAIJ`, and `MATAIJ` matrices with Inodes this does a block SOR smoothing, otherwise it does a pointwise smoothing
4152 
4153   Most users should employ the `KSP` interface for linear solvers
4154   instead of working directly with matrix algebra routines such as this.
4155   See, e.g., `KSPCreate()`.
4156 
4157   Vectors `x` and `b` CANNOT be the same
4158 
4159   The flags are implemented as bitwise inclusive or operations.
4160   For example, use (`SOR_ZERO_INITIAL_GUESS` | `SOR_SYMMETRIC_SWEEP`)
4161   to specify a zero initial guess for SSOR.
4162 
4163   Developer Note:
4164   We should add block SOR support for `MATAIJ` matrices with block size set to great than one and no inodes
4165 
4166 .seealso: [](ch_matrices), `Mat`, `MatMult()`, `KSP`, `PC`, `MatGetFactor()`
4167 @*/
4168 PetscErrorCode MatSOR(Mat mat, Vec b, PetscReal omega, MatSORType flag, PetscReal shift, PetscInt its, PetscInt lits, Vec x)
4169 {
4170   PetscFunctionBegin;
4171   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4172   PetscValidType(mat, 1);
4173   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
4174   PetscValidHeaderSpecific(x, VEC_CLASSID, 8);
4175   PetscCheckSameComm(mat, 1, b, 2);
4176   PetscCheckSameComm(mat, 1, x, 8);
4177   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
4178   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
4179   PetscCheck(mat->cmap->N == x->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec x: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->cmap->N, x->map->N);
4180   PetscCheck(mat->rmap->N == b->map->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: global dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->N, b->map->N);
4181   PetscCheck(mat->rmap->n == b->map->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Mat mat,Vec b: local dim %" PetscInt_FMT " %" PetscInt_FMT, mat->rmap->n, b->map->n);
4182   PetscCheck(its > 0, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Relaxation requires global its %" PetscInt_FMT " positive", its);
4183   PetscCheck(lits > 0, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Relaxation requires local its %" PetscInt_FMT " positive", lits);
4184   PetscCheck(b != x, PETSC_COMM_SELF, PETSC_ERR_ARG_IDN, "b and x vector cannot be the same");
4185 
4186   MatCheckPreallocated(mat, 1);
4187   PetscCall(PetscLogEventBegin(MAT_SOR, mat, b, x, 0));
4188   PetscUseTypeMethod(mat, sor, b, omega, flag, shift, its, lits, x);
4189   PetscCall(PetscLogEventEnd(MAT_SOR, mat, b, x, 0));
4190   PetscCall(PetscObjectStateIncrease((PetscObject)x));
4191   PetscFunctionReturn(PETSC_SUCCESS);
4192 }
4193 
4194 /*
4195       Default matrix copy routine.
4196 */
4197 PetscErrorCode MatCopy_Basic(Mat A, Mat B, MatStructure str)
4198 {
4199   PetscInt           i, rstart = 0, rend = 0, nz;
4200   const PetscInt    *cwork;
4201   const PetscScalar *vwork;
4202 
4203   PetscFunctionBegin;
4204   if (B->assembled) PetscCall(MatZeroEntries(B));
4205   if (str == SAME_NONZERO_PATTERN) {
4206     PetscCall(MatGetOwnershipRange(A, &rstart, &rend));
4207     for (i = rstart; i < rend; i++) {
4208       PetscCall(MatGetRow(A, i, &nz, &cwork, &vwork));
4209       PetscCall(MatSetValues(B, 1, &i, nz, cwork, vwork, INSERT_VALUES));
4210       PetscCall(MatRestoreRow(A, i, &nz, &cwork, &vwork));
4211     }
4212   } else {
4213     PetscCall(MatAYPX(B, 0.0, A, str));
4214   }
4215   PetscCall(MatAssemblyBegin(B, MAT_FINAL_ASSEMBLY));
4216   PetscCall(MatAssemblyEnd(B, MAT_FINAL_ASSEMBLY));
4217   PetscFunctionReturn(PETSC_SUCCESS);
4218 }
4219 
4220 /*@
4221   MatCopy - Copies a matrix to another matrix.
4222 
4223   Collective
4224 
4225   Input Parameters:
4226 + A   - the matrix
4227 - str - `SAME_NONZERO_PATTERN` or `DIFFERENT_NONZERO_PATTERN`
4228 
4229   Output Parameter:
4230 . B - where the copy is put
4231 
4232   Level: intermediate
4233 
4234   Notes:
4235   If you use `SAME_NONZERO_PATTERN` then the two matrices must have the same nonzero pattern or the routine will crash.
4236 
4237   `MatCopy()` copies the matrix entries of a matrix to another existing
4238   matrix (after first zeroing the second matrix).  A related routine is
4239   `MatConvert()`, which first creates a new matrix and then copies the data.
4240 
4241 .seealso: [](ch_matrices), `Mat`, `MatConvert()`, `MatDuplicate()`
4242 @*/
4243 PetscErrorCode MatCopy(Mat A, Mat B, MatStructure str)
4244 {
4245   PetscInt i;
4246 
4247   PetscFunctionBegin;
4248   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
4249   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
4250   PetscValidType(A, 1);
4251   PetscValidType(B, 2);
4252   PetscCheckSameComm(A, 1, B, 2);
4253   MatCheckPreallocated(B, 2);
4254   PetscCheck(A->assembled, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
4255   PetscCheck(!A->factortype, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
4256   PetscCheck(A->rmap->N == B->rmap->N && A->cmap->N == B->cmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat B: global dim (%" PetscInt_FMT ",%" PetscInt_FMT ") (%" PetscInt_FMT ",%" PetscInt_FMT ")", A->rmap->N, B->rmap->N,
4257              A->cmap->N, B->cmap->N);
4258   MatCheckPreallocated(A, 1);
4259   if (A == B) PetscFunctionReturn(PETSC_SUCCESS);
4260 
4261   PetscCall(PetscLogEventBegin(MAT_Copy, A, B, 0, 0));
4262   if (A->ops->copy) PetscUseTypeMethod(A, copy, B, str);
4263   else PetscCall(MatCopy_Basic(A, B, str));
4264 
4265   B->stencil.dim = A->stencil.dim;
4266   B->stencil.noc = A->stencil.noc;
4267   for (i = 0; i <= A->stencil.dim + (A->stencil.noc ? 0 : -1); i++) {
4268     B->stencil.dims[i]   = A->stencil.dims[i];
4269     B->stencil.starts[i] = A->stencil.starts[i];
4270   }
4271 
4272   PetscCall(PetscLogEventEnd(MAT_Copy, A, B, 0, 0));
4273   PetscCall(PetscObjectStateIncrease((PetscObject)B));
4274   PetscFunctionReturn(PETSC_SUCCESS);
4275 }
4276 
4277 /*@C
4278   MatConvert - Converts a matrix to another matrix, either of the same
4279   or different type.
4280 
4281   Collective
4282 
4283   Input Parameters:
4284 + mat     - the matrix
4285 . newtype - new matrix type.  Use `MATSAME` to create a new matrix of the
4286    same type as the original matrix.
4287 - reuse   - denotes if the destination matrix is to be created or reused.
4288    Use `MAT_INPLACE_MATRIX` for inplace conversion (that is when you want the input mat to be changed to contain the matrix in the new format), otherwise use
4289    `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX` (can only be used after the first call was made with `MAT_INITIAL_MATRIX`, causes the matrix space in M to be reused).
4290 
4291   Output Parameter:
4292 . M - pointer to place new matrix
4293 
4294   Level: intermediate
4295 
4296   Notes:
4297   `MatConvert()` first creates a new matrix and then copies the data from
4298   the first matrix.  A related routine is `MatCopy()`, which copies the matrix
4299   entries of one matrix to another already existing matrix context.
4300 
4301   Cannot be used to convert a sequential matrix to parallel or parallel to sequential,
4302   the MPI communicator of the generated matrix is always the same as the communicator
4303   of the input matrix.
4304 
4305 .seealso: [](ch_matrices), `Mat`, `MatCopy()`, `MatDuplicate()`, `MAT_INITIAL_MATRIX`, `MAT_REUSE_MATRIX`, `MAT_INPLACE_MATRIX`
4306 @*/
4307 PetscErrorCode MatConvert(Mat mat, MatType newtype, MatReuse reuse, Mat *M)
4308 {
4309   PetscBool  sametype, issame, flg;
4310   PetscBool3 issymmetric, ishermitian;
4311   char       convname[256], mtype[256];
4312   Mat        B;
4313 
4314   PetscFunctionBegin;
4315   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4316   PetscValidType(mat, 1);
4317   PetscAssertPointer(M, 4);
4318   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
4319   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
4320   MatCheckPreallocated(mat, 1);
4321 
4322   PetscCall(PetscOptionsGetString(((PetscObject)mat)->options, ((PetscObject)mat)->prefix, "-matconvert_type", mtype, sizeof(mtype), &flg));
4323   if (flg) newtype = mtype;
4324 
4325   PetscCall(PetscObjectTypeCompare((PetscObject)mat, newtype, &sametype));
4326   PetscCall(PetscStrcmp(newtype, "same", &issame));
4327   PetscCheck(!(reuse == MAT_INPLACE_MATRIX) || !(mat != *M), PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "MAT_INPLACE_MATRIX requires same input and output matrix");
4328   if (reuse == MAT_REUSE_MATRIX) {
4329     PetscValidHeaderSpecific(*M, MAT_CLASSID, 4);
4330     PetscCheck(mat != *M, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "MAT_REUSE_MATRIX means reuse matrix in final argument, perhaps you mean MAT_INPLACE_MATRIX");
4331   }
4332 
4333   if ((reuse == MAT_INPLACE_MATRIX) && (issame || sametype)) {
4334     PetscCall(PetscInfo(mat, "Early return for inplace %s %d %d\n", ((PetscObject)mat)->type_name, sametype, issame));
4335     PetscFunctionReturn(PETSC_SUCCESS);
4336   }
4337 
4338   /* Cache Mat options because some converters use MatHeaderReplace  */
4339   issymmetric = mat->symmetric;
4340   ishermitian = mat->hermitian;
4341 
4342   if ((sametype || issame) && (reuse == MAT_INITIAL_MATRIX) && mat->ops->duplicate) {
4343     PetscCall(PetscInfo(mat, "Calling duplicate for initial matrix %s %d %d\n", ((PetscObject)mat)->type_name, sametype, issame));
4344     PetscUseTypeMethod(mat, duplicate, MAT_COPY_VALUES, M);
4345   } else {
4346     PetscErrorCode (*conv)(Mat, MatType, MatReuse, Mat *) = NULL;
4347     const char *prefix[3]                                 = {"seq", "mpi", ""};
4348     PetscInt    i;
4349     /*
4350        Order of precedence:
4351        0) See if newtype is a superclass of the current matrix.
4352        1) See if a specialized converter is known to the current matrix.
4353        2) See if a specialized converter is known to the desired matrix class.
4354        3) See if a good general converter is registered for the desired class
4355           (as of 6/27/03 only MATMPIADJ falls into this category).
4356        4) See if a good general converter is known for the current matrix.
4357        5) Use a really basic converter.
4358     */
4359 
4360     /* 0) See if newtype is a superclass of the current matrix.
4361           i.e mat is mpiaij and newtype is aij */
4362     for (i = 0; i < 2; i++) {
4363       PetscCall(PetscStrncpy(convname, prefix[i], sizeof(convname)));
4364       PetscCall(PetscStrlcat(convname, newtype, sizeof(convname)));
4365       PetscCall(PetscStrcmp(convname, ((PetscObject)mat)->type_name, &flg));
4366       PetscCall(PetscInfo(mat, "Check superclass %s %s -> %d\n", convname, ((PetscObject)mat)->type_name, flg));
4367       if (flg) {
4368         if (reuse == MAT_INPLACE_MATRIX) {
4369           PetscCall(PetscInfo(mat, "Early return\n"));
4370           PetscFunctionReturn(PETSC_SUCCESS);
4371         } else if (reuse == MAT_INITIAL_MATRIX && mat->ops->duplicate) {
4372           PetscCall(PetscInfo(mat, "Calling MatDuplicate\n"));
4373           PetscUseTypeMethod(mat, duplicate, MAT_COPY_VALUES, M);
4374           PetscFunctionReturn(PETSC_SUCCESS);
4375         } else if (reuse == MAT_REUSE_MATRIX && mat->ops->copy) {
4376           PetscCall(PetscInfo(mat, "Calling MatCopy\n"));
4377           PetscCall(MatCopy(mat, *M, SAME_NONZERO_PATTERN));
4378           PetscFunctionReturn(PETSC_SUCCESS);
4379         }
4380       }
4381     }
4382     /* 1) See if a specialized converter is known to the current matrix and the desired class */
4383     for (i = 0; i < 3; i++) {
4384       PetscCall(PetscStrncpy(convname, "MatConvert_", sizeof(convname)));
4385       PetscCall(PetscStrlcat(convname, ((PetscObject)mat)->type_name, sizeof(convname)));
4386       PetscCall(PetscStrlcat(convname, "_", sizeof(convname)));
4387       PetscCall(PetscStrlcat(convname, prefix[i], sizeof(convname)));
4388       PetscCall(PetscStrlcat(convname, issame ? ((PetscObject)mat)->type_name : newtype, sizeof(convname)));
4389       PetscCall(PetscStrlcat(convname, "_C", sizeof(convname)));
4390       PetscCall(PetscObjectQueryFunction((PetscObject)mat, convname, &conv));
4391       PetscCall(PetscInfo(mat, "Check specialized (1) %s (%s) -> %d\n", convname, ((PetscObject)mat)->type_name, !!conv));
4392       if (conv) goto foundconv;
4393     }
4394 
4395     /* 2)  See if a specialized converter is known to the desired matrix class. */
4396     PetscCall(MatCreate(PetscObjectComm((PetscObject)mat), &B));
4397     PetscCall(MatSetSizes(B, mat->rmap->n, mat->cmap->n, mat->rmap->N, mat->cmap->N));
4398     PetscCall(MatSetType(B, newtype));
4399     for (i = 0; i < 3; i++) {
4400       PetscCall(PetscStrncpy(convname, "MatConvert_", sizeof(convname)));
4401       PetscCall(PetscStrlcat(convname, ((PetscObject)mat)->type_name, sizeof(convname)));
4402       PetscCall(PetscStrlcat(convname, "_", sizeof(convname)));
4403       PetscCall(PetscStrlcat(convname, prefix[i], sizeof(convname)));
4404       PetscCall(PetscStrlcat(convname, newtype, sizeof(convname)));
4405       PetscCall(PetscStrlcat(convname, "_C", sizeof(convname)));
4406       PetscCall(PetscObjectQueryFunction((PetscObject)B, convname, &conv));
4407       PetscCall(PetscInfo(mat, "Check specialized (2) %s (%s) -> %d\n", convname, ((PetscObject)B)->type_name, !!conv));
4408       if (conv) {
4409         PetscCall(MatDestroy(&B));
4410         goto foundconv;
4411       }
4412     }
4413 
4414     /* 3) See if a good general converter is registered for the desired class */
4415     conv = B->ops->convertfrom;
4416     PetscCall(PetscInfo(mat, "Check convertfrom (%s) -> %d\n", ((PetscObject)B)->type_name, !!conv));
4417     PetscCall(MatDestroy(&B));
4418     if (conv) goto foundconv;
4419 
4420     /* 4) See if a good general converter is known for the current matrix */
4421     if (mat->ops->convert) conv = mat->ops->convert;
4422     PetscCall(PetscInfo(mat, "Check general convert (%s) -> %d\n", ((PetscObject)mat)->type_name, !!conv));
4423     if (conv) goto foundconv;
4424 
4425     /* 5) Use a really basic converter. */
4426     PetscCall(PetscInfo(mat, "Using MatConvert_Basic\n"));
4427     conv = MatConvert_Basic;
4428 
4429   foundconv:
4430     PetscCall(PetscLogEventBegin(MAT_Convert, mat, 0, 0, 0));
4431     PetscCall((*conv)(mat, newtype, reuse, M));
4432     if (mat->rmap->mapping && mat->cmap->mapping && !(*M)->rmap->mapping && !(*M)->cmap->mapping) {
4433       /* the block sizes must be same if the mappings are copied over */
4434       (*M)->rmap->bs = mat->rmap->bs;
4435       (*M)->cmap->bs = mat->cmap->bs;
4436       PetscCall(PetscObjectReference((PetscObject)mat->rmap->mapping));
4437       PetscCall(PetscObjectReference((PetscObject)mat->cmap->mapping));
4438       (*M)->rmap->mapping = mat->rmap->mapping;
4439       (*M)->cmap->mapping = mat->cmap->mapping;
4440     }
4441     (*M)->stencil.dim = mat->stencil.dim;
4442     (*M)->stencil.noc = mat->stencil.noc;
4443     for (i = 0; i <= mat->stencil.dim + (mat->stencil.noc ? 0 : -1); i++) {
4444       (*M)->stencil.dims[i]   = mat->stencil.dims[i];
4445       (*M)->stencil.starts[i] = mat->stencil.starts[i];
4446     }
4447     PetscCall(PetscLogEventEnd(MAT_Convert, mat, 0, 0, 0));
4448   }
4449   PetscCall(PetscObjectStateIncrease((PetscObject)*M));
4450 
4451   /* Copy Mat options */
4452   if (issymmetric == PETSC_BOOL3_TRUE) PetscCall(MatSetOption(*M, MAT_SYMMETRIC, PETSC_TRUE));
4453   else if (issymmetric == PETSC_BOOL3_FALSE) PetscCall(MatSetOption(*M, MAT_SYMMETRIC, PETSC_FALSE));
4454   if (ishermitian == PETSC_BOOL3_TRUE) PetscCall(MatSetOption(*M, MAT_HERMITIAN, PETSC_TRUE));
4455   else if (ishermitian == PETSC_BOOL3_FALSE) PetscCall(MatSetOption(*M, MAT_HERMITIAN, PETSC_FALSE));
4456   PetscFunctionReturn(PETSC_SUCCESS);
4457 }
4458 
4459 /*@C
4460   MatFactorGetSolverType - Returns name of the package providing the factorization routines
4461 
4462   Not Collective
4463 
4464   Input Parameter:
4465 . mat - the matrix, must be a factored matrix
4466 
4467   Output Parameter:
4468 . type - the string name of the package (do not free this string)
4469 
4470   Level: intermediate
4471 
4472   Fortran Note:
4473   Pass in an empty string and the package name will be copied into it. Make sure the string is long enough.
4474 
4475 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatSolverType`, `MatCopy()`, `MatDuplicate()`, `MatGetFactorAvailable()`
4476 @*/
4477 PetscErrorCode MatFactorGetSolverType(Mat mat, MatSolverType *type)
4478 {
4479   PetscErrorCode (*conv)(Mat, MatSolverType *);
4480 
4481   PetscFunctionBegin;
4482   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4483   PetscValidType(mat, 1);
4484   PetscAssertPointer(type, 2);
4485   PetscCheck(mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Only for factored matrix");
4486   PetscCall(PetscObjectQueryFunction((PetscObject)mat, "MatFactorGetSolverType_C", &conv));
4487   if (conv) PetscCall((*conv)(mat, type));
4488   else *type = MATSOLVERPETSC;
4489   PetscFunctionReturn(PETSC_SUCCESS);
4490 }
4491 
4492 typedef struct _MatSolverTypeForSpecifcType *MatSolverTypeForSpecifcType;
4493 struct _MatSolverTypeForSpecifcType {
4494   MatType mtype;
4495   /* no entry for MAT_FACTOR_NONE */
4496   PetscErrorCode (*createfactor[MAT_FACTOR_NUM_TYPES - 1])(Mat, MatFactorType, Mat *);
4497   MatSolverTypeForSpecifcType next;
4498 };
4499 
4500 typedef struct _MatSolverTypeHolder *MatSolverTypeHolder;
4501 struct _MatSolverTypeHolder {
4502   char                       *name;
4503   MatSolverTypeForSpecifcType handlers;
4504   MatSolverTypeHolder         next;
4505 };
4506 
4507 static MatSolverTypeHolder MatSolverTypeHolders = NULL;
4508 
4509 /*@C
4510   MatSolverTypeRegister - Registers a `MatSolverType` that works for a particular matrix type
4511 
4512   Input Parameters:
4513 + package      - name of the package, for example petsc or superlu
4514 . mtype        - the matrix type that works with this package
4515 . ftype        - the type of factorization supported by the package
4516 - createfactor - routine that will create the factored matrix ready to be used
4517 
4518   Level: developer
4519 
4520 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorGetSolverType()`, `MatCopy()`, `MatDuplicate()`, `MatGetFactorAvailable()`,
4521   `MatGetFactor()`
4522 @*/
4523 PetscErrorCode MatSolverTypeRegister(MatSolverType package, MatType mtype, MatFactorType ftype, PetscErrorCode (*createfactor)(Mat, MatFactorType, Mat *))
4524 {
4525   MatSolverTypeHolder         next = MatSolverTypeHolders, prev = NULL;
4526   PetscBool                   flg;
4527   MatSolverTypeForSpecifcType inext, iprev = NULL;
4528 
4529   PetscFunctionBegin;
4530   PetscCall(MatInitializePackage());
4531   if (!next) {
4532     PetscCall(PetscNew(&MatSolverTypeHolders));
4533     PetscCall(PetscStrallocpy(package, &MatSolverTypeHolders->name));
4534     PetscCall(PetscNew(&MatSolverTypeHolders->handlers));
4535     PetscCall(PetscStrallocpy(mtype, (char **)&MatSolverTypeHolders->handlers->mtype));
4536     MatSolverTypeHolders->handlers->createfactor[(int)ftype - 1] = createfactor;
4537     PetscFunctionReturn(PETSC_SUCCESS);
4538   }
4539   while (next) {
4540     PetscCall(PetscStrcasecmp(package, next->name, &flg));
4541     if (flg) {
4542       PetscCheck(next->handlers, PETSC_COMM_SELF, PETSC_ERR_PLIB, "MatSolverTypeHolder is missing handlers");
4543       inext = next->handlers;
4544       while (inext) {
4545         PetscCall(PetscStrcasecmp(mtype, inext->mtype, &flg));
4546         if (flg) {
4547           inext->createfactor[(int)ftype - 1] = createfactor;
4548           PetscFunctionReturn(PETSC_SUCCESS);
4549         }
4550         iprev = inext;
4551         inext = inext->next;
4552       }
4553       PetscCall(PetscNew(&iprev->next));
4554       PetscCall(PetscStrallocpy(mtype, (char **)&iprev->next->mtype));
4555       iprev->next->createfactor[(int)ftype - 1] = createfactor;
4556       PetscFunctionReturn(PETSC_SUCCESS);
4557     }
4558     prev = next;
4559     next = next->next;
4560   }
4561   PetscCall(PetscNew(&prev->next));
4562   PetscCall(PetscStrallocpy(package, &prev->next->name));
4563   PetscCall(PetscNew(&prev->next->handlers));
4564   PetscCall(PetscStrallocpy(mtype, (char **)&prev->next->handlers->mtype));
4565   prev->next->handlers->createfactor[(int)ftype - 1] = createfactor;
4566   PetscFunctionReturn(PETSC_SUCCESS);
4567 }
4568 
4569 /*@C
4570   MatSolverTypeGet - Gets the function that creates the factor matrix if it exist
4571 
4572   Input Parameters:
4573 + type  - name of the package, for example petsc or superlu, if this is 'NULL' then the first result that satisfies the other criteria is returned
4574 . ftype - the type of factorization supported by the type
4575 - mtype - the matrix type that works with this type
4576 
4577   Output Parameters:
4578 + foundtype    - `PETSC_TRUE` if the type was registered
4579 . foundmtype   - `PETSC_TRUE` if the type supports the requested mtype
4580 - createfactor - routine that will create the factored matrix ready to be used or `NULL` if not found
4581 
4582   Calling sequence of `createfactor`:
4583 + A     - the matrix providing the factor matrix
4584 . mtype - the `MatType` of the factor requested
4585 - B     - the new factor matrix that responds to MatXXFactorSymbolic,Numeric() functions, such as `MatLUFactorSymbolic()`
4586 
4587   Level: developer
4588 
4589   Note:
4590   When `type` is `NULL` the available functions are searched for based on the order of the calls to `MatSolverTypeRegister()` in `MatInitializePackage()`.
4591   Since different PETSc configurations may have different external solvers, seemingly identical runs with different PETSc configurations may use a different solver.
4592   For example if one configuration had --download-mumps while a different one had --download-superlu_dist.
4593 
4594 .seealso: [](ch_matrices), `Mat`, `MatFactorType`, `MatType`, `MatCopy()`, `MatDuplicate()`, `MatGetFactorAvailable()`, `MatSolverTypeRegister()`, `MatGetFactor()`,
4595           `MatInitializePackage()`
4596 @*/
4597 PetscErrorCode MatSolverTypeGet(MatSolverType type, MatType mtype, MatFactorType ftype, PetscBool *foundtype, PetscBool *foundmtype, PetscErrorCode (**createfactor)(Mat A, MatFactorType mtype, Mat *B))
4598 {
4599   MatSolverTypeHolder         next = MatSolverTypeHolders;
4600   PetscBool                   flg;
4601   MatSolverTypeForSpecifcType inext;
4602 
4603   PetscFunctionBegin;
4604   if (foundtype) *foundtype = PETSC_FALSE;
4605   if (foundmtype) *foundmtype = PETSC_FALSE;
4606   if (createfactor) *createfactor = NULL;
4607 
4608   if (type) {
4609     while (next) {
4610       PetscCall(PetscStrcasecmp(type, next->name, &flg));
4611       if (flg) {
4612         if (foundtype) *foundtype = PETSC_TRUE;
4613         inext = next->handlers;
4614         while (inext) {
4615           PetscCall(PetscStrbeginswith(mtype, inext->mtype, &flg));
4616           if (flg) {
4617             if (foundmtype) *foundmtype = PETSC_TRUE;
4618             if (createfactor) *createfactor = inext->createfactor[(int)ftype - 1];
4619             PetscFunctionReturn(PETSC_SUCCESS);
4620           }
4621           inext = inext->next;
4622         }
4623       }
4624       next = next->next;
4625     }
4626   } else {
4627     while (next) {
4628       inext = next->handlers;
4629       while (inext) {
4630         PetscCall(PetscStrcmp(mtype, inext->mtype, &flg));
4631         if (flg && inext->createfactor[(int)ftype - 1]) {
4632           if (foundtype) *foundtype = PETSC_TRUE;
4633           if (foundmtype) *foundmtype = PETSC_TRUE;
4634           if (createfactor) *createfactor = inext->createfactor[(int)ftype - 1];
4635           PetscFunctionReturn(PETSC_SUCCESS);
4636         }
4637         inext = inext->next;
4638       }
4639       next = next->next;
4640     }
4641     /* try with base classes inext->mtype */
4642     next = MatSolverTypeHolders;
4643     while (next) {
4644       inext = next->handlers;
4645       while (inext) {
4646         PetscCall(PetscStrbeginswith(mtype, inext->mtype, &flg));
4647         if (flg && inext->createfactor[(int)ftype - 1]) {
4648           if (foundtype) *foundtype = PETSC_TRUE;
4649           if (foundmtype) *foundmtype = PETSC_TRUE;
4650           if (createfactor) *createfactor = inext->createfactor[(int)ftype - 1];
4651           PetscFunctionReturn(PETSC_SUCCESS);
4652         }
4653         inext = inext->next;
4654       }
4655       next = next->next;
4656     }
4657   }
4658   PetscFunctionReturn(PETSC_SUCCESS);
4659 }
4660 
4661 PetscErrorCode MatSolverTypeDestroy(void)
4662 {
4663   MatSolverTypeHolder         next = MatSolverTypeHolders, prev;
4664   MatSolverTypeForSpecifcType inext, iprev;
4665 
4666   PetscFunctionBegin;
4667   while (next) {
4668     PetscCall(PetscFree(next->name));
4669     inext = next->handlers;
4670     while (inext) {
4671       PetscCall(PetscFree(inext->mtype));
4672       iprev = inext;
4673       inext = inext->next;
4674       PetscCall(PetscFree(iprev));
4675     }
4676     prev = next;
4677     next = next->next;
4678     PetscCall(PetscFree(prev));
4679   }
4680   MatSolverTypeHolders = NULL;
4681   PetscFunctionReturn(PETSC_SUCCESS);
4682 }
4683 
4684 /*@C
4685   MatFactorGetCanUseOrdering - Indicates if the factorization can use the ordering provided in `MatLUFactorSymbolic()`, `MatCholeskyFactorSymbolic()`
4686 
4687   Logically Collective
4688 
4689   Input Parameter:
4690 . mat - the matrix
4691 
4692   Output Parameter:
4693 . flg - `PETSC_TRUE` if uses the ordering
4694 
4695   Level: developer
4696 
4697   Note:
4698   Most internal PETSc factorizations use the ordering passed to the factorization routine but external
4699   packages do not, thus we want to skip generating the ordering when it is not needed or used.
4700 
4701 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatCopy()`, `MatDuplicate()`, `MatGetFactorAvailable()`, `MatGetFactor()`, `MatLUFactorSymbolic()`, `MatCholeskyFactorSymbolic()`
4702 @*/
4703 PetscErrorCode MatFactorGetCanUseOrdering(Mat mat, PetscBool *flg)
4704 {
4705   PetscFunctionBegin;
4706   *flg = mat->canuseordering;
4707   PetscFunctionReturn(PETSC_SUCCESS);
4708 }
4709 
4710 /*@C
4711   MatFactorGetPreferredOrdering - The preferred ordering for a particular matrix factor object
4712 
4713   Logically Collective
4714 
4715   Input Parameters:
4716 + mat   - the matrix obtained with `MatGetFactor()`
4717 - ftype - the factorization type to be used
4718 
4719   Output Parameter:
4720 . otype - the preferred ordering type
4721 
4722   Level: developer
4723 
4724 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatFactorType`, `MatOrderingType`, `MatCopy()`, `MatDuplicate()`, `MatGetFactorAvailable()`, `MatGetFactor()`, `MatLUFactorSymbolic()`, `MatCholeskyFactorSymbolic()`
4725 @*/
4726 PetscErrorCode MatFactorGetPreferredOrdering(Mat mat, MatFactorType ftype, MatOrderingType *otype)
4727 {
4728   PetscFunctionBegin;
4729   *otype = mat->preferredordering[ftype];
4730   PetscCheck(*otype, PETSC_COMM_SELF, PETSC_ERR_PLIB, "MatFactor did not have a preferred ordering");
4731   PetscFunctionReturn(PETSC_SUCCESS);
4732 }
4733 
4734 /*@C
4735   MatGetFactor - Returns a matrix suitable to calls to MatXXFactorSymbolic,Numeric()
4736 
4737   Collective
4738 
4739   Input Parameters:
4740 + mat   - the matrix
4741 . type  - name of solver type, for example, superlu, petsc (to use PETSc's solver if it is available), if this is 'NULL' then the first result that satisfies
4742           the other criteria is returned
4743 - ftype - factor type, `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ICC`, `MAT_FACTOR_ILU`, `MAT_FACTOR_QR`
4744 
4745   Output Parameter:
4746 . f - the factor matrix used with MatXXFactorSymbolic,Numeric() calls. Can be `NULL` in some cases, see notes below.
4747 
4748   Options Database Keys:
4749 + -pc_factor_mat_solver_type <type>             - choose the type at run time. When using `KSP` solvers
4750 - -mat_factor_bind_factorization <host, device> - Where to do matrix factorization? Default is device (might consume more device memory.
4751                                                   One can choose host to save device memory). Currently only supported with `MATSEQAIJCUSPARSE` matrices.
4752 
4753   Level: intermediate
4754 
4755   Notes:
4756   The return matrix can be `NULL` if the requested factorization is not available, since some combinations of matrix types and factorization
4757   types registered with `MatSolverTypeRegister()` cannot be fully tested if not at runtime.
4758 
4759   Users usually access the factorization solvers via `KSP`
4760 
4761   Some PETSc matrix formats have alternative solvers available that are contained in alternative packages
4762   such as pastix, superlu, mumps etc. PETSc must have been ./configure to use the external solver, using the option --download-package or --with-package-dir
4763 
4764   When `type` is `NULL` the available results are searched for based on the order of the calls to `MatSolverTypeRegister()` in `MatInitializePackage()`.
4765   Since different PETSc configurations may have different external solvers, seemingly identical runs with different PETSc configurations may use a different solver.
4766   For example if one configuration had --download-mumps while a different one had --download-superlu_dist.
4767 
4768   Some of the packages have options for controlling the factorization, these are in the form -prefix_mat_packagename_packageoption
4769   where prefix is normally obtained from the calling `KSP`/`PC`. If `MatGetFactor()` is called directly one can set
4770   call `MatSetOptionsPrefixFactor()` on the originating matrix or  `MatSetOptionsPrefix()` on the resulting factor matrix.
4771 
4772   Developer Note:
4773   This should actually be called `MatCreateFactor()` since it creates a new factor object
4774 
4775 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `KSP`, `MatSolverType`, `MatFactorType`, `MatCopy()`, `MatDuplicate()`,
4776           `MatGetFactorAvailable()`, `MatFactorGetCanUseOrdering()`, `MatSolverTypeRegister()`, `MatSolverTypeGet()`
4777           `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ICC`, `MAT_FACTOR_ILU`, `MAT_FACTOR_QR`, `MatInitializePackage()`
4778 @*/
4779 PetscErrorCode MatGetFactor(Mat mat, MatSolverType type, MatFactorType ftype, Mat *f)
4780 {
4781   PetscBool foundtype, foundmtype;
4782   PetscErrorCode (*conv)(Mat, MatFactorType, Mat *);
4783 
4784   PetscFunctionBegin;
4785   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4786   PetscValidType(mat, 1);
4787 
4788   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
4789   MatCheckPreallocated(mat, 1);
4790 
4791   PetscCall(MatSolverTypeGet(type, ((PetscObject)mat)->type_name, ftype, &foundtype, &foundmtype, &conv));
4792   if (!foundtype) {
4793     if (type) {
4794       SETERRQ(PetscObjectComm((PetscObject)mat), PETSC_ERR_MISSING_FACTOR, "Could not locate solver type %s for factorization type %s and matrix type %s. Perhaps you must ./configure with --download-%s", type, MatFactorTypes[ftype],
4795               ((PetscObject)mat)->type_name, type);
4796     } else {
4797       SETERRQ(PetscObjectComm((PetscObject)mat), PETSC_ERR_MISSING_FACTOR, "Could not locate a solver type for factorization type %s and matrix type %s.", MatFactorTypes[ftype], ((PetscObject)mat)->type_name);
4798     }
4799   }
4800   PetscCheck(foundmtype, PetscObjectComm((PetscObject)mat), PETSC_ERR_MISSING_FACTOR, "MatSolverType %s does not support matrix type %s", type, ((PetscObject)mat)->type_name);
4801   PetscCheck(conv, PetscObjectComm((PetscObject)mat), PETSC_ERR_MISSING_FACTOR, "MatSolverType %s does not support factorization type %s for matrix type %s", type, MatFactorTypes[ftype], ((PetscObject)mat)->type_name);
4802 
4803   PetscCall((*conv)(mat, ftype, f));
4804   if (mat->factorprefix) PetscCall(MatSetOptionsPrefix(*f, mat->factorprefix));
4805   PetscFunctionReturn(PETSC_SUCCESS);
4806 }
4807 
4808 /*@C
4809   MatGetFactorAvailable - Returns a a flag if matrix supports particular type and factor type
4810 
4811   Not Collective
4812 
4813   Input Parameters:
4814 + mat   - the matrix
4815 . type  - name of solver type, for example, superlu, petsc (to use PETSc's default)
4816 - ftype - factor type, `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ICC`, `MAT_FACTOR_ILU`, `MAT_FACTOR_QR`
4817 
4818   Output Parameter:
4819 . flg - PETSC_TRUE if the factorization is available
4820 
4821   Level: intermediate
4822 
4823   Notes:
4824   Some PETSc matrix formats have alternative solvers available that are contained in alternative packages
4825   such as pastix, superlu, mumps etc.
4826 
4827   PETSc must have been ./configure to use the external solver, using the option --download-package
4828 
4829   Developer Note:
4830   This should actually be called `MatCreateFactorAvailable()` since `MatGetFactor()` creates a new factor object
4831 
4832 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatSolverType`, `MatFactorType`, `MatGetFactor()`, `MatCopy()`, `MatDuplicate()`, `MatSolverTypeRegister()`,
4833           `MAT_FACTOR_LU`, `MAT_FACTOR_CHOLESKY`, `MAT_FACTOR_ICC`, `MAT_FACTOR_ILU`, `MAT_FACTOR_QR`, `MatSolverTypeGet()`
4834 @*/
4835 PetscErrorCode MatGetFactorAvailable(Mat mat, MatSolverType type, MatFactorType ftype, PetscBool *flg)
4836 {
4837   PetscErrorCode (*gconv)(Mat, MatFactorType, Mat *);
4838 
4839   PetscFunctionBegin;
4840   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4841   PetscAssertPointer(flg, 4);
4842 
4843   *flg = PETSC_FALSE;
4844   if (!((PetscObject)mat)->type_name) PetscFunctionReturn(PETSC_SUCCESS);
4845 
4846   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
4847   MatCheckPreallocated(mat, 1);
4848 
4849   PetscCall(MatSolverTypeGet(type, ((PetscObject)mat)->type_name, ftype, NULL, NULL, &gconv));
4850   *flg = gconv ? PETSC_TRUE : PETSC_FALSE;
4851   PetscFunctionReturn(PETSC_SUCCESS);
4852 }
4853 
4854 /*@
4855   MatDuplicate - Duplicates a matrix including the non-zero structure.
4856 
4857   Collective
4858 
4859   Input Parameters:
4860 + mat - the matrix
4861 - op  - One of `MAT_DO_NOT_COPY_VALUES`, `MAT_COPY_VALUES`, or `MAT_SHARE_NONZERO_PATTERN`.
4862         See the manual page for `MatDuplicateOption()` for an explanation of these options.
4863 
4864   Output Parameter:
4865 . M - pointer to place new matrix
4866 
4867   Level: intermediate
4868 
4869   Notes:
4870   You cannot change the nonzero pattern for the parent or child matrix later if you use `MAT_SHARE_NONZERO_PATTERN`.
4871 
4872   If `op` is not `MAT_COPY_VALUES` the numerical values in the new matrix are zeroed.
4873 
4874   May be called with an unassembled input `Mat` if `MAT_DO_NOT_COPY_VALUES` is used, in which case the output `Mat` is unassembled as well.
4875 
4876   When original mat is a product of matrix operation, e.g., an output of `MatMatMult()` or `MatCreateSubMatrix()`, only the matrix data structure of `mat`
4877   is duplicated and the internal data structures created for the reuse of previous matrix operations are not duplicated.
4878   User should not use `MatDuplicate()` to create new matrix `M` if `M` is intended to be reused as the product of matrix operation.
4879 
4880 .seealso: [](ch_matrices), `Mat`, `MatCopy()`, `MatConvert()`, `MatDuplicateOption`
4881 @*/
4882 PetscErrorCode MatDuplicate(Mat mat, MatDuplicateOption op, Mat *M)
4883 {
4884   Mat         B;
4885   VecType     vtype;
4886   PetscInt    i;
4887   PetscObject dm, container_h, container_d;
4888   void (*viewf)(void);
4889 
4890   PetscFunctionBegin;
4891   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4892   PetscValidType(mat, 1);
4893   PetscAssertPointer(M, 3);
4894   PetscCheck(op != MAT_COPY_VALUES || mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "MAT_COPY_VALUES not allowed for unassembled matrix");
4895   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
4896   MatCheckPreallocated(mat, 1);
4897 
4898   *M = NULL;
4899   PetscCall(PetscLogEventBegin(MAT_Convert, mat, 0, 0, 0));
4900   PetscUseTypeMethod(mat, duplicate, op, M);
4901   PetscCall(PetscLogEventEnd(MAT_Convert, mat, 0, 0, 0));
4902   B = *M;
4903 
4904   PetscCall(MatGetOperation(mat, MATOP_VIEW, &viewf));
4905   if (viewf) PetscCall(MatSetOperation(B, MATOP_VIEW, viewf));
4906   PetscCall(MatGetVecType(mat, &vtype));
4907   PetscCall(MatSetVecType(B, vtype));
4908 
4909   B->stencil.dim = mat->stencil.dim;
4910   B->stencil.noc = mat->stencil.noc;
4911   for (i = 0; i <= mat->stencil.dim + (mat->stencil.noc ? 0 : -1); i++) {
4912     B->stencil.dims[i]   = mat->stencil.dims[i];
4913     B->stencil.starts[i] = mat->stencil.starts[i];
4914   }
4915 
4916   B->nooffproczerorows = mat->nooffproczerorows;
4917   B->nooffprocentries  = mat->nooffprocentries;
4918 
4919   PetscCall(PetscObjectQuery((PetscObject)mat, "__PETSc_dm", &dm));
4920   if (dm) PetscCall(PetscObjectCompose((PetscObject)B, "__PETSc_dm", dm));
4921   PetscCall(PetscObjectQuery((PetscObject)mat, "__PETSc_MatCOOStruct_Host", &container_h));
4922   if (container_h) PetscCall(PetscObjectCompose((PetscObject)B, "__PETSc_MatCOOStruct_Host", container_h));
4923   PetscCall(PetscObjectQuery((PetscObject)mat, "__PETSc_MatCOOStruct_Device", &container_d));
4924   if (container_d) PetscCall(PetscObjectCompose((PetscObject)B, "__PETSc_MatCOOStruct_Device", container_d));
4925   PetscCall(PetscObjectStateIncrease((PetscObject)B));
4926   PetscFunctionReturn(PETSC_SUCCESS);
4927 }
4928 
4929 /*@
4930   MatGetDiagonal - Gets the diagonal of a matrix as a `Vec`
4931 
4932   Logically Collective
4933 
4934   Input Parameter:
4935 . mat - the matrix
4936 
4937   Output Parameter:
4938 . v - the diagonal of the matrix
4939 
4940   Level: intermediate
4941 
4942   Note:
4943   If `mat` has local sizes `n` x `m`, this routine fills the first `ndiag = min(n, m)` entries
4944   of `v` with the diagonal values. Thus `v` must have local size of at least `ndiag`. If `v`
4945   is larger than `ndiag`, the values of the remaining entries are unspecified.
4946 
4947   Currently only correct in parallel for square matrices.
4948 
4949 .seealso: [](ch_matrices), `Mat`, `Vec`, `MatGetRow()`, `MatCreateSubMatrices()`, `MatCreateSubMatrix()`, `MatGetRowMaxAbs()`
4950 @*/
4951 PetscErrorCode MatGetDiagonal(Mat mat, Vec v)
4952 {
4953   PetscFunctionBegin;
4954   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
4955   PetscValidType(mat, 1);
4956   PetscValidHeaderSpecific(v, VEC_CLASSID, 2);
4957   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
4958   MatCheckPreallocated(mat, 1);
4959   if (PetscDefined(USE_DEBUG)) {
4960     PetscInt nv, row, col, ndiag;
4961 
4962     PetscCall(VecGetLocalSize(v, &nv));
4963     PetscCall(MatGetLocalSize(mat, &row, &col));
4964     ndiag = PetscMin(row, col);
4965     PetscCheck(nv >= ndiag, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Nonconforming Mat and Vec. Vec local size %" PetscInt_FMT " < Mat local diagonal length %" PetscInt_FMT, nv, ndiag);
4966   }
4967 
4968   PetscUseTypeMethod(mat, getdiagonal, v);
4969   PetscCall(PetscObjectStateIncrease((PetscObject)v));
4970   PetscFunctionReturn(PETSC_SUCCESS);
4971 }
4972 
4973 /*@C
4974   MatGetRowMin - Gets the minimum value (of the real part) of each
4975   row of the matrix
4976 
4977   Logically Collective
4978 
4979   Input Parameter:
4980 . mat - the matrix
4981 
4982   Output Parameters:
4983 + v   - the vector for storing the maximums
4984 - idx - the indices of the column found for each row (optional)
4985 
4986   Level: intermediate
4987 
4988   Note:
4989   The result of this call are the same as if one converted the matrix to dense format
4990   and found the minimum value in each row (i.e. the implicit zeros are counted as zeros).
4991 
4992   This code is only implemented for a couple of matrix formats.
4993 
4994 .seealso: [](ch_matrices), `Mat`, `MatGetDiagonal()`, `MatCreateSubMatrices()`, `MatCreateSubMatrix()`, `MatGetRowMaxAbs()`, `MatGetRowMinAbs()`,
4995           `MatGetRowMax()`
4996 @*/
4997 PetscErrorCode MatGetRowMin(Mat mat, Vec v, PetscInt idx[])
4998 {
4999   PetscFunctionBegin;
5000   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5001   PetscValidType(mat, 1);
5002   PetscValidHeaderSpecific(v, VEC_CLASSID, 2);
5003   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5004 
5005   if (!mat->cmap->N) {
5006     PetscCall(VecSet(v, PETSC_MAX_REAL));
5007     if (idx) {
5008       PetscInt i, m = mat->rmap->n;
5009       for (i = 0; i < m; i++) idx[i] = -1;
5010     }
5011   } else {
5012     MatCheckPreallocated(mat, 1);
5013   }
5014   PetscUseTypeMethod(mat, getrowmin, v, idx);
5015   PetscCall(PetscObjectStateIncrease((PetscObject)v));
5016   PetscFunctionReturn(PETSC_SUCCESS);
5017 }
5018 
5019 /*@C
5020   MatGetRowMinAbs - Gets the minimum value (in absolute value) of each
5021   row of the matrix
5022 
5023   Logically Collective
5024 
5025   Input Parameter:
5026 . mat - the matrix
5027 
5028   Output Parameters:
5029 + v   - the vector for storing the minimums
5030 - idx - the indices of the column found for each row (or `NULL` if not needed)
5031 
5032   Level: intermediate
5033 
5034   Notes:
5035   if a row is completely empty or has only 0.0 values then the `idx` value for that
5036   row is 0 (the first column).
5037 
5038   This code is only implemented for a couple of matrix formats.
5039 
5040 .seealso: [](ch_matrices), `Mat`, `MatGetDiagonal()`, `MatCreateSubMatrices()`, `MatCreateSubMatrix()`, `MatGetRowMax()`, `MatGetRowMaxAbs()`, `MatGetRowMin()`
5041 @*/
5042 PetscErrorCode MatGetRowMinAbs(Mat mat, Vec v, PetscInt idx[])
5043 {
5044   PetscFunctionBegin;
5045   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5046   PetscValidType(mat, 1);
5047   PetscValidHeaderSpecific(v, VEC_CLASSID, 2);
5048   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5049   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5050 
5051   if (!mat->cmap->N) {
5052     PetscCall(VecSet(v, 0.0));
5053     if (idx) {
5054       PetscInt i, m = mat->rmap->n;
5055       for (i = 0; i < m; i++) idx[i] = -1;
5056     }
5057   } else {
5058     MatCheckPreallocated(mat, 1);
5059     if (idx) PetscCall(PetscArrayzero(idx, mat->rmap->n));
5060     PetscUseTypeMethod(mat, getrowminabs, v, idx);
5061   }
5062   PetscCall(PetscObjectStateIncrease((PetscObject)v));
5063   PetscFunctionReturn(PETSC_SUCCESS);
5064 }
5065 
5066 /*@C
5067   MatGetRowMax - Gets the maximum value (of the real part) of each
5068   row of the matrix
5069 
5070   Logically Collective
5071 
5072   Input Parameter:
5073 . mat - the matrix
5074 
5075   Output Parameters:
5076 + v   - the vector for storing the maximums
5077 - idx - the indices of the column found for each row (optional)
5078 
5079   Level: intermediate
5080 
5081   Notes:
5082   The result of this call are the same as if one converted the matrix to dense format
5083   and found the minimum value in each row (i.e. the implicit zeros are counted as zeros).
5084 
5085   This code is only implemented for a couple of matrix formats.
5086 
5087 .seealso: [](ch_matrices), `Mat`, `MatGetDiagonal()`, `MatCreateSubMatrices()`, `MatCreateSubMatrix()`, `MatGetRowMaxAbs()`, `MatGetRowMin()`, `MatGetRowMinAbs()`
5088 @*/
5089 PetscErrorCode MatGetRowMax(Mat mat, Vec v, PetscInt idx[])
5090 {
5091   PetscFunctionBegin;
5092   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5093   PetscValidType(mat, 1);
5094   PetscValidHeaderSpecific(v, VEC_CLASSID, 2);
5095   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5096 
5097   if (!mat->cmap->N) {
5098     PetscCall(VecSet(v, PETSC_MIN_REAL));
5099     if (idx) {
5100       PetscInt i, m = mat->rmap->n;
5101       for (i = 0; i < m; i++) idx[i] = -1;
5102     }
5103   } else {
5104     MatCheckPreallocated(mat, 1);
5105     PetscUseTypeMethod(mat, getrowmax, v, idx);
5106   }
5107   PetscCall(PetscObjectStateIncrease((PetscObject)v));
5108   PetscFunctionReturn(PETSC_SUCCESS);
5109 }
5110 
5111 /*@C
5112   MatGetRowMaxAbs - Gets the maximum value (in absolute value) of each
5113   row of the matrix
5114 
5115   Logically Collective
5116 
5117   Input Parameter:
5118 . mat - the matrix
5119 
5120   Output Parameters:
5121 + v   - the vector for storing the maximums
5122 - idx - the indices of the column found for each row (or `NULL` if not needed)
5123 
5124   Level: intermediate
5125 
5126   Notes:
5127   if a row is completely empty or has only 0.0 values then the `idx` value for that
5128   row is 0 (the first column).
5129 
5130   This code is only implemented for a couple of matrix formats.
5131 
5132 .seealso: [](ch_matrices), `Mat`, `MatGetDiagonal()`, `MatCreateSubMatrices()`, `MatCreateSubMatrix()`, `MatGetRowMax()`, `MatGetRowMin()`, `MatGetRowMinAbs()`
5133 @*/
5134 PetscErrorCode MatGetRowMaxAbs(Mat mat, Vec v, PetscInt idx[])
5135 {
5136   PetscFunctionBegin;
5137   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5138   PetscValidType(mat, 1);
5139   PetscValidHeaderSpecific(v, VEC_CLASSID, 2);
5140   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5141 
5142   if (!mat->cmap->N) {
5143     PetscCall(VecSet(v, 0.0));
5144     if (idx) {
5145       PetscInt i, m = mat->rmap->n;
5146       for (i = 0; i < m; i++) idx[i] = -1;
5147     }
5148   } else {
5149     MatCheckPreallocated(mat, 1);
5150     if (idx) PetscCall(PetscArrayzero(idx, mat->rmap->n));
5151     PetscUseTypeMethod(mat, getrowmaxabs, v, idx);
5152   }
5153   PetscCall(PetscObjectStateIncrease((PetscObject)v));
5154   PetscFunctionReturn(PETSC_SUCCESS);
5155 }
5156 
5157 /*@
5158   MatGetRowSum - Gets the sum of each row of the matrix
5159 
5160   Logically or Neighborhood Collective
5161 
5162   Input Parameter:
5163 . mat - the matrix
5164 
5165   Output Parameter:
5166 . v - the vector for storing the sum of rows
5167 
5168   Level: intermediate
5169 
5170   Note:
5171   This code is slow since it is not currently specialized for different formats
5172 
5173 .seealso: [](ch_matrices), `Mat`, `MatGetDiagonal()`, `MatCreateSubMatrices()`, `MatCreateSubMatrix()`, `MatGetRowMax()`, `MatGetRowMin()`, `MatGetRowMaxAbs()`, `MatGetRowMinAbs()`
5174 @*/
5175 PetscErrorCode MatGetRowSum(Mat mat, Vec v)
5176 {
5177   Vec ones;
5178 
5179   PetscFunctionBegin;
5180   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5181   PetscValidType(mat, 1);
5182   PetscValidHeaderSpecific(v, VEC_CLASSID, 2);
5183   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5184   MatCheckPreallocated(mat, 1);
5185   PetscCall(MatCreateVecs(mat, &ones, NULL));
5186   PetscCall(VecSet(ones, 1.));
5187   PetscCall(MatMult(mat, ones, v));
5188   PetscCall(VecDestroy(&ones));
5189   PetscFunctionReturn(PETSC_SUCCESS);
5190 }
5191 
5192 /*@
5193   MatTransposeSetPrecursor - Set the matrix from which the second matrix will receive numerical transpose data with a call to `MatTranspose`(A,`MAT_REUSE_MATRIX`,&B)
5194   when B was not obtained with `MatTranspose`(A,`MAT_INITIAL_MATRIX`,&B)
5195 
5196   Collective
5197 
5198   Input Parameter:
5199 . mat - the matrix to provide the transpose
5200 
5201   Output Parameter:
5202 . B - the matrix to contain the transpose; it MUST have the nonzero structure of the transpose of A or the code will crash or generate incorrect results
5203 
5204   Level: advanced
5205 
5206   Note:
5207   Normally the use of `MatTranspose`(A, `MAT_REUSE_MATRIX`, &B) requires that `B` was obtained with a call to `MatTranspose`(A, `MAT_INITIAL_MATRIX`, &B). This
5208   routine allows bypassing that call.
5209 
5210 .seealso: [](ch_matrices), `Mat`, `MatTransposeSymbolic()`, `MatTranspose()`, `MatMultTranspose()`, `MatMultTransposeAdd()`, `MatIsTranspose()`, `MatReuse`, `MAT_INITIAL_MATRIX`, `MAT_REUSE_MATRIX`, `MAT_INPLACE_MATRIX`
5211 @*/
5212 PetscErrorCode MatTransposeSetPrecursor(Mat mat, Mat B)
5213 {
5214   PetscContainer  rB = NULL;
5215   MatParentState *rb = NULL;
5216 
5217   PetscFunctionBegin;
5218   PetscCall(PetscNew(&rb));
5219   rb->id    = ((PetscObject)mat)->id;
5220   rb->state = 0;
5221   PetscCall(MatGetNonzeroState(mat, &rb->nonzerostate));
5222   PetscCall(PetscContainerCreate(PetscObjectComm((PetscObject)B), &rB));
5223   PetscCall(PetscContainerSetPointer(rB, rb));
5224   PetscCall(PetscContainerSetUserDestroy(rB, PetscContainerUserDestroyDefault));
5225   PetscCall(PetscObjectCompose((PetscObject)B, "MatTransposeParent", (PetscObject)rB));
5226   PetscCall(PetscObjectDereference((PetscObject)rB));
5227   PetscFunctionReturn(PETSC_SUCCESS);
5228 }
5229 
5230 /*@
5231   MatTranspose - Computes an in-place or out-of-place transpose of a matrix.
5232 
5233   Collective
5234 
5235   Input Parameters:
5236 + mat   - the matrix to transpose
5237 - reuse - either `MAT_INITIAL_MATRIX`, `MAT_REUSE_MATRIX`, or `MAT_INPLACE_MATRIX`
5238 
5239   Output Parameter:
5240 . B - the transpose
5241 
5242   Level: intermediate
5243 
5244   Notes:
5245   If you use `MAT_INPLACE_MATRIX` then you must pass in `&mat` for `B`
5246 
5247   `MAT_REUSE_MATRIX` uses the `B` matrix obtained from a previous call to this function with `MAT_INITIAL_MATRIX`. If you already have a matrix to contain the
5248   transpose, call `MatTransposeSetPrecursor(mat, B)` before calling this routine.
5249 
5250   If the nonzero structure of mat changed from the previous call to this function with the same matrices an error will be generated for some matrix types.
5251 
5252   Consider using `MatCreateTranspose()` instead if you only need a matrix that behaves like the transpose, but don't need the storage to be changed.
5253 
5254   If mat is unchanged from the last call this function returns immediately without recomputing the result
5255 
5256   If you only need the symbolic transpose, and not the numerical values, use `MatTransposeSymbolic()`
5257 
5258 .seealso: [](ch_matrices), `Mat`, `MatTransposeSetPrecursor()`, `MatMultTranspose()`, `MatMultTransposeAdd()`, `MatIsTranspose()`, `MatReuse`, `MAT_INITIAL_MATRIX`, `MAT_REUSE_MATRIX`, `MAT_INPLACE_MATRIX`,
5259           `MatTransposeSymbolic()`, `MatCreateTranspose()`
5260 @*/
5261 PetscErrorCode MatTranspose(Mat mat, MatReuse reuse, Mat *B)
5262 {
5263   PetscContainer  rB = NULL;
5264   MatParentState *rb = NULL;
5265 
5266   PetscFunctionBegin;
5267   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5268   PetscValidType(mat, 1);
5269   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5270   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5271   PetscCheck(reuse != MAT_INPLACE_MATRIX || mat == *B, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "MAT_INPLACE_MATRIX requires last matrix to match first");
5272   PetscCheck(reuse != MAT_REUSE_MATRIX || mat != *B, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Perhaps you mean MAT_INPLACE_MATRIX");
5273   MatCheckPreallocated(mat, 1);
5274   if (reuse == MAT_REUSE_MATRIX) {
5275     PetscCall(PetscObjectQuery((PetscObject)*B, "MatTransposeParent", (PetscObject *)&rB));
5276     PetscCheck(rB, PetscObjectComm((PetscObject)*B), PETSC_ERR_ARG_WRONG, "Reuse matrix used was not generated from call to MatTranspose(). Suggest MatTransposeSetPrecursor().");
5277     PetscCall(PetscContainerGetPointer(rB, (void **)&rb));
5278     PetscCheck(rb->id == ((PetscObject)mat)->id, PetscObjectComm((PetscObject)*B), PETSC_ERR_ARG_WRONG, "Reuse matrix used was not generated from input matrix");
5279     if (rb->state == ((PetscObject)mat)->state) PetscFunctionReturn(PETSC_SUCCESS);
5280   }
5281 
5282   PetscCall(PetscLogEventBegin(MAT_Transpose, mat, 0, 0, 0));
5283   if (reuse != MAT_INPLACE_MATRIX || mat->symmetric != PETSC_BOOL3_TRUE) {
5284     PetscUseTypeMethod(mat, transpose, reuse, B);
5285     PetscCall(PetscObjectStateIncrease((PetscObject)*B));
5286   }
5287   PetscCall(PetscLogEventEnd(MAT_Transpose, mat, 0, 0, 0));
5288 
5289   if (reuse == MAT_INITIAL_MATRIX) PetscCall(MatTransposeSetPrecursor(mat, *B));
5290   if (reuse != MAT_INPLACE_MATRIX) {
5291     PetscCall(PetscObjectQuery((PetscObject)*B, "MatTransposeParent", (PetscObject *)&rB));
5292     PetscCall(PetscContainerGetPointer(rB, (void **)&rb));
5293     rb->state        = ((PetscObject)mat)->state;
5294     rb->nonzerostate = mat->nonzerostate;
5295   }
5296   PetscFunctionReturn(PETSC_SUCCESS);
5297 }
5298 
5299 /*@
5300   MatTransposeSymbolic - Computes the symbolic part of the transpose of a matrix.
5301 
5302   Collective
5303 
5304   Input Parameter:
5305 . A - the matrix to transpose
5306 
5307   Output Parameter:
5308 . B - the transpose. This is a complete matrix but the numerical portion is invalid. One can call `MatTranspose`(A,`MAT_REUSE_MATRIX`,&B) to compute the
5309       numerical portion.
5310 
5311   Level: intermediate
5312 
5313   Note:
5314   This is not supported for many matrix types, use `MatTranspose()` in those cases
5315 
5316 .seealso: [](ch_matrices), `Mat`, `MatTransposeSetPrecursor()`, `MatTranspose()`, `MatMultTranspose()`, `MatMultTransposeAdd()`, `MatIsTranspose()`, `MatReuse`, `MAT_INITIAL_MATRIX`, `MAT_REUSE_MATRIX`, `MAT_INPLACE_MATRIX`
5317 @*/
5318 PetscErrorCode MatTransposeSymbolic(Mat A, Mat *B)
5319 {
5320   PetscFunctionBegin;
5321   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
5322   PetscValidType(A, 1);
5323   PetscCheck(A->assembled, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5324   PetscCheck(!A->factortype, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5325   PetscCall(PetscLogEventBegin(MAT_Transpose, A, 0, 0, 0));
5326   PetscUseTypeMethod(A, transposesymbolic, B);
5327   PetscCall(PetscLogEventEnd(MAT_Transpose, A, 0, 0, 0));
5328 
5329   PetscCall(MatTransposeSetPrecursor(A, *B));
5330   PetscFunctionReturn(PETSC_SUCCESS);
5331 }
5332 
5333 PetscErrorCode MatTransposeCheckNonzeroState_Private(Mat A, Mat B)
5334 {
5335   PetscContainer  rB;
5336   MatParentState *rb;
5337 
5338   PetscFunctionBegin;
5339   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
5340   PetscValidType(A, 1);
5341   PetscCheck(A->assembled, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5342   PetscCheck(!A->factortype, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5343   PetscCall(PetscObjectQuery((PetscObject)B, "MatTransposeParent", (PetscObject *)&rB));
5344   PetscCheck(rB, PetscObjectComm((PetscObject)B), PETSC_ERR_ARG_WRONG, "Reuse matrix used was not generated from call to MatTranspose()");
5345   PetscCall(PetscContainerGetPointer(rB, (void **)&rb));
5346   PetscCheck(rb->id == ((PetscObject)A)->id, PetscObjectComm((PetscObject)B), PETSC_ERR_ARG_WRONG, "Reuse matrix used was not generated from input matrix");
5347   PetscCheck(rb->nonzerostate == A->nonzerostate, PetscObjectComm((PetscObject)B), PETSC_ERR_ARG_WRONGSTATE, "Reuse matrix has changed nonzero structure");
5348   PetscFunctionReturn(PETSC_SUCCESS);
5349 }
5350 
5351 /*@
5352   MatIsTranspose - Test whether a matrix is another one's transpose,
5353   or its own, in which case it tests symmetry.
5354 
5355   Collective
5356 
5357   Input Parameters:
5358 + A   - the matrix to test
5359 . B   - the matrix to test against, this can equal the first parameter
5360 - tol - tolerance, differences between entries smaller than this are counted as zero
5361 
5362   Output Parameter:
5363 . flg - the result
5364 
5365   Level: intermediate
5366 
5367   Notes:
5368   Only available for `MATAIJ` matrices.
5369 
5370   The sequential algorithm has a running time of the order of the number of nonzeros; the parallel
5371   test involves parallel copies of the block off-diagonal parts of the matrix.
5372 
5373 .seealso: [](ch_matrices), `Mat`, `MatTranspose()`, `MatIsSymmetric()`, `MatIsHermitian()`
5374 @*/
5375 PetscErrorCode MatIsTranspose(Mat A, Mat B, PetscReal tol, PetscBool *flg)
5376 {
5377   PetscErrorCode (*f)(Mat, Mat, PetscReal, PetscBool *), (*g)(Mat, Mat, PetscReal, PetscBool *);
5378 
5379   PetscFunctionBegin;
5380   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
5381   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
5382   PetscAssertPointer(flg, 4);
5383   PetscCall(PetscObjectQueryFunction((PetscObject)A, "MatIsTranspose_C", &f));
5384   PetscCall(PetscObjectQueryFunction((PetscObject)B, "MatIsTranspose_C", &g));
5385   *flg = PETSC_FALSE;
5386   if (f && g) {
5387     PetscCheck(f == g, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_NOTSAMETYPE, "Matrices do not have the same comparator for symmetry test");
5388     PetscCall((*f)(A, B, tol, flg));
5389   } else {
5390     MatType mattype;
5391 
5392     PetscCall(MatGetType(f ? B : A, &mattype));
5393     SETERRQ(PETSC_COMM_SELF, PETSC_ERR_SUP, "Matrix of type %s does not support checking for transpose", mattype);
5394   }
5395   PetscFunctionReturn(PETSC_SUCCESS);
5396 }
5397 
5398 /*@
5399   MatHermitianTranspose - Computes an in-place or out-of-place Hermitian transpose of a matrix in complex conjugate.
5400 
5401   Collective
5402 
5403   Input Parameters:
5404 + mat   - the matrix to transpose and complex conjugate
5405 - reuse - either `MAT_INITIAL_MATRIX`, `MAT_REUSE_MATRIX`, or `MAT_INPLACE_MATRIX`
5406 
5407   Output Parameter:
5408 . B - the Hermitian transpose
5409 
5410   Level: intermediate
5411 
5412 .seealso: [](ch_matrices), `Mat`, `MatTranspose()`, `MatMultTranspose()`, `MatMultTransposeAdd()`, `MatIsTranspose()`, `MatReuse`
5413 @*/
5414 PetscErrorCode MatHermitianTranspose(Mat mat, MatReuse reuse, Mat *B)
5415 {
5416   PetscFunctionBegin;
5417   PetscCall(MatTranspose(mat, reuse, B));
5418 #if defined(PETSC_USE_COMPLEX)
5419   PetscCall(MatConjugate(*B));
5420 #endif
5421   PetscFunctionReturn(PETSC_SUCCESS);
5422 }
5423 
5424 /*@
5425   MatIsHermitianTranspose - Test whether a matrix is another one's Hermitian transpose,
5426 
5427   Collective
5428 
5429   Input Parameters:
5430 + A   - the matrix to test
5431 . B   - the matrix to test against, this can equal the first parameter
5432 - tol - tolerance, differences between entries smaller than this are counted as zero
5433 
5434   Output Parameter:
5435 . flg - the result
5436 
5437   Level: intermediate
5438 
5439   Notes:
5440   Only available for `MATAIJ` matrices.
5441 
5442   The sequential algorithm
5443   has a running time of the order of the number of nonzeros; the parallel
5444   test involves parallel copies of the block off-diagonal parts of the matrix.
5445 
5446 .seealso: [](ch_matrices), `Mat`, `MatTranspose()`, `MatIsSymmetric()`, `MatIsHermitian()`, `MatIsTranspose()`
5447 @*/
5448 PetscErrorCode MatIsHermitianTranspose(Mat A, Mat B, PetscReal tol, PetscBool *flg)
5449 {
5450   PetscErrorCode (*f)(Mat, Mat, PetscReal, PetscBool *), (*g)(Mat, Mat, PetscReal, PetscBool *);
5451 
5452   PetscFunctionBegin;
5453   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
5454   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
5455   PetscAssertPointer(flg, 4);
5456   PetscCall(PetscObjectQueryFunction((PetscObject)A, "MatIsHermitianTranspose_C", &f));
5457   PetscCall(PetscObjectQueryFunction((PetscObject)B, "MatIsHermitianTranspose_C", &g));
5458   if (f && g) {
5459     PetscCheck(f != g, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_NOTSAMETYPE, "Matrices do not have the same comparator for Hermitian test");
5460     PetscCall((*f)(A, B, tol, flg));
5461   }
5462   PetscFunctionReturn(PETSC_SUCCESS);
5463 }
5464 
5465 /*@
5466   MatPermute - Creates a new matrix with rows and columns permuted from the
5467   original.
5468 
5469   Collective
5470 
5471   Input Parameters:
5472 + mat - the matrix to permute
5473 . row - row permutation, each processor supplies only the permutation for its rows
5474 - col - column permutation, each processor supplies only the permutation for its columns
5475 
5476   Output Parameter:
5477 . B - the permuted matrix
5478 
5479   Level: advanced
5480 
5481   Note:
5482   The index sets map from row/col of permuted matrix to row/col of original matrix.
5483   The index sets should be on the same communicator as mat and have the same local sizes.
5484 
5485   Developer Note:
5486   If you want to implement `MatPermute()` for a matrix type, and your approach doesn't
5487   exploit the fact that row and col are permutations, consider implementing the
5488   more general `MatCreateSubMatrix()` instead.
5489 
5490 .seealso: [](ch_matrices), `Mat`, `MatGetOrdering()`, `ISAllGather()`, `MatCreateSubMatrix()`
5491 @*/
5492 PetscErrorCode MatPermute(Mat mat, IS row, IS col, Mat *B)
5493 {
5494   PetscFunctionBegin;
5495   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5496   PetscValidType(mat, 1);
5497   PetscValidHeaderSpecific(row, IS_CLASSID, 2);
5498   PetscValidHeaderSpecific(col, IS_CLASSID, 3);
5499   PetscAssertPointer(B, 4);
5500   PetscCheckSameComm(mat, 1, row, 2);
5501   if (row != col) PetscCheckSameComm(row, 2, col, 3);
5502   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5503   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5504   PetscCheck(mat->ops->permute || mat->ops->createsubmatrix, PETSC_COMM_SELF, PETSC_ERR_SUP, "MatPermute not available for Mat type %s", ((PetscObject)mat)->type_name);
5505   MatCheckPreallocated(mat, 1);
5506 
5507   if (mat->ops->permute) {
5508     PetscUseTypeMethod(mat, permute, row, col, B);
5509     PetscCall(PetscObjectStateIncrease((PetscObject)*B));
5510   } else {
5511     PetscCall(MatCreateSubMatrix(mat, row, col, MAT_INITIAL_MATRIX, B));
5512   }
5513   PetscFunctionReturn(PETSC_SUCCESS);
5514 }
5515 
5516 /*@
5517   MatEqual - Compares two matrices.
5518 
5519   Collective
5520 
5521   Input Parameters:
5522 + A - the first matrix
5523 - B - the second matrix
5524 
5525   Output Parameter:
5526 . flg - `PETSC_TRUE` if the matrices are equal; `PETSC_FALSE` otherwise.
5527 
5528   Level: intermediate
5529 
5530 .seealso: [](ch_matrices), `Mat`
5531 @*/
5532 PetscErrorCode MatEqual(Mat A, Mat B, PetscBool *flg)
5533 {
5534   PetscFunctionBegin;
5535   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
5536   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
5537   PetscValidType(A, 1);
5538   PetscValidType(B, 2);
5539   PetscAssertPointer(flg, 3);
5540   PetscCheckSameComm(A, 1, B, 2);
5541   MatCheckPreallocated(A, 1);
5542   MatCheckPreallocated(B, 2);
5543   PetscCheck(A->assembled, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5544   PetscCheck(B->assembled, PetscObjectComm((PetscObject)B), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5545   PetscCheck(A->rmap->N == B->rmap->N && A->cmap->N == B->cmap->N, PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_SIZ, "Mat A,Mat B: global dim %" PetscInt_FMT " %" PetscInt_FMT " %" PetscInt_FMT " %" PetscInt_FMT, A->rmap->N, B->rmap->N, A->cmap->N,
5546              B->cmap->N);
5547   if (A->ops->equal && A->ops->equal == B->ops->equal) {
5548     PetscUseTypeMethod(A, equal, B, flg);
5549   } else {
5550     PetscCall(MatMultEqual(A, B, 10, flg));
5551   }
5552   PetscFunctionReturn(PETSC_SUCCESS);
5553 }
5554 
5555 /*@
5556   MatDiagonalScale - Scales a matrix on the left and right by diagonal
5557   matrices that are stored as vectors.  Either of the two scaling
5558   matrices can be `NULL`.
5559 
5560   Collective
5561 
5562   Input Parameters:
5563 + mat - the matrix to be scaled
5564 . l   - the left scaling vector (or `NULL`)
5565 - r   - the right scaling vector (or `NULL`)
5566 
5567   Level: intermediate
5568 
5569   Note:
5570   `MatDiagonalScale()` computes $A = LAR$, where
5571   L = a diagonal matrix (stored as a vector), R = a diagonal matrix (stored as a vector)
5572   The L scales the rows of the matrix, the R scales the columns of the matrix.
5573 
5574 .seealso: [](ch_matrices), `Mat`, `MatScale()`, `MatShift()`, `MatDiagonalSet()`
5575 @*/
5576 PetscErrorCode MatDiagonalScale(Mat mat, Vec l, Vec r)
5577 {
5578   PetscFunctionBegin;
5579   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5580   PetscValidType(mat, 1);
5581   if (l) {
5582     PetscValidHeaderSpecific(l, VEC_CLASSID, 2);
5583     PetscCheckSameComm(mat, 1, l, 2);
5584   }
5585   if (r) {
5586     PetscValidHeaderSpecific(r, VEC_CLASSID, 3);
5587     PetscCheckSameComm(mat, 1, r, 3);
5588   }
5589   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5590   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5591   MatCheckPreallocated(mat, 1);
5592   if (!l && !r) PetscFunctionReturn(PETSC_SUCCESS);
5593 
5594   PetscCall(PetscLogEventBegin(MAT_Scale, mat, 0, 0, 0));
5595   PetscUseTypeMethod(mat, diagonalscale, l, r);
5596   PetscCall(PetscLogEventEnd(MAT_Scale, mat, 0, 0, 0));
5597   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
5598   if (l != r) mat->symmetric = PETSC_BOOL3_FALSE;
5599   PetscFunctionReturn(PETSC_SUCCESS);
5600 }
5601 
5602 /*@
5603   MatScale - Scales all elements of a matrix by a given number.
5604 
5605   Logically Collective
5606 
5607   Input Parameters:
5608 + mat - the matrix to be scaled
5609 - a   - the scaling value
5610 
5611   Level: intermediate
5612 
5613 .seealso: [](ch_matrices), `Mat`, `MatDiagonalScale()`
5614 @*/
5615 PetscErrorCode MatScale(Mat mat, PetscScalar a)
5616 {
5617   PetscFunctionBegin;
5618   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5619   PetscValidType(mat, 1);
5620   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5621   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5622   PetscValidLogicalCollectiveScalar(mat, a, 2);
5623   MatCheckPreallocated(mat, 1);
5624 
5625   PetscCall(PetscLogEventBegin(MAT_Scale, mat, 0, 0, 0));
5626   if (a != (PetscScalar)1.0) {
5627     PetscUseTypeMethod(mat, scale, a);
5628     PetscCall(PetscObjectStateIncrease((PetscObject)mat));
5629   }
5630   PetscCall(PetscLogEventEnd(MAT_Scale, mat, 0, 0, 0));
5631   PetscFunctionReturn(PETSC_SUCCESS);
5632 }
5633 
5634 /*@
5635   MatNorm - Calculates various norms of a matrix.
5636 
5637   Collective
5638 
5639   Input Parameters:
5640 + mat  - the matrix
5641 - type - the type of norm, `NORM_1`, `NORM_FROBENIUS`, `NORM_INFINITY`
5642 
5643   Output Parameter:
5644 . nrm - the resulting norm
5645 
5646   Level: intermediate
5647 
5648 .seealso: [](ch_matrices), `Mat`
5649 @*/
5650 PetscErrorCode MatNorm(Mat mat, NormType type, PetscReal *nrm)
5651 {
5652   PetscFunctionBegin;
5653   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5654   PetscValidType(mat, 1);
5655   PetscAssertPointer(nrm, 3);
5656 
5657   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
5658   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
5659   MatCheckPreallocated(mat, 1);
5660 
5661   PetscUseTypeMethod(mat, norm, type, nrm);
5662   PetscFunctionReturn(PETSC_SUCCESS);
5663 }
5664 
5665 /*
5666      This variable is used to prevent counting of MatAssemblyBegin() that
5667    are called from within a MatAssemblyEnd().
5668 */
5669 static PetscInt MatAssemblyEnd_InUse = 0;
5670 /*@
5671   MatAssemblyBegin - Begins assembling the matrix.  This routine should
5672   be called after completing all calls to `MatSetValues()`.
5673 
5674   Collective
5675 
5676   Input Parameters:
5677 + mat  - the matrix
5678 - type - type of assembly, either `MAT_FLUSH_ASSEMBLY` or `MAT_FINAL_ASSEMBLY`
5679 
5680   Level: beginner
5681 
5682   Notes:
5683   `MatSetValues()` generally caches the values that belong to other MPI processes.  The matrix is ready to
5684   use only after `MatAssemblyBegin()` and `MatAssemblyEnd()` have been called.
5685 
5686   Use `MAT_FLUSH_ASSEMBLY` when switching between `ADD_VALUES` and `INSERT_VALUES`
5687   in `MatSetValues()`; use `MAT_FINAL_ASSEMBLY` for the final assembly before
5688   using the matrix.
5689 
5690   ALL processes that share a matrix MUST call `MatAssemblyBegin()` and `MatAssemblyEnd()` the SAME NUMBER of times, and each time with the
5691   same flag of `MAT_FLUSH_ASSEMBLY` or `MAT_FINAL_ASSEMBLY` for all processes. Thus you CANNOT locally change from `ADD_VALUES` to `INSERT_VALUES`, that is
5692   a global collective operation requiring all processes that share the matrix.
5693 
5694   Space for preallocated nonzeros that is not filled by a call to `MatSetValues()` or a related routine are compressed
5695   out by assembly. If you intend to use that extra space on a subsequent assembly, be sure to insert explicit zeros
5696   before `MAT_FINAL_ASSEMBLY` so the space is not compressed out.
5697 
5698 .seealso: [](ch_matrices), `Mat`, `MatAssemblyEnd()`, `MatSetValues()`, `MatAssembled()`
5699 @*/
5700 PetscErrorCode MatAssemblyBegin(Mat mat, MatAssemblyType type)
5701 {
5702   PetscFunctionBegin;
5703   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5704   PetscValidType(mat, 1);
5705   MatCheckPreallocated(mat, 1);
5706   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix.\nDid you forget to call MatSetUnfactored()?");
5707   if (mat->assembled) {
5708     mat->was_assembled = PETSC_TRUE;
5709     mat->assembled     = PETSC_FALSE;
5710   }
5711 
5712   if (!MatAssemblyEnd_InUse) {
5713     PetscCall(PetscLogEventBegin(MAT_AssemblyBegin, mat, 0, 0, 0));
5714     PetscTryTypeMethod(mat, assemblybegin, type);
5715     PetscCall(PetscLogEventEnd(MAT_AssemblyBegin, mat, 0, 0, 0));
5716   } else PetscTryTypeMethod(mat, assemblybegin, type);
5717   PetscFunctionReturn(PETSC_SUCCESS);
5718 }
5719 
5720 /*@
5721   MatAssembled - Indicates if a matrix has been assembled and is ready for
5722   use; for example, in matrix-vector product.
5723 
5724   Not Collective
5725 
5726   Input Parameter:
5727 . mat - the matrix
5728 
5729   Output Parameter:
5730 . assembled - `PETSC_TRUE` or `PETSC_FALSE`
5731 
5732   Level: advanced
5733 
5734 .seealso: [](ch_matrices), `Mat`, `MatAssemblyEnd()`, `MatSetValues()`, `MatAssemblyBegin()`
5735 @*/
5736 PetscErrorCode MatAssembled(Mat mat, PetscBool *assembled)
5737 {
5738   PetscFunctionBegin;
5739   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5740   PetscAssertPointer(assembled, 2);
5741   *assembled = mat->assembled;
5742   PetscFunctionReturn(PETSC_SUCCESS);
5743 }
5744 
5745 /*@
5746   MatAssemblyEnd - Completes assembling the matrix.  This routine should
5747   be called after `MatAssemblyBegin()`.
5748 
5749   Collective
5750 
5751   Input Parameters:
5752 + mat  - the matrix
5753 - type - type of assembly, either `MAT_FLUSH_ASSEMBLY` or `MAT_FINAL_ASSEMBLY`
5754 
5755   Options Database Keys:
5756 + -mat_view ::ascii_info             - Prints info on matrix at conclusion of `MatAssemblyEnd()`
5757 . -mat_view ::ascii_info_detail      - Prints more detailed info
5758 . -mat_view                          - Prints matrix in ASCII format
5759 . -mat_view ::ascii_matlab           - Prints matrix in MATLAB format
5760 . -mat_view draw                     - draws nonzero structure of matrix, using `MatView()` and `PetscDrawOpenX()`.
5761 . -display <name>                    - Sets display name (default is host)
5762 . -draw_pause <sec>                  - Sets number of seconds to pause after display
5763 . -mat_view socket                   - Sends matrix to socket, can be accessed from MATLAB (See [Using MATLAB with PETSc](ch_matlab))
5764 . -viewer_socket_machine <machine>   - Machine to use for socket
5765 . -viewer_socket_port <port>         - Port number to use for socket
5766 - -mat_view binary:filename[:append] - Save matrix to file in binary format
5767 
5768   Level: beginner
5769 
5770 .seealso: [](ch_matrices), `Mat`, `MatAssemblyBegin()`, `MatSetValues()`, `PetscDrawOpenX()`, `PetscDrawCreate()`, `MatView()`, `MatAssembled()`, `PetscViewerSocketOpen()`
5771 @*/
5772 PetscErrorCode MatAssemblyEnd(Mat mat, MatAssemblyType type)
5773 {
5774   static PetscInt inassm = 0;
5775   PetscBool       flg    = PETSC_FALSE;
5776 
5777   PetscFunctionBegin;
5778   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5779   PetscValidType(mat, 1);
5780 
5781   inassm++;
5782   MatAssemblyEnd_InUse++;
5783   if (MatAssemblyEnd_InUse == 1) { /* Do the logging only the first time through */
5784     PetscCall(PetscLogEventBegin(MAT_AssemblyEnd, mat, 0, 0, 0));
5785     PetscTryTypeMethod(mat, assemblyend, type);
5786     PetscCall(PetscLogEventEnd(MAT_AssemblyEnd, mat, 0, 0, 0));
5787   } else PetscTryTypeMethod(mat, assemblyend, type);
5788 
5789   /* Flush assembly is not a true assembly */
5790   if (type != MAT_FLUSH_ASSEMBLY) {
5791     if (mat->num_ass) {
5792       if (!mat->symmetry_eternal) {
5793         mat->symmetric = PETSC_BOOL3_UNKNOWN;
5794         mat->hermitian = PETSC_BOOL3_UNKNOWN;
5795       }
5796       if (!mat->structural_symmetry_eternal && mat->ass_nonzerostate != mat->nonzerostate) mat->structurally_symmetric = PETSC_BOOL3_UNKNOWN;
5797       if (!mat->spd_eternal) mat->spd = PETSC_BOOL3_UNKNOWN;
5798     }
5799     mat->num_ass++;
5800     mat->assembled        = PETSC_TRUE;
5801     mat->ass_nonzerostate = mat->nonzerostate;
5802   }
5803 
5804   mat->insertmode = NOT_SET_VALUES;
5805   MatAssemblyEnd_InUse--;
5806   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
5807   if (inassm == 1 && type != MAT_FLUSH_ASSEMBLY) {
5808     PetscCall(MatViewFromOptions(mat, NULL, "-mat_view"));
5809 
5810     if (mat->checksymmetryonassembly) {
5811       PetscCall(MatIsSymmetric(mat, mat->checksymmetrytol, &flg));
5812       if (flg) {
5813         PetscCall(PetscPrintf(PetscObjectComm((PetscObject)mat), "Matrix is symmetric (tolerance %g)\n", (double)mat->checksymmetrytol));
5814       } else {
5815         PetscCall(PetscPrintf(PetscObjectComm((PetscObject)mat), "Matrix is not symmetric (tolerance %g)\n", (double)mat->checksymmetrytol));
5816       }
5817     }
5818     if (mat->nullsp && mat->checknullspaceonassembly) PetscCall(MatNullSpaceTest(mat->nullsp, mat, NULL));
5819   }
5820   inassm--;
5821   PetscFunctionReturn(PETSC_SUCCESS);
5822 }
5823 
5824 // PetscClangLinter pragma disable: -fdoc-section-header-unknown
5825 /*@
5826   MatSetOption - Sets a parameter option for a matrix. Some options
5827   may be specific to certain storage formats.  Some options
5828   determine how values will be inserted (or added). Sorted,
5829   row-oriented input will generally assemble the fastest. The default
5830   is row-oriented.
5831 
5832   Logically Collective for certain operations, such as `MAT_SPD`, not collective for `MAT_ROW_ORIENTED`, see `MatOption`
5833 
5834   Input Parameters:
5835 + mat - the matrix
5836 . op  - the option, one of those listed below (and possibly others),
5837 - flg - turn the option on (`PETSC_TRUE`) or off (`PETSC_FALSE`)
5838 
5839   Options Describing Matrix Structure:
5840 + `MAT_SPD`                         - symmetric positive definite
5841 . `MAT_SYMMETRIC`                   - symmetric in terms of both structure and value
5842 . `MAT_HERMITIAN`                   - transpose is the complex conjugation
5843 . `MAT_STRUCTURALLY_SYMMETRIC`      - symmetric nonzero structure
5844 . `MAT_SYMMETRY_ETERNAL`            - indicates the symmetry (or Hermitian structure) or its absence will persist through any changes to the matrix
5845 . `MAT_STRUCTURAL_SYMMETRY_ETERNAL` - indicates the structural symmetry or its absence will persist through any changes to the matrix
5846 . `MAT_SPD_ETERNAL`                 - indicates the value of `MAT_SPD` (true or false) will persist through any changes to the matrix
5847 
5848    These are not really options of the matrix, they are knowledge about the structure of the matrix that users may provide so that they
5849    do not need to be computed (usually at a high cost)
5850 
5851    Options For Use with `MatSetValues()`:
5852    Insert a logically dense subblock, which can be
5853 . `MAT_ROW_ORIENTED`                - row-oriented (default)
5854 
5855    These options reflect the data you pass in with `MatSetValues()`; it has
5856    nothing to do with how the data is stored internally in the matrix
5857    data structure.
5858 
5859    When (re)assembling a matrix, we can restrict the input for
5860    efficiency/debugging purposes.  These options include
5861 . `MAT_NEW_NONZERO_LOCATIONS`       - additional insertions will be allowed if they generate a new nonzero (slow)
5862 . `MAT_FORCE_DIAGONAL_ENTRIES`      - forces diagonal entries to be allocated
5863 . `MAT_IGNORE_OFF_PROC_ENTRIES`     - drops off-processor entries
5864 . `MAT_NEW_NONZERO_LOCATION_ERR`    - generates an error for new matrix entry
5865 . `MAT_USE_HASH_TABLE`              - uses a hash table to speed up matrix assembly
5866 . `MAT_NO_OFF_PROC_ENTRIES`         - you know each process will only set values for its own rows, will generate an error if
5867         any process sets values for another process. This avoids all reductions in the MatAssembly routines and thus improves
5868         performance for very large process counts.
5869 - `MAT_SUBSET_OFF_PROC_ENTRIES`     - you know that the first assembly after setting this flag will set a superset
5870         of the off-process entries required for all subsequent assemblies. This avoids a rendezvous step in the MatAssembly
5871         functions, instead sending only neighbor messages.
5872 
5873   Level: intermediate
5874 
5875   Notes:
5876   Except for `MAT_UNUSED_NONZERO_LOCATION_ERR` and  `MAT_ROW_ORIENTED` all processes that share the matrix must pass the same value in flg!
5877 
5878   Some options are relevant only for particular matrix types and
5879   are thus ignored by others.  Other options are not supported by
5880   certain matrix types and will generate an error message if set.
5881 
5882   If using Fortran to compute a matrix, one may need to
5883   use the column-oriented option (or convert to the row-oriented
5884   format).
5885 
5886   `MAT_NEW_NONZERO_LOCATIONS` set to `PETSC_FALSE` indicates that any add or insertion
5887   that would generate a new entry in the nonzero structure is instead
5888   ignored.  Thus, if memory has not already been allocated for this particular
5889   data, then the insertion is ignored. For dense matrices, in which
5890   the entire array is allocated, no entries are ever ignored.
5891   Set after the first `MatAssemblyEnd()`. If this option is set then the `MatAssemblyBegin()`/`MatAssemblyEnd()` processes has one less global reduction
5892 
5893   `MAT_NEW_NONZERO_LOCATION_ERR` set to PETSC_TRUE indicates that any add or insertion
5894   that would generate a new entry in the nonzero structure instead produces
5895   an error. (Currently supported for `MATAIJ` and `MATBAIJ` formats only.) If this option is set then the `MatAssemblyBegin()`/`MatAssemblyEnd()` processes has one less global reduction
5896 
5897   `MAT_NEW_NONZERO_ALLOCATION_ERR` set to `PETSC_TRUE` indicates that any add or insertion
5898   that would generate a new entry that has not been preallocated will
5899   instead produce an error. (Currently supported for `MATAIJ` and `MATBAIJ` formats
5900   only.) This is a useful flag when debugging matrix memory preallocation.
5901   If this option is set then the `MatAssemblyBegin()`/`MatAssemblyEnd()` processes has one less global reduction
5902 
5903   `MAT_IGNORE_OFF_PROC_ENTRIES` set to `PETSC_TRUE` indicates entries destined for
5904   other processors should be dropped, rather than stashed.
5905   This is useful if you know that the "owning" processor is also
5906   always generating the correct matrix entries, so that PETSc need
5907   not transfer duplicate entries generated on another processor.
5908 
5909   `MAT_USE_HASH_TABLE` indicates that a hash table be used to improve the
5910   searches during matrix assembly. When this flag is set, the hash table
5911   is created during the first matrix assembly. This hash table is
5912   used the next time through, during `MatSetValues()`/`MatSetValuesBlocked()`
5913   to improve the searching of indices. `MAT_NEW_NONZERO_LOCATIONS` flag
5914   should be used with `MAT_USE_HASH_TABLE` flag. This option is currently
5915   supported by `MATMPIBAIJ` format only.
5916 
5917   `MAT_KEEP_NONZERO_PATTERN` indicates when `MatZeroRows()` is called the zeroed entries
5918   are kept in the nonzero structure
5919 
5920   `MAT_IGNORE_ZERO_ENTRIES` - for `MATAIJ` and `MATIS` matrices this will stop zero values from creating
5921   a zero location in the matrix
5922 
5923   `MAT_USE_INODES` - indicates using inode version of the code - works with `MATAIJ` matrix types
5924 
5925   `MAT_NO_OFF_PROC_ZERO_ROWS` - you know each process will only zero its own rows. This avoids all reductions in the
5926   zero row routines and thus improves performance for very large process counts.
5927 
5928   `MAT_IGNORE_LOWER_TRIANGULAR` - For `MATSBAIJ` matrices will ignore any insertions you make in the lower triangular
5929   part of the matrix (since they should match the upper triangular part).
5930 
5931   `MAT_SORTED_FULL` - each process provides exactly its local rows; all column indices for a given row are passed in a
5932   single call to `MatSetValues()`, preallocation is perfect, row oriented, `INSERT_VALUES` is used. Common
5933   with finite difference schemes with non-periodic boundary conditions.
5934 
5935   Developer Note:
5936   `MAT_SYMMETRY_ETERNAL`, `MAT_STRUCTURAL_SYMMETRY_ETERNAL`, and `MAT_SPD_ETERNAL` are used by `MatAssemblyEnd()` and in other
5937   places where otherwise the value of `MAT_SYMMETRIC`, `MAT_STRUCTURALLY_SYMMETRIC` or `MAT_SPD` would need to be changed back
5938   to `PETSC_BOOL3_UNKNOWN` because the matrix values had changed so the code cannot be certain that the related property had
5939   not changed.
5940 
5941 .seealso: [](ch_matrices), `MatOption`, `Mat`, `MatGetOption()`
5942 @*/
5943 PetscErrorCode MatSetOption(Mat mat, MatOption op, PetscBool flg)
5944 {
5945   PetscFunctionBegin;
5946   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
5947   if (op > 0) {
5948     PetscValidLogicalCollectiveEnum(mat, op, 2);
5949     PetscValidLogicalCollectiveBool(mat, flg, 3);
5950   }
5951 
5952   PetscCheck(((int)op) > MAT_OPTION_MIN && ((int)op) < MAT_OPTION_MAX, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "Options %d is out of range", (int)op);
5953 
5954   switch (op) {
5955   case MAT_FORCE_DIAGONAL_ENTRIES:
5956     mat->force_diagonals = flg;
5957     PetscFunctionReturn(PETSC_SUCCESS);
5958   case MAT_NO_OFF_PROC_ENTRIES:
5959     mat->nooffprocentries = flg;
5960     PetscFunctionReturn(PETSC_SUCCESS);
5961   case MAT_SUBSET_OFF_PROC_ENTRIES:
5962     mat->assembly_subset = flg;
5963     if (!mat->assembly_subset) { /* See the same logic in VecAssembly wrt VEC_SUBSET_OFF_PROC_ENTRIES */
5964 #if !defined(PETSC_HAVE_MPIUNI)
5965       PetscCall(MatStashScatterDestroy_BTS(&mat->stash));
5966 #endif
5967       mat->stash.first_assembly_done = PETSC_FALSE;
5968     }
5969     PetscFunctionReturn(PETSC_SUCCESS);
5970   case MAT_NO_OFF_PROC_ZERO_ROWS:
5971     mat->nooffproczerorows = flg;
5972     PetscFunctionReturn(PETSC_SUCCESS);
5973   case MAT_SPD:
5974     if (flg) {
5975       mat->spd                    = PETSC_BOOL3_TRUE;
5976       mat->symmetric              = PETSC_BOOL3_TRUE;
5977       mat->structurally_symmetric = PETSC_BOOL3_TRUE;
5978     } else {
5979       mat->spd = PETSC_BOOL3_FALSE;
5980     }
5981     break;
5982   case MAT_SYMMETRIC:
5983     mat->symmetric = flg ? PETSC_BOOL3_TRUE : PETSC_BOOL3_FALSE;
5984     if (flg) mat->structurally_symmetric = PETSC_BOOL3_TRUE;
5985 #if !defined(PETSC_USE_COMPLEX)
5986     mat->hermitian = flg ? PETSC_BOOL3_TRUE : PETSC_BOOL3_FALSE;
5987 #endif
5988     break;
5989   case MAT_HERMITIAN:
5990     mat->hermitian = flg ? PETSC_BOOL3_TRUE : PETSC_BOOL3_FALSE;
5991     if (flg) mat->structurally_symmetric = PETSC_BOOL3_TRUE;
5992 #if !defined(PETSC_USE_COMPLEX)
5993     mat->symmetric = flg ? PETSC_BOOL3_TRUE : PETSC_BOOL3_FALSE;
5994 #endif
5995     break;
5996   case MAT_STRUCTURALLY_SYMMETRIC:
5997     mat->structurally_symmetric = flg ? PETSC_BOOL3_TRUE : PETSC_BOOL3_FALSE;
5998     break;
5999   case MAT_SYMMETRY_ETERNAL:
6000     PetscCheck(mat->symmetric != PETSC_BOOL3_UNKNOWN, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Cannot set MAT_SYMMETRY_ETERNAL without first setting MAT_SYMMETRIC to true or false");
6001     mat->symmetry_eternal = flg;
6002     if (flg) mat->structural_symmetry_eternal = PETSC_TRUE;
6003     break;
6004   case MAT_STRUCTURAL_SYMMETRY_ETERNAL:
6005     PetscCheck(mat->structurally_symmetric != PETSC_BOOL3_UNKNOWN, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Cannot set MAT_STRUCTURAL_SYMMETRY_ETERNAL without first setting MAT_STRUCTURALLY_SYMMETRIC to true or false");
6006     mat->structural_symmetry_eternal = flg;
6007     break;
6008   case MAT_SPD_ETERNAL:
6009     PetscCheck(mat->spd != PETSC_BOOL3_UNKNOWN, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Cannot set MAT_SPD_ETERNAL without first setting MAT_SPD to true or false");
6010     mat->spd_eternal = flg;
6011     if (flg) {
6012       mat->structural_symmetry_eternal = PETSC_TRUE;
6013       mat->symmetry_eternal            = PETSC_TRUE;
6014     }
6015     break;
6016   case MAT_STRUCTURE_ONLY:
6017     mat->structure_only = flg;
6018     break;
6019   case MAT_SORTED_FULL:
6020     mat->sortedfull = flg;
6021     break;
6022   default:
6023     break;
6024   }
6025   PetscTryTypeMethod(mat, setoption, op, flg);
6026   PetscFunctionReturn(PETSC_SUCCESS);
6027 }
6028 
6029 /*@
6030   MatGetOption - Gets a parameter option that has been set for a matrix.
6031 
6032   Logically Collective
6033 
6034   Input Parameters:
6035 + mat - the matrix
6036 - op  - the option, this only responds to certain options, check the code for which ones
6037 
6038   Output Parameter:
6039 . flg - turn the option on (`PETSC_TRUE`) or off (`PETSC_FALSE`)
6040 
6041   Level: intermediate
6042 
6043   Notes:
6044   Can only be called after `MatSetSizes()` and `MatSetType()` have been set.
6045 
6046   Certain option values may be unknown, for those use the routines `MatIsSymmetric()`, `MatIsHermitian()`, `MatIsStructurallySymmetric()`, or
6047   `MatIsSymmetricKnown()`, `MatIsHermitianKnown()`, `MatIsStructurallySymmetricKnown()`
6048 
6049 .seealso: [](ch_matrices), `Mat`, `MatOption`, `MatSetOption()`, `MatIsSymmetric()`, `MatIsHermitian()`, `MatIsStructurallySymmetric()`,
6050     `MatIsSymmetricKnown()`, `MatIsHermitianKnown()`, `MatIsStructurallySymmetricKnown()`
6051 @*/
6052 PetscErrorCode MatGetOption(Mat mat, MatOption op, PetscBool *flg)
6053 {
6054   PetscFunctionBegin;
6055   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6056   PetscValidType(mat, 1);
6057 
6058   PetscCheck(((int)op) > MAT_OPTION_MIN && ((int)op) < MAT_OPTION_MAX, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "Options %d is out of range", (int)op);
6059   PetscCheck(((PetscObject)mat)->type_name, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_TYPENOTSET, "Cannot get options until type and size have been set, see MatSetType() and MatSetSizes()");
6060 
6061   switch (op) {
6062   case MAT_NO_OFF_PROC_ENTRIES:
6063     *flg = mat->nooffprocentries;
6064     break;
6065   case MAT_NO_OFF_PROC_ZERO_ROWS:
6066     *flg = mat->nooffproczerorows;
6067     break;
6068   case MAT_SYMMETRIC:
6069     SETERRQ(PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Use MatIsSymmetric() or MatIsSymmetricKnown()");
6070     break;
6071   case MAT_HERMITIAN:
6072     SETERRQ(PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Use MatIsHermitian() or MatIsHermitianKnown()");
6073     break;
6074   case MAT_STRUCTURALLY_SYMMETRIC:
6075     SETERRQ(PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Use MatIsStructurallySymmetric() or MatIsStructurallySymmetricKnown()");
6076     break;
6077   case MAT_SPD:
6078     SETERRQ(PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "Use MatIsSPDKnown()");
6079     break;
6080   case MAT_SYMMETRY_ETERNAL:
6081     *flg = mat->symmetry_eternal;
6082     break;
6083   case MAT_STRUCTURAL_SYMMETRY_ETERNAL:
6084     *flg = mat->symmetry_eternal;
6085     break;
6086   default:
6087     break;
6088   }
6089   PetscFunctionReturn(PETSC_SUCCESS);
6090 }
6091 
6092 /*@
6093   MatZeroEntries - Zeros all entries of a matrix.  For sparse matrices
6094   this routine retains the old nonzero structure.
6095 
6096   Logically Collective
6097 
6098   Input Parameter:
6099 . mat - the matrix
6100 
6101   Level: intermediate
6102 
6103   Note:
6104   If the matrix was not preallocated then a default, likely poor preallocation will be set in the matrix, so this should be called after the preallocation phase.
6105   See the Performance chapter of the users manual for information on preallocating matrices.
6106 
6107 .seealso: [](ch_matrices), `Mat`, `MatZeroRows()`, `MatZeroRowsColumns()`
6108 @*/
6109 PetscErrorCode MatZeroEntries(Mat mat)
6110 {
6111   PetscFunctionBegin;
6112   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6113   PetscValidType(mat, 1);
6114   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6115   PetscCheck(mat->insertmode == NOT_SET_VALUES, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for matrices where you have set values but not yet assembled");
6116   MatCheckPreallocated(mat, 1);
6117 
6118   PetscCall(PetscLogEventBegin(MAT_ZeroEntries, mat, 0, 0, 0));
6119   PetscUseTypeMethod(mat, zeroentries);
6120   PetscCall(PetscLogEventEnd(MAT_ZeroEntries, mat, 0, 0, 0));
6121   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
6122   PetscFunctionReturn(PETSC_SUCCESS);
6123 }
6124 
6125 /*@
6126   MatZeroRowsColumns - Zeros all entries (except possibly the main diagonal)
6127   of a set of rows and columns of a matrix.
6128 
6129   Collective
6130 
6131   Input Parameters:
6132 + mat     - the matrix
6133 . numRows - the number of rows/columns to zero
6134 . rows    - the global row indices
6135 . diag    - value put in the diagonal of the eliminated rows
6136 . x       - optional vector of the solution for zeroed rows (other entries in vector are not used), these must be set before this call
6137 - b       - optional vector of the right hand side, that will be adjusted by provided solution entries
6138 
6139   Level: intermediate
6140 
6141   Notes:
6142   This routine, along with `MatZeroRows()`, is typically used to eliminate known Dirichlet boundary conditions from a linear system.
6143 
6144   For each zeroed row, the value of the corresponding `b` is set to diag times the value of the corresponding `x`.
6145   The other entries of `b` will be adjusted by the known values of `x` times the corresponding matrix entries in the columns that are being eliminated
6146 
6147   If the resulting linear system is to be solved with `KSP` then one can (but does not have to) call `KSPSetInitialGuessNonzero()` to allow the
6148   Krylov method to take advantage of the known solution on the zeroed rows.
6149 
6150   For the parallel case, all processes that share the matrix (i.e.,
6151   those in the communicator used for matrix creation) MUST call this
6152   routine, regardless of whether any rows being zeroed are owned by
6153   them.
6154 
6155   Unlike `MatZeroRows()` this does not change the nonzero structure of the matrix, it merely zeros those entries in the matrix.
6156 
6157   Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to
6158   list only rows local to itself).
6159 
6160   The option `MAT_NO_OFF_PROC_ZERO_ROWS` does not apply to this routine.
6161 
6162 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRows()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6163           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`
6164 @*/
6165 PetscErrorCode MatZeroRowsColumns(Mat mat, PetscInt numRows, const PetscInt rows[], PetscScalar diag, Vec x, Vec b)
6166 {
6167   PetscFunctionBegin;
6168   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6169   PetscValidType(mat, 1);
6170   if (numRows) PetscAssertPointer(rows, 3);
6171   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
6172   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6173   MatCheckPreallocated(mat, 1);
6174 
6175   PetscUseTypeMethod(mat, zerorowscolumns, numRows, rows, diag, x, b);
6176   PetscCall(MatViewFromOptions(mat, NULL, "-mat_view"));
6177   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
6178   PetscFunctionReturn(PETSC_SUCCESS);
6179 }
6180 
6181 /*@
6182   MatZeroRowsColumnsIS - Zeros all entries (except possibly the main diagonal)
6183   of a set of rows and columns of a matrix.
6184 
6185   Collective
6186 
6187   Input Parameters:
6188 + mat  - the matrix
6189 . is   - the rows to zero
6190 . diag - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry)
6191 . x    - optional vector of solutions for zeroed rows (other entries in vector are not used)
6192 - b    - optional vector of right hand side, that will be adjusted by provided solution
6193 
6194   Level: intermediate
6195 
6196   Note:
6197   See `MatZeroRowsColumns()` for details on how this routine operates.
6198 
6199 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6200           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRows()`, `MatZeroRowsColumnsStencil()`
6201 @*/
6202 PetscErrorCode MatZeroRowsColumnsIS(Mat mat, IS is, PetscScalar diag, Vec x, Vec b)
6203 {
6204   PetscInt        numRows;
6205   const PetscInt *rows;
6206 
6207   PetscFunctionBegin;
6208   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6209   PetscValidHeaderSpecific(is, IS_CLASSID, 2);
6210   PetscValidType(mat, 1);
6211   PetscValidType(is, 2);
6212   PetscCall(ISGetLocalSize(is, &numRows));
6213   PetscCall(ISGetIndices(is, &rows));
6214   PetscCall(MatZeroRowsColumns(mat, numRows, rows, diag, x, b));
6215   PetscCall(ISRestoreIndices(is, &rows));
6216   PetscFunctionReturn(PETSC_SUCCESS);
6217 }
6218 
6219 /*@
6220   MatZeroRows - Zeros all entries (except possibly the main diagonal)
6221   of a set of rows of a matrix.
6222 
6223   Collective
6224 
6225   Input Parameters:
6226 + mat     - the matrix
6227 . numRows - the number of rows to zero
6228 . rows    - the global row indices
6229 . diag    - value put in the diagonal of the zeroed rows
6230 . x       - optional vector of solutions for zeroed rows (other entries in vector are not used), these must be set before this call
6231 - b       - optional vector of right hand side, that will be adjusted by provided solution entries
6232 
6233   Level: intermediate
6234 
6235   Notes:
6236   This routine, along with `MatZeroRowsColumns()`, is typically used to eliminate known Dirichlet boundary conditions from a linear system.
6237 
6238   For each zeroed row, the value of the corresponding `b` is set to `diag` times the value of the corresponding `x`.
6239 
6240   If the resulting linear system is to be solved with `KSP` then one can (but does not have to) call `KSPSetInitialGuessNonzero()` to allow the
6241   Krylov method to take advantage of the known solution on the zeroed rows.
6242 
6243   May be followed by using a `PC` of type `PCREDISTRIBUTE` to solve the reduced problem (`PCDISTRIBUTE` completely eliminates the zeroed rows and their corresponding columns)
6244   from the matrix.
6245 
6246   Unlike `MatZeroRowsColumns()` for the `MATAIJ` and `MATBAIJ` matrix formats this removes the old nonzero structure, from the eliminated rows of the matrix
6247   but does not release memory.  Because of this removal matrix-vector products with the adjusted matrix will be a bit faster. For the dense and block diagonal
6248   formats this does not alter the nonzero structure.
6249 
6250   If the option `MatSetOption`(mat,`MAT_KEEP_NONZERO_PATTERN`,`PETSC_TRUE`) the nonzero structure
6251   of the matrix is not changed the values are
6252   merely zeroed.
6253 
6254   The user can set a value in the diagonal entry (or for the `MATAIJ` format
6255   formats can optionally remove the main diagonal entry from the
6256   nonzero structure as well, by passing 0.0 as the final argument).
6257 
6258   For the parallel case, all processes that share the matrix (i.e.,
6259   those in the communicator used for matrix creation) MUST call this
6260   routine, regardless of whether any rows being zeroed are owned by
6261   them.
6262 
6263   Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to
6264   list only rows local to itself).
6265 
6266   You can call `MatSetOption`(mat,`MAT_NO_OFF_PROC_ZERO_ROWS`,`PETSC_TRUE`) if each process indicates only rows it
6267   owns that are to be zeroed. This saves a global synchronization in the implementation.
6268 
6269 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6270           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`, `PCREDISTRIBUTE`
6271 @*/
6272 PetscErrorCode MatZeroRows(Mat mat, PetscInt numRows, const PetscInt rows[], PetscScalar diag, Vec x, Vec b)
6273 {
6274   PetscFunctionBegin;
6275   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6276   PetscValidType(mat, 1);
6277   if (numRows) PetscAssertPointer(rows, 3);
6278   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
6279   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6280   MatCheckPreallocated(mat, 1);
6281 
6282   PetscUseTypeMethod(mat, zerorows, numRows, rows, diag, x, b);
6283   PetscCall(MatViewFromOptions(mat, NULL, "-mat_view"));
6284   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
6285   PetscFunctionReturn(PETSC_SUCCESS);
6286 }
6287 
6288 /*@
6289   MatZeroRowsIS - Zeros all entries (except possibly the main diagonal)
6290   of a set of rows of a matrix.
6291 
6292   Collective
6293 
6294   Input Parameters:
6295 + mat  - the matrix
6296 . is   - index set of rows to remove (if `NULL` then no row is removed)
6297 . diag - value put in all diagonals of eliminated rows
6298 . x    - optional vector of solutions for zeroed rows (other entries in vector are not used)
6299 - b    - optional vector of right hand side, that will be adjusted by provided solution
6300 
6301   Level: intermediate
6302 
6303   Note:
6304   See `MatZeroRows()` for details on how this routine operates.
6305 
6306 .seealso: [](ch_matrices), `Mat`, `MatZeroRows()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6307           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`
6308 @*/
6309 PetscErrorCode MatZeroRowsIS(Mat mat, IS is, PetscScalar diag, Vec x, Vec b)
6310 {
6311   PetscInt        numRows = 0;
6312   const PetscInt *rows    = NULL;
6313 
6314   PetscFunctionBegin;
6315   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6316   PetscValidType(mat, 1);
6317   if (is) {
6318     PetscValidHeaderSpecific(is, IS_CLASSID, 2);
6319     PetscCall(ISGetLocalSize(is, &numRows));
6320     PetscCall(ISGetIndices(is, &rows));
6321   }
6322   PetscCall(MatZeroRows(mat, numRows, rows, diag, x, b));
6323   if (is) PetscCall(ISRestoreIndices(is, &rows));
6324   PetscFunctionReturn(PETSC_SUCCESS);
6325 }
6326 
6327 /*@
6328   MatZeroRowsStencil - Zeros all entries (except possibly the main diagonal)
6329   of a set of rows of a matrix. These rows must be local to the process.
6330 
6331   Collective
6332 
6333   Input Parameters:
6334 + mat     - the matrix
6335 . numRows - the number of rows to remove
6336 . rows    - the grid coordinates (and component number when dof > 1) for matrix rows
6337 . diag    - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry)
6338 . x       - optional vector of solutions for zeroed rows (other entries in vector are not used)
6339 - b       - optional vector of right hand side, that will be adjusted by provided solution
6340 
6341   Level: intermediate
6342 
6343   Notes:
6344   See `MatZeroRows()` for details on how this routine operates.
6345 
6346   The grid coordinates are across the entire grid, not just the local portion
6347 
6348   For periodic boundary conditions use negative indices for values to the left (below 0; that are to be
6349   obtained by wrapping values from right edge). For values to the right of the last entry using that index plus one
6350   etc to obtain values that obtained by wrapping the values from the left edge. This does not work for anything but the
6351   `DM_BOUNDARY_PERIODIC` boundary type.
6352 
6353   For indices that don't mean anything for your case (like the k index when working in 2d) or the c index when you have
6354   a single value per point) you can skip filling those indices.
6355 
6356   Fortran Note:
6357   `idxm` and `idxn` should be declared as
6358 $     MatStencil idxm(4, m)
6359   and the values inserted using
6360 .vb
6361     idxm(MatStencil_i, 1) = i
6362     idxm(MatStencil_j, 1) = j
6363     idxm(MatStencil_k, 1) = k
6364     idxm(MatStencil_c, 1) = c
6365    etc
6366 .ve
6367 
6368 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsl()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6369           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`
6370 @*/
6371 PetscErrorCode MatZeroRowsStencil(Mat mat, PetscInt numRows, const MatStencil rows[], PetscScalar diag, Vec x, Vec b)
6372 {
6373   PetscInt  dim    = mat->stencil.dim;
6374   PetscInt  sdim   = dim - (1 - (PetscInt)mat->stencil.noc);
6375   PetscInt *dims   = mat->stencil.dims + 1;
6376   PetscInt *starts = mat->stencil.starts;
6377   PetscInt *dxm    = (PetscInt *)rows;
6378   PetscInt *jdxm, i, j, tmp, numNewRows = 0;
6379 
6380   PetscFunctionBegin;
6381   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6382   PetscValidType(mat, 1);
6383   if (numRows) PetscAssertPointer(rows, 3);
6384 
6385   PetscCall(PetscMalloc1(numRows, &jdxm));
6386   for (i = 0; i < numRows; ++i) {
6387     /* Skip unused dimensions (they are ordered k, j, i, c) */
6388     for (j = 0; j < 3 - sdim; ++j) dxm++;
6389     /* Local index in X dir */
6390     tmp = *dxm++ - starts[0];
6391     /* Loop over remaining dimensions */
6392     for (j = 0; j < dim - 1; ++j) {
6393       /* If nonlocal, set index to be negative */
6394       if ((*dxm++ - starts[j + 1]) < 0 || tmp < 0) tmp = PETSC_MIN_INT;
6395       /* Update local index */
6396       else tmp = tmp * dims[j] + *(dxm - 1) - starts[j + 1];
6397     }
6398     /* Skip component slot if necessary */
6399     if (mat->stencil.noc) dxm++;
6400     /* Local row number */
6401     if (tmp >= 0) jdxm[numNewRows++] = tmp;
6402   }
6403   PetscCall(MatZeroRowsLocal(mat, numNewRows, jdxm, diag, x, b));
6404   PetscCall(PetscFree(jdxm));
6405   PetscFunctionReturn(PETSC_SUCCESS);
6406 }
6407 
6408 /*@
6409   MatZeroRowsColumnsStencil - Zeros all row and column entries (except possibly the main diagonal)
6410   of a set of rows and columns of a matrix.
6411 
6412   Collective
6413 
6414   Input Parameters:
6415 + mat     - the matrix
6416 . numRows - the number of rows/columns to remove
6417 . rows    - the grid coordinates (and component number when dof > 1) for matrix rows
6418 . diag    - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry)
6419 . x       - optional vector of solutions for zeroed rows (other entries in vector are not used)
6420 - b       - optional vector of right hand side, that will be adjusted by provided solution
6421 
6422   Level: intermediate
6423 
6424   Notes:
6425   See `MatZeroRowsColumns()` for details on how this routine operates.
6426 
6427   The grid coordinates are across the entire grid, not just the local portion
6428 
6429   For periodic boundary conditions use negative indices for values to the left (below 0; that are to be
6430   obtained by wrapping values from right edge). For values to the right of the last entry using that index plus one
6431   etc to obtain values that obtained by wrapping the values from the left edge. This does not work for anything but the
6432   `DM_BOUNDARY_PERIODIC` boundary type.
6433 
6434   For indices that don't mean anything for your case (like the k index when working in 2d) or the c index when you have
6435   a single value per point) you can skip filling those indices.
6436 
6437   Fortran Note:
6438   `idxm` and `idxn` should be declared as
6439 $     MatStencil idxm(4, m)
6440   and the values inserted using
6441 .vb
6442     idxm(MatStencil_i, 1) = i
6443     idxm(MatStencil_j, 1) = j
6444     idxm(MatStencil_k, 1) = k
6445     idxm(MatStencil_c, 1) = c
6446     etc
6447 .ve
6448 
6449 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6450           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRows()`
6451 @*/
6452 PetscErrorCode MatZeroRowsColumnsStencil(Mat mat, PetscInt numRows, const MatStencil rows[], PetscScalar diag, Vec x, Vec b)
6453 {
6454   PetscInt  dim    = mat->stencil.dim;
6455   PetscInt  sdim   = dim - (1 - (PetscInt)mat->stencil.noc);
6456   PetscInt *dims   = mat->stencil.dims + 1;
6457   PetscInt *starts = mat->stencil.starts;
6458   PetscInt *dxm    = (PetscInt *)rows;
6459   PetscInt *jdxm, i, j, tmp, numNewRows = 0;
6460 
6461   PetscFunctionBegin;
6462   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6463   PetscValidType(mat, 1);
6464   if (numRows) PetscAssertPointer(rows, 3);
6465 
6466   PetscCall(PetscMalloc1(numRows, &jdxm));
6467   for (i = 0; i < numRows; ++i) {
6468     /* Skip unused dimensions (they are ordered k, j, i, c) */
6469     for (j = 0; j < 3 - sdim; ++j) dxm++;
6470     /* Local index in X dir */
6471     tmp = *dxm++ - starts[0];
6472     /* Loop over remaining dimensions */
6473     for (j = 0; j < dim - 1; ++j) {
6474       /* If nonlocal, set index to be negative */
6475       if ((*dxm++ - starts[j + 1]) < 0 || tmp < 0) tmp = PETSC_MIN_INT;
6476       /* Update local index */
6477       else tmp = tmp * dims[j] + *(dxm - 1) - starts[j + 1];
6478     }
6479     /* Skip component slot if necessary */
6480     if (mat->stencil.noc) dxm++;
6481     /* Local row number */
6482     if (tmp >= 0) jdxm[numNewRows++] = tmp;
6483   }
6484   PetscCall(MatZeroRowsColumnsLocal(mat, numNewRows, jdxm, diag, x, b));
6485   PetscCall(PetscFree(jdxm));
6486   PetscFunctionReturn(PETSC_SUCCESS);
6487 }
6488 
6489 /*@C
6490   MatZeroRowsLocal - Zeros all entries (except possibly the main diagonal)
6491   of a set of rows of a matrix; using local numbering of rows.
6492 
6493   Collective
6494 
6495   Input Parameters:
6496 + mat     - the matrix
6497 . numRows - the number of rows to remove
6498 . rows    - the local row indices
6499 . diag    - value put in all diagonals of eliminated rows
6500 . x       - optional vector of solutions for zeroed rows (other entries in vector are not used)
6501 - b       - optional vector of right hand side, that will be adjusted by provided solution
6502 
6503   Level: intermediate
6504 
6505   Notes:
6506   Before calling `MatZeroRowsLocal()`, the user must first set the
6507   local-to-global mapping by calling MatSetLocalToGlobalMapping(), this is often already set for matrices obtained with `DMCreateMatrix()`.
6508 
6509   See `MatZeroRows()` for details on how this routine operates.
6510 
6511 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRows()`, `MatSetOption()`,
6512           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`
6513 @*/
6514 PetscErrorCode MatZeroRowsLocal(Mat mat, PetscInt numRows, const PetscInt rows[], PetscScalar diag, Vec x, Vec b)
6515 {
6516   PetscFunctionBegin;
6517   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6518   PetscValidType(mat, 1);
6519   if (numRows) PetscAssertPointer(rows, 3);
6520   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
6521   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6522   MatCheckPreallocated(mat, 1);
6523 
6524   if (mat->ops->zerorowslocal) {
6525     PetscUseTypeMethod(mat, zerorowslocal, numRows, rows, diag, x, b);
6526   } else {
6527     IS              is, newis;
6528     const PetscInt *newRows;
6529 
6530     PetscCheck(mat->rmap->mapping, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Need to provide local to global mapping to matrix first");
6531     PetscCall(ISCreateGeneral(PETSC_COMM_SELF, numRows, rows, PETSC_COPY_VALUES, &is));
6532     PetscCall(ISLocalToGlobalMappingApplyIS(mat->rmap->mapping, is, &newis));
6533     PetscCall(ISGetIndices(newis, &newRows));
6534     PetscUseTypeMethod(mat, zerorows, numRows, newRows, diag, x, b);
6535     PetscCall(ISRestoreIndices(newis, &newRows));
6536     PetscCall(ISDestroy(&newis));
6537     PetscCall(ISDestroy(&is));
6538   }
6539   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
6540   PetscFunctionReturn(PETSC_SUCCESS);
6541 }
6542 
6543 /*@
6544   MatZeroRowsLocalIS - Zeros all entries (except possibly the main diagonal)
6545   of a set of rows of a matrix; using local numbering of rows.
6546 
6547   Collective
6548 
6549   Input Parameters:
6550 + mat  - the matrix
6551 . is   - index set of rows to remove
6552 . diag - value put in all diagonals of eliminated rows
6553 . x    - optional vector of solutions for zeroed rows (other entries in vector are not used)
6554 - b    - optional vector of right hand side, that will be adjusted by provided solution
6555 
6556   Level: intermediate
6557 
6558   Notes:
6559   Before calling `MatZeroRowsLocalIS()`, the user must first set the
6560   local-to-global mapping by calling `MatSetLocalToGlobalMapping()`, this is often already set for matrices obtained with `DMCreateMatrix()`.
6561 
6562   See `MatZeroRows()` for details on how this routine operates.
6563 
6564 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRows()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6565           `MatZeroRowsColumnsLocal()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`
6566 @*/
6567 PetscErrorCode MatZeroRowsLocalIS(Mat mat, IS is, PetscScalar diag, Vec x, Vec b)
6568 {
6569   PetscInt        numRows;
6570   const PetscInt *rows;
6571 
6572   PetscFunctionBegin;
6573   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6574   PetscValidType(mat, 1);
6575   PetscValidHeaderSpecific(is, IS_CLASSID, 2);
6576   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
6577   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6578   MatCheckPreallocated(mat, 1);
6579 
6580   PetscCall(ISGetLocalSize(is, &numRows));
6581   PetscCall(ISGetIndices(is, &rows));
6582   PetscCall(MatZeroRowsLocal(mat, numRows, rows, diag, x, b));
6583   PetscCall(ISRestoreIndices(is, &rows));
6584   PetscFunctionReturn(PETSC_SUCCESS);
6585 }
6586 
6587 /*@
6588   MatZeroRowsColumnsLocal - Zeros all entries (except possibly the main diagonal)
6589   of a set of rows and columns of a matrix; using local numbering of rows.
6590 
6591   Collective
6592 
6593   Input Parameters:
6594 + mat     - the matrix
6595 . numRows - the number of rows to remove
6596 . rows    - the global row indices
6597 . diag    - value put in all diagonals of eliminated rows
6598 . x       - optional vector of solutions for zeroed rows (other entries in vector are not used)
6599 - b       - optional vector of right hand side, that will be adjusted by provided solution
6600 
6601   Level: intermediate
6602 
6603   Notes:
6604   Before calling `MatZeroRowsColumnsLocal()`, the user must first set the
6605   local-to-global mapping by calling `MatSetLocalToGlobalMapping()`, this is often already set for matrices obtained with `DMCreateMatrix()`.
6606 
6607   See `MatZeroRowsColumns()` for details on how this routine operates.
6608 
6609 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6610           `MatZeroRows()`, `MatZeroRowsColumnsLocalIS()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`
6611 @*/
6612 PetscErrorCode MatZeroRowsColumnsLocal(Mat mat, PetscInt numRows, const PetscInt rows[], PetscScalar diag, Vec x, Vec b)
6613 {
6614   IS              is, newis;
6615   const PetscInt *newRows;
6616 
6617   PetscFunctionBegin;
6618   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6619   PetscValidType(mat, 1);
6620   if (numRows) PetscAssertPointer(rows, 3);
6621   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
6622   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6623   MatCheckPreallocated(mat, 1);
6624 
6625   PetscCheck(mat->cmap->mapping, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Need to provide local to global mapping to matrix first");
6626   PetscCall(ISCreateGeneral(PETSC_COMM_SELF, numRows, rows, PETSC_COPY_VALUES, &is));
6627   PetscCall(ISLocalToGlobalMappingApplyIS(mat->cmap->mapping, is, &newis));
6628   PetscCall(ISGetIndices(newis, &newRows));
6629   PetscUseTypeMethod(mat, zerorowscolumns, numRows, newRows, diag, x, b);
6630   PetscCall(ISRestoreIndices(newis, &newRows));
6631   PetscCall(ISDestroy(&newis));
6632   PetscCall(ISDestroy(&is));
6633   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
6634   PetscFunctionReturn(PETSC_SUCCESS);
6635 }
6636 
6637 /*@
6638   MatZeroRowsColumnsLocalIS - Zeros all entries (except possibly the main diagonal)
6639   of a set of rows and columns of a matrix; using local numbering of rows.
6640 
6641   Collective
6642 
6643   Input Parameters:
6644 + mat  - the matrix
6645 . is   - index set of rows to remove
6646 . diag - value put in all diagonals of eliminated rows
6647 . x    - optional vector of solutions for zeroed rows (other entries in vector are not used)
6648 - b    - optional vector of right hand side, that will be adjusted by provided solution
6649 
6650   Level: intermediate
6651 
6652   Notes:
6653   Before calling `MatZeroRowsColumnsLocalIS()`, the user must first set the
6654   local-to-global mapping by calling `MatSetLocalToGlobalMapping()`, this is often already set for matrices obtained with `DMCreateMatrix()`.
6655 
6656   See `MatZeroRowsColumns()` for details on how this routine operates.
6657 
6658 .seealso: [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
6659           `MatZeroRowsColumnsLocal()`, `MatZeroRows()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`
6660 @*/
6661 PetscErrorCode MatZeroRowsColumnsLocalIS(Mat mat, IS is, PetscScalar diag, Vec x, Vec b)
6662 {
6663   PetscInt        numRows;
6664   const PetscInt *rows;
6665 
6666   PetscFunctionBegin;
6667   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6668   PetscValidType(mat, 1);
6669   PetscValidHeaderSpecific(is, IS_CLASSID, 2);
6670   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
6671   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6672   MatCheckPreallocated(mat, 1);
6673 
6674   PetscCall(ISGetLocalSize(is, &numRows));
6675   PetscCall(ISGetIndices(is, &rows));
6676   PetscCall(MatZeroRowsColumnsLocal(mat, numRows, rows, diag, x, b));
6677   PetscCall(ISRestoreIndices(is, &rows));
6678   PetscFunctionReturn(PETSC_SUCCESS);
6679 }
6680 
6681 /*@C
6682   MatGetSize - Returns the numbers of rows and columns in a matrix.
6683 
6684   Not Collective
6685 
6686   Input Parameter:
6687 . mat - the matrix
6688 
6689   Output Parameters:
6690 + m - the number of global rows
6691 - n - the number of global columns
6692 
6693   Level: beginner
6694 
6695   Note:
6696   Both output parameters can be `NULL` on input.
6697 
6698 .seealso: [](ch_matrices), `Mat`, `MatSetSizes()`, `MatGetLocalSize()`
6699 @*/
6700 PetscErrorCode MatGetSize(Mat mat, PetscInt *m, PetscInt *n)
6701 {
6702   PetscFunctionBegin;
6703   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6704   if (m) *m = mat->rmap->N;
6705   if (n) *n = mat->cmap->N;
6706   PetscFunctionReturn(PETSC_SUCCESS);
6707 }
6708 
6709 /*@C
6710   MatGetLocalSize - For most matrix formats, excluding `MATELEMENTAL` and `MATSCALAPACK`, Returns the number of local rows and local columns
6711   of a matrix. For all matrices this is the local size of the left and right vectors as returned by `MatCreateVecs()`.
6712 
6713   Not Collective
6714 
6715   Input Parameter:
6716 . mat - the matrix
6717 
6718   Output Parameters:
6719 + m - the number of local rows, use `NULL` to not obtain this value
6720 - n - the number of local columns, use `NULL` to not obtain this value
6721 
6722   Level: beginner
6723 
6724 .seealso: [](ch_matrices), `Mat`, `MatSetSizes()`, `MatGetSize()`
6725 @*/
6726 PetscErrorCode MatGetLocalSize(Mat mat, PetscInt *m, PetscInt *n)
6727 {
6728   PetscFunctionBegin;
6729   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6730   if (m) PetscAssertPointer(m, 2);
6731   if (n) PetscAssertPointer(n, 3);
6732   if (m) *m = mat->rmap->n;
6733   if (n) *n = mat->cmap->n;
6734   PetscFunctionReturn(PETSC_SUCCESS);
6735 }
6736 
6737 /*@C
6738   MatGetOwnershipRangeColumn - Returns the range of matrix columns associated with rows of a
6739   vector one multiplies this matrix by that are owned by this processor.
6740 
6741   Not Collective, unless matrix has not been allocated, then collective
6742 
6743   Input Parameter:
6744 . mat - the matrix
6745 
6746   Output Parameters:
6747 + m - the global index of the first local column, use `NULL` to not obtain this value
6748 - n - one more than the global index of the last local column, use `NULL` to not obtain this value
6749 
6750   Level: developer
6751 
6752   Note:
6753   Returns the columns of the "diagonal block" for most sparse matrix formats. See [Matrix
6754   Layouts](sec_matlayout) for details on matrix layouts.
6755 
6756 .seealso: [](ch_matrices), `Mat`, `MatGetOwnershipRange()`, `MatGetOwnershipRanges()`, `MatGetOwnershipRangesColumn()`, `PetscLayout`
6757 @*/
6758 PetscErrorCode MatGetOwnershipRangeColumn(Mat mat, PetscInt *m, PetscInt *n)
6759 {
6760   PetscFunctionBegin;
6761   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6762   PetscValidType(mat, 1);
6763   if (m) PetscAssertPointer(m, 2);
6764   if (n) PetscAssertPointer(n, 3);
6765   MatCheckPreallocated(mat, 1);
6766   if (m) *m = mat->cmap->rstart;
6767   if (n) *n = mat->cmap->rend;
6768   PetscFunctionReturn(PETSC_SUCCESS);
6769 }
6770 
6771 /*@C
6772   MatGetOwnershipRange - For matrices that own values by row, excludes `MATELEMENTAL` and `MATSCALAPACK`, returns the range of matrix rows owned by
6773   this MPI process.
6774 
6775   Not Collective
6776 
6777   Input Parameter:
6778 . mat - the matrix
6779 
6780   Output Parameters:
6781 + m - the global index of the first local row, use `NULL` to not obtain this value
6782 - n - one more than the global index of the last local row, use `NULL` to not obtain this value
6783 
6784   Level: beginner
6785 
6786   Note:
6787   For all matrices  it returns the range of matrix rows associated with rows of a vector that
6788   would contain the result of a matrix vector product with this matrix. See [Matrix
6789   Layouts](sec_matlayout) for details on matrix layouts.
6790 
6791 .seealso: [](ch_matrices), `Mat`, `MatGetOwnershipRanges()`, `MatGetOwnershipRangeColumn()`, `MatGetOwnershipRangesColumn()`, `PetscSplitOwnership()`, `PetscSplitOwnershipBlock()`,
6792           `PetscLayout`
6793 @*/
6794 PetscErrorCode MatGetOwnershipRange(Mat mat, PetscInt *m, PetscInt *n)
6795 {
6796   PetscFunctionBegin;
6797   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6798   PetscValidType(mat, 1);
6799   if (m) PetscAssertPointer(m, 2);
6800   if (n) PetscAssertPointer(n, 3);
6801   MatCheckPreallocated(mat, 1);
6802   if (m) *m = mat->rmap->rstart;
6803   if (n) *n = mat->rmap->rend;
6804   PetscFunctionReturn(PETSC_SUCCESS);
6805 }
6806 
6807 /*@C
6808   MatGetOwnershipRanges - For matrices that own values by row, excludes `MATELEMENTAL` and
6809   `MATSCALAPACK`, returns the range of matrix rows owned by each process.
6810 
6811   Not Collective, unless matrix has not been allocated
6812 
6813   Input Parameter:
6814 . mat - the matrix
6815 
6816   Output Parameter:
6817 . ranges - start of each processors portion plus one more than the total length at the end
6818 
6819   Level: beginner
6820 
6821   Note:
6822   For all matrices  it returns the ranges of matrix rows associated with rows of a vector that
6823   would contain the result of a matrix vector product with this matrix. See [Matrix
6824   Layouts](sec_matlayout) for details on matrix layouts.
6825 
6826 .seealso: [](ch_matrices), `Mat`, `MatGetOwnershipRange()`, `MatGetOwnershipRangeColumn()`, `MatGetOwnershipRangesColumn()`, `PetscLayout`
6827 @*/
6828 PetscErrorCode MatGetOwnershipRanges(Mat mat, const PetscInt **ranges)
6829 {
6830   PetscFunctionBegin;
6831   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6832   PetscValidType(mat, 1);
6833   MatCheckPreallocated(mat, 1);
6834   PetscCall(PetscLayoutGetRanges(mat->rmap, ranges));
6835   PetscFunctionReturn(PETSC_SUCCESS);
6836 }
6837 
6838 /*@C
6839   MatGetOwnershipRangesColumn - Returns the ranges of matrix columns associated with rows of a
6840   vector one multiplies this vector by that are owned by each processor.
6841 
6842   Not Collective, unless matrix has not been allocated
6843 
6844   Input Parameter:
6845 . mat - the matrix
6846 
6847   Output Parameter:
6848 . ranges - start of each processors portion plus one more than the total length at the end
6849 
6850   Level: beginner
6851 
6852   Note:
6853   Returns the columns of the "diagonal blocks", for most sparse matrix formats. See [Matrix
6854   Layouts](sec_matlayout) for details on matrix layouts.
6855 
6856 .seealso: [](ch_matrices), `Mat`, `MatGetOwnershipRange()`, `MatGetOwnershipRangeColumn()`, `MatGetOwnershipRanges()`
6857 @*/
6858 PetscErrorCode MatGetOwnershipRangesColumn(Mat mat, const PetscInt **ranges)
6859 {
6860   PetscFunctionBegin;
6861   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
6862   PetscValidType(mat, 1);
6863   MatCheckPreallocated(mat, 1);
6864   PetscCall(PetscLayoutGetRanges(mat->cmap, ranges));
6865   PetscFunctionReturn(PETSC_SUCCESS);
6866 }
6867 
6868 /*@C
6869   MatGetOwnershipIS - Get row and column ownership of a matrices' values as index sets.
6870 
6871   Not Collective
6872 
6873   Input Parameter:
6874 . A - matrix
6875 
6876   Output Parameters:
6877 + rows - rows in which this process owns elements, , use `NULL` to not obtain this value
6878 - cols - columns in which this process owns elements, use `NULL` to not obtain this value
6879 
6880   Level: intermediate
6881 
6882   Note:
6883   For most matrices, excluding `MATELEMENTAL` and `MATSCALAPACK`, this corresponds to values
6884   returned by `MatGetOwnershipRange()`, `MatGetOwnershipRangeColumn()`. For `MATELEMENTAL` and
6885   `MATSCALAPACK` the ownership is more complicated. See [Matrix Layouts](sec_matlayout) for
6886   details on matrix layouts.
6887 
6888 .seealso: [](ch_matrices), `Mat`, `MatGetOwnershipRange()`, `MatGetOwnershipRangeColumn()`, `MatSetValues()`, ``MATELEMENTAL``, ``MATSCALAPACK``
6889 @*/
6890 PetscErrorCode MatGetOwnershipIS(Mat A, IS *rows, IS *cols)
6891 {
6892   PetscErrorCode (*f)(Mat, IS *, IS *);
6893 
6894   PetscFunctionBegin;
6895   MatCheckPreallocated(A, 1);
6896   PetscCall(PetscObjectQueryFunction((PetscObject)A, "MatGetOwnershipIS_C", &f));
6897   if (f) {
6898     PetscCall((*f)(A, rows, cols));
6899   } else { /* Create a standard row-based partition, each process is responsible for ALL columns in their row block */
6900     if (rows) PetscCall(ISCreateStride(PETSC_COMM_SELF, A->rmap->n, A->rmap->rstart, 1, rows));
6901     if (cols) PetscCall(ISCreateStride(PETSC_COMM_SELF, A->cmap->N, 0, 1, cols));
6902   }
6903   PetscFunctionReturn(PETSC_SUCCESS);
6904 }
6905 
6906 /*@C
6907   MatILUFactorSymbolic - Performs symbolic ILU factorization of a matrix obtained with `MatGetFactor()`
6908   Uses levels of fill only, not drop tolerance. Use `MatLUFactorNumeric()`
6909   to complete the factorization.
6910 
6911   Collective
6912 
6913   Input Parameters:
6914 + fact - the factorized matrix obtained with `MatGetFactor()`
6915 . mat  - the matrix
6916 . row  - row permutation
6917 . col  - column permutation
6918 - info - structure containing
6919 .vb
6920       levels - number of levels of fill.
6921       expected fill - as ratio of original fill.
6922       1 or 0 - indicating force fill on diagonal (improves robustness for matrices
6923                 missing diagonal entries)
6924 .ve
6925 
6926   Level: developer
6927 
6928   Notes:
6929   See [Matrix Factorization](sec_matfactor) for additional information.
6930 
6931   Most users should employ the `KSP` interface for linear solvers
6932   instead of working directly with matrix algebra routines such as this.
6933   See, e.g., `KSPCreate()`.
6934 
6935   Uses the definition of level of fill as in Y. Saad, {cite}`saad2003`
6936 
6937   Developer Note:
6938   The Fortran interface is not autogenerated as the
6939   interface definition cannot be generated correctly [due to `MatFactorInfo`]
6940 
6941 .seealso: [](ch_matrices), `Mat`, [Matrix Factorization](sec_matfactor), `MatGetFactor()`, `MatLUFactorSymbolic()`, `MatLUFactorNumeric()`, `MatCholeskyFactor()`
6942           `MatGetOrdering()`, `MatFactorInfo`
6943 @*/
6944 PetscErrorCode MatILUFactorSymbolic(Mat fact, Mat mat, IS row, IS col, const MatFactorInfo *info)
6945 {
6946   PetscFunctionBegin;
6947   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
6948   PetscValidType(mat, 2);
6949   if (row) PetscValidHeaderSpecific(row, IS_CLASSID, 3);
6950   if (col) PetscValidHeaderSpecific(col, IS_CLASSID, 4);
6951   PetscAssertPointer(info, 5);
6952   PetscAssertPointer(fact, 1);
6953   PetscCheck(info->levels >= 0, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "Levels of fill negative %" PetscInt_FMT, (PetscInt)info->levels);
6954   PetscCheck(info->fill >= 1.0, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "Expected fill less than 1.0 %g", (double)info->fill);
6955   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
6956   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
6957   MatCheckPreallocated(mat, 2);
6958 
6959   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_ILUFactorSymbolic, mat, row, col, 0));
6960   PetscUseTypeMethod(fact, ilufactorsymbolic, mat, row, col, info);
6961   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_ILUFactorSymbolic, mat, row, col, 0));
6962   PetscFunctionReturn(PETSC_SUCCESS);
6963 }
6964 
6965 /*@C
6966   MatICCFactorSymbolic - Performs symbolic incomplete
6967   Cholesky factorization for a symmetric matrix.  Use
6968   `MatCholeskyFactorNumeric()` to complete the factorization.
6969 
6970   Collective
6971 
6972   Input Parameters:
6973 + fact - the factorized matrix obtained with `MatGetFactor()`
6974 . mat  - the matrix to be factored
6975 . perm - row and column permutation
6976 - info - structure containing
6977 .vb
6978       levels - number of levels of fill.
6979       expected fill - as ratio of original fill.
6980 .ve
6981 
6982   Level: developer
6983 
6984   Notes:
6985   Most users should employ the `KSP` interface for linear solvers
6986   instead of working directly with matrix algebra routines such as this.
6987   See, e.g., `KSPCreate()`.
6988 
6989   This uses the definition of level of fill as in Y. Saad {cite}`saad2003`
6990 
6991   Developer Note:
6992   The Fortran interface is not autogenerated as the
6993   interface definition cannot be generated correctly [due to `MatFactorInfo`]
6994 
6995 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatCholeskyFactorNumeric()`, `MatCholeskyFactor()`, `MatFactorInfo`
6996 @*/
6997 PetscErrorCode MatICCFactorSymbolic(Mat fact, Mat mat, IS perm, const MatFactorInfo *info)
6998 {
6999   PetscFunctionBegin;
7000   PetscValidHeaderSpecific(mat, MAT_CLASSID, 2);
7001   PetscValidType(mat, 2);
7002   if (perm) PetscValidHeaderSpecific(perm, IS_CLASSID, 3);
7003   PetscAssertPointer(info, 4);
7004   PetscAssertPointer(fact, 1);
7005   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
7006   PetscCheck(info->levels >= 0, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "Levels negative %" PetscInt_FMT, (PetscInt)info->levels);
7007   PetscCheck(info->fill >= 1.0, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "Expected fill less than 1.0 %g", (double)info->fill);
7008   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
7009   MatCheckPreallocated(mat, 2);
7010 
7011   if (!fact->trivialsymbolic) PetscCall(PetscLogEventBegin(MAT_ICCFactorSymbolic, mat, perm, 0, 0));
7012   PetscUseTypeMethod(fact, iccfactorsymbolic, mat, perm, info);
7013   if (!fact->trivialsymbolic) PetscCall(PetscLogEventEnd(MAT_ICCFactorSymbolic, mat, perm, 0, 0));
7014   PetscFunctionReturn(PETSC_SUCCESS);
7015 }
7016 
7017 /*@C
7018   MatCreateSubMatrices - Extracts several submatrices from a matrix. If submat
7019   points to an array of valid matrices, they may be reused to store the new
7020   submatrices.
7021 
7022   Collective
7023 
7024   Input Parameters:
7025 + mat   - the matrix
7026 . n     - the number of submatrixes to be extracted (on this processor, may be zero)
7027 . irow  - index set of rows to extract
7028 . icol  - index set of columns to extract
7029 - scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
7030 
7031   Output Parameter:
7032 . submat - the array of submatrices
7033 
7034   Level: advanced
7035 
7036   Notes:
7037   `MatCreateSubMatrices()` can extract ONLY sequential submatrices
7038   (from both sequential and parallel matrices). Use `MatCreateSubMatrix()`
7039   to extract a parallel submatrix.
7040 
7041   Some matrix types place restrictions on the row and column
7042   indices, such as that they be sorted or that they be equal to each other.
7043 
7044   The index sets may not have duplicate entries.
7045 
7046   When extracting submatrices from a parallel matrix, each processor can
7047   form a different submatrix by setting the rows and columns of its
7048   individual index sets according to the local submatrix desired.
7049 
7050   When finished using the submatrices, the user should destroy
7051   them with `MatDestroySubMatrices()`.
7052 
7053   `MAT_REUSE_MATRIX` can only be used when the nonzero structure of the
7054   original matrix has not changed from that last call to `MatCreateSubMatrices()`.
7055 
7056   This routine creates the matrices in submat; you should NOT create them before
7057   calling it. It also allocates the array of matrix pointers submat.
7058 
7059   For `MATBAIJ` matrices the index sets must respect the block structure, that is if they
7060   request one row/column in a block, they must request all rows/columns that are in
7061   that block. For example, if the block size is 2 you cannot request just row 0 and
7062   column 0.
7063 
7064   Fortran Note:
7065   The Fortran interface is slightly different from that given below; it
7066   requires one to pass in as `submat` a `Mat` (integer) array of size at least n+1.
7067 
7068 .seealso: [](ch_matrices), `Mat`, `MatDestroySubMatrices()`, `MatCreateSubMatrix()`, `MatGetRow()`, `MatGetDiagonal()`, `MatReuse`
7069 @*/
7070 PetscErrorCode MatCreateSubMatrices(Mat mat, PetscInt n, const IS irow[], const IS icol[], MatReuse scall, Mat *submat[])
7071 {
7072   PetscInt  i;
7073   PetscBool eq;
7074 
7075   PetscFunctionBegin;
7076   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7077   PetscValidType(mat, 1);
7078   if (n) {
7079     PetscAssertPointer(irow, 3);
7080     for (i = 0; i < n; i++) PetscValidHeaderSpecific(irow[i], IS_CLASSID, 3);
7081     PetscAssertPointer(icol, 4);
7082     for (i = 0; i < n; i++) PetscValidHeaderSpecific(icol[i], IS_CLASSID, 4);
7083   }
7084   PetscAssertPointer(submat, 6);
7085   if (n && scall == MAT_REUSE_MATRIX) {
7086     PetscAssertPointer(*submat, 6);
7087     for (i = 0; i < n; i++) PetscValidHeaderSpecific((*submat)[i], MAT_CLASSID, 6);
7088   }
7089   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
7090   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
7091   MatCheckPreallocated(mat, 1);
7092   PetscCall(PetscLogEventBegin(MAT_CreateSubMats, mat, 0, 0, 0));
7093   PetscUseTypeMethod(mat, createsubmatrices, n, irow, icol, scall, submat);
7094   PetscCall(PetscLogEventEnd(MAT_CreateSubMats, mat, 0, 0, 0));
7095   for (i = 0; i < n; i++) {
7096     (*submat)[i]->factortype = MAT_FACTOR_NONE; /* in case in place factorization was previously done on submatrix */
7097     PetscCall(ISEqualUnsorted(irow[i], icol[i], &eq));
7098     if (eq) PetscCall(MatPropagateSymmetryOptions(mat, (*submat)[i]));
7099 #if defined(PETSC_HAVE_VIENNACL) || defined(PETSC_HAVE_CUDA) || defined(PETSC_HAVE_HIP)
7100     if (mat->boundtocpu && mat->bindingpropagates) {
7101       PetscCall(MatBindToCPU((*submat)[i], PETSC_TRUE));
7102       PetscCall(MatSetBindingPropagates((*submat)[i], PETSC_TRUE));
7103     }
7104 #endif
7105   }
7106   PetscFunctionReturn(PETSC_SUCCESS);
7107 }
7108 
7109 /*@C
7110   MatCreateSubMatricesMPI - Extracts MPI submatrices across a sub communicator of mat (by pairs of `IS` that may live on subcomms).
7111 
7112   Collective
7113 
7114   Input Parameters:
7115 + mat   - the matrix
7116 . n     - the number of submatrixes to be extracted
7117 . irow  - index set of rows to extract
7118 . icol  - index set of columns to extract
7119 - scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
7120 
7121   Output Parameter:
7122 . submat - the array of submatrices
7123 
7124   Level: advanced
7125 
7126   Note:
7127   This is used by `PCGASM`
7128 
7129 .seealso: [](ch_matrices), `Mat`, `PCGASM`, `MatCreateSubMatrices()`, `MatCreateSubMatrix()`, `MatGetRow()`, `MatGetDiagonal()`, `MatReuse`
7130 @*/
7131 PetscErrorCode MatCreateSubMatricesMPI(Mat mat, PetscInt n, const IS irow[], const IS icol[], MatReuse scall, Mat *submat[])
7132 {
7133   PetscInt  i;
7134   PetscBool eq;
7135 
7136   PetscFunctionBegin;
7137   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7138   PetscValidType(mat, 1);
7139   if (n) {
7140     PetscAssertPointer(irow, 3);
7141     PetscValidHeaderSpecific(*irow, IS_CLASSID, 3);
7142     PetscAssertPointer(icol, 4);
7143     PetscValidHeaderSpecific(*icol, IS_CLASSID, 4);
7144   }
7145   PetscAssertPointer(submat, 6);
7146   if (n && scall == MAT_REUSE_MATRIX) {
7147     PetscAssertPointer(*submat, 6);
7148     PetscValidHeaderSpecific(**submat, MAT_CLASSID, 6);
7149   }
7150   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
7151   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
7152   MatCheckPreallocated(mat, 1);
7153 
7154   PetscCall(PetscLogEventBegin(MAT_CreateSubMats, mat, 0, 0, 0));
7155   PetscUseTypeMethod(mat, createsubmatricesmpi, n, irow, icol, scall, submat);
7156   PetscCall(PetscLogEventEnd(MAT_CreateSubMats, mat, 0, 0, 0));
7157   for (i = 0; i < n; i++) {
7158     PetscCall(ISEqualUnsorted(irow[i], icol[i], &eq));
7159     if (eq) PetscCall(MatPropagateSymmetryOptions(mat, (*submat)[i]));
7160   }
7161   PetscFunctionReturn(PETSC_SUCCESS);
7162 }
7163 
7164 /*@C
7165   MatDestroyMatrices - Destroys an array of matrices.
7166 
7167   Collective
7168 
7169   Input Parameters:
7170 + n   - the number of local matrices
7171 - mat - the matrices (this is a pointer to the array of matrices)
7172 
7173   Level: advanced
7174 
7175   Note:
7176   Frees not only the matrices, but also the array that contains the matrices
7177 
7178   Fortran Note:
7179   This does not free the array.
7180 
7181 .seealso: [](ch_matrices), `Mat`, `MatCreateSubMatrices()` `MatDestroySubMatrices()`
7182 @*/
7183 PetscErrorCode MatDestroyMatrices(PetscInt n, Mat *mat[])
7184 {
7185   PetscInt i;
7186 
7187   PetscFunctionBegin;
7188   if (!*mat) PetscFunctionReturn(PETSC_SUCCESS);
7189   PetscCheck(n >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Trying to destroy negative number of matrices %" PetscInt_FMT, n);
7190   PetscAssertPointer(mat, 2);
7191 
7192   for (i = 0; i < n; i++) PetscCall(MatDestroy(&(*mat)[i]));
7193 
7194   /* memory is allocated even if n = 0 */
7195   PetscCall(PetscFree(*mat));
7196   PetscFunctionReturn(PETSC_SUCCESS);
7197 }
7198 
7199 /*@C
7200   MatDestroySubMatrices - Destroys a set of matrices obtained with `MatCreateSubMatrices()`.
7201 
7202   Collective
7203 
7204   Input Parameters:
7205 + n   - the number of local matrices
7206 - mat - the matrices (this is a pointer to the array of matrices, just to match the calling
7207                        sequence of `MatCreateSubMatrices()`)
7208 
7209   Level: advanced
7210 
7211   Note:
7212   Frees not only the matrices, but also the array that contains the matrices
7213 
7214   Fortran Note:
7215   This does not free the array.
7216 
7217 .seealso: [](ch_matrices), `Mat`, `MatCreateSubMatrices()`, `MatDestroyMatrices()`
7218 @*/
7219 PetscErrorCode MatDestroySubMatrices(PetscInt n, Mat *mat[])
7220 {
7221   Mat mat0;
7222 
7223   PetscFunctionBegin;
7224   if (!*mat) PetscFunctionReturn(PETSC_SUCCESS);
7225   /* mat[] is an array of length n+1, see MatCreateSubMatrices_xxx() */
7226   PetscCheck(n >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Trying to destroy negative number of matrices %" PetscInt_FMT, n);
7227   PetscAssertPointer(mat, 2);
7228 
7229   mat0 = (*mat)[0];
7230   if (mat0 && mat0->ops->destroysubmatrices) {
7231     PetscCall((*mat0->ops->destroysubmatrices)(n, mat));
7232   } else {
7233     PetscCall(MatDestroyMatrices(n, mat));
7234   }
7235   PetscFunctionReturn(PETSC_SUCCESS);
7236 }
7237 
7238 /*@C
7239   MatGetSeqNonzeroStructure - Extracts the nonzero structure from a matrix and stores it, in its entirety, on each process
7240 
7241   Collective
7242 
7243   Input Parameter:
7244 . mat - the matrix
7245 
7246   Output Parameter:
7247 . matstruct - the sequential matrix with the nonzero structure of mat
7248 
7249   Level: developer
7250 
7251 .seealso: [](ch_matrices), `Mat`, `MatDestroySeqNonzeroStructure()`, `MatCreateSubMatrices()`, `MatDestroyMatrices()`
7252 @*/
7253 PetscErrorCode MatGetSeqNonzeroStructure(Mat mat, Mat *matstruct)
7254 {
7255   PetscFunctionBegin;
7256   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7257   PetscAssertPointer(matstruct, 2);
7258 
7259   PetscValidType(mat, 1);
7260   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
7261   MatCheckPreallocated(mat, 1);
7262 
7263   PetscCall(PetscLogEventBegin(MAT_GetSeqNonzeroStructure, mat, 0, 0, 0));
7264   PetscUseTypeMethod(mat, getseqnonzerostructure, matstruct);
7265   PetscCall(PetscLogEventEnd(MAT_GetSeqNonzeroStructure, mat, 0, 0, 0));
7266   PetscFunctionReturn(PETSC_SUCCESS);
7267 }
7268 
7269 /*@C
7270   MatDestroySeqNonzeroStructure - Destroys matrix obtained with `MatGetSeqNonzeroStructure()`.
7271 
7272   Collective
7273 
7274   Input Parameter:
7275 . mat - the matrix (this is a pointer to the array of matrices, just to match the calling
7276                        sequence of `MatGetSeqNonzeroStructure()`)
7277 
7278   Level: advanced
7279 
7280   Note:
7281   Frees not only the matrices, but also the array that contains the matrices
7282 
7283 .seealso: [](ch_matrices), `Mat`, `MatGetSeqNonzeroStructure()`
7284 @*/
7285 PetscErrorCode MatDestroySeqNonzeroStructure(Mat *mat)
7286 {
7287   PetscFunctionBegin;
7288   PetscAssertPointer(mat, 1);
7289   PetscCall(MatDestroy(mat));
7290   PetscFunctionReturn(PETSC_SUCCESS);
7291 }
7292 
7293 /*@
7294   MatIncreaseOverlap - Given a set of submatrices indicated by index sets,
7295   replaces the index sets by larger ones that represent submatrices with
7296   additional overlap.
7297 
7298   Collective
7299 
7300   Input Parameters:
7301 + mat - the matrix
7302 . n   - the number of index sets
7303 . is  - the array of index sets (these index sets will changed during the call)
7304 - ov  - the additional overlap requested
7305 
7306   Options Database Key:
7307 . -mat_increase_overlap_scalable - use a scalable algorithm to compute the overlap (supported by MPIAIJ matrix)
7308 
7309   Level: developer
7310 
7311   Note:
7312   The computed overlap preserves the matrix block sizes when the blocks are square.
7313   That is: if a matrix nonzero for a given block would increase the overlap all columns associated with
7314   that block are included in the overlap regardless of whether each specific column would increase the overlap.
7315 
7316 .seealso: [](ch_matrices), `Mat`, `PCASM`, `MatSetBlockSize()`, `MatIncreaseOverlapSplit()`, `MatCreateSubMatrices()`
7317 @*/
7318 PetscErrorCode MatIncreaseOverlap(Mat mat, PetscInt n, IS is[], PetscInt ov)
7319 {
7320   PetscInt i, bs, cbs;
7321 
7322   PetscFunctionBegin;
7323   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7324   PetscValidType(mat, 1);
7325   PetscValidLogicalCollectiveInt(mat, n, 2);
7326   PetscCheck(n >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Must have one or more domains, you have %" PetscInt_FMT, n);
7327   if (n) {
7328     PetscAssertPointer(is, 3);
7329     for (i = 0; i < n; i++) PetscValidHeaderSpecific(is[i], IS_CLASSID, 3);
7330   }
7331   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
7332   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
7333   MatCheckPreallocated(mat, 1);
7334 
7335   if (!ov || !n) PetscFunctionReturn(PETSC_SUCCESS);
7336   PetscCall(PetscLogEventBegin(MAT_IncreaseOverlap, mat, 0, 0, 0));
7337   PetscUseTypeMethod(mat, increaseoverlap, n, is, ov);
7338   PetscCall(PetscLogEventEnd(MAT_IncreaseOverlap, mat, 0, 0, 0));
7339   PetscCall(MatGetBlockSizes(mat, &bs, &cbs));
7340   if (bs == cbs) {
7341     for (i = 0; i < n; i++) PetscCall(ISSetBlockSize(is[i], bs));
7342   }
7343   PetscFunctionReturn(PETSC_SUCCESS);
7344 }
7345 
7346 PetscErrorCode MatIncreaseOverlapSplit_Single(Mat, IS *, PetscInt);
7347 
7348 /*@
7349   MatIncreaseOverlapSplit - Given a set of submatrices indicated by index sets across
7350   a sub communicator, replaces the index sets by larger ones that represent submatrices with
7351   additional overlap.
7352 
7353   Collective
7354 
7355   Input Parameters:
7356 + mat - the matrix
7357 . n   - the number of index sets
7358 . is  - the array of index sets (these index sets will changed during the call)
7359 - ov  - the additional overlap requested
7360 
7361   `   Options Database Key:
7362 . -mat_increase_overlap_scalable - use a scalable algorithm to compute the overlap (supported by MPIAIJ matrix)
7363 
7364   Level: developer
7365 
7366 .seealso: [](ch_matrices), `Mat`, `MatCreateSubMatrices()`, `MatIncreaseOverlap()`
7367 @*/
7368 PetscErrorCode MatIncreaseOverlapSplit(Mat mat, PetscInt n, IS is[], PetscInt ov)
7369 {
7370   PetscInt i;
7371 
7372   PetscFunctionBegin;
7373   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7374   PetscValidType(mat, 1);
7375   PetscCheck(n >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Must have one or more domains, you have %" PetscInt_FMT, n);
7376   if (n) {
7377     PetscAssertPointer(is, 3);
7378     PetscValidHeaderSpecific(*is, IS_CLASSID, 3);
7379   }
7380   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
7381   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
7382   MatCheckPreallocated(mat, 1);
7383   if (!ov) PetscFunctionReturn(PETSC_SUCCESS);
7384   PetscCall(PetscLogEventBegin(MAT_IncreaseOverlap, mat, 0, 0, 0));
7385   for (i = 0; i < n; i++) PetscCall(MatIncreaseOverlapSplit_Single(mat, &is[i], ov));
7386   PetscCall(PetscLogEventEnd(MAT_IncreaseOverlap, mat, 0, 0, 0));
7387   PetscFunctionReturn(PETSC_SUCCESS);
7388 }
7389 
7390 /*@
7391   MatGetBlockSize - Returns the matrix block size.
7392 
7393   Not Collective
7394 
7395   Input Parameter:
7396 . mat - the matrix
7397 
7398   Output Parameter:
7399 . bs - block size
7400 
7401   Level: intermediate
7402 
7403   Notes:
7404   Block row formats are `MATBAIJ` and `MATSBAIJ` ALWAYS have square block storage in the matrix.
7405 
7406   If the block size has not been set yet this routine returns 1.
7407 
7408 .seealso: [](ch_matrices), `Mat`, `MATBAIJ`, `MATSBAIJ`, `MatCreateSeqBAIJ()`, `MatCreateBAIJ()`, `MatGetBlockSizes()`
7409 @*/
7410 PetscErrorCode MatGetBlockSize(Mat mat, PetscInt *bs)
7411 {
7412   PetscFunctionBegin;
7413   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7414   PetscAssertPointer(bs, 2);
7415   *bs = PetscAbs(mat->rmap->bs);
7416   PetscFunctionReturn(PETSC_SUCCESS);
7417 }
7418 
7419 /*@
7420   MatGetBlockSizes - Returns the matrix block row and column sizes.
7421 
7422   Not Collective
7423 
7424   Input Parameter:
7425 . mat - the matrix
7426 
7427   Output Parameters:
7428 + rbs - row block size
7429 - cbs - column block size
7430 
7431   Level: intermediate
7432 
7433   Notes:
7434   Block row formats are `MATBAIJ` and `MATSBAIJ` ALWAYS have square block storage in the matrix.
7435   If you pass a different block size for the columns than the rows, the row block size determines the square block storage.
7436 
7437   If a block size has not been set yet this routine returns 1.
7438 
7439 .seealso: [](ch_matrices), `Mat`, `MATBAIJ`, `MATSBAIJ`, `MatCreateSeqBAIJ()`, `MatCreateBAIJ()`, `MatGetBlockSize()`, `MatSetBlockSize()`, `MatSetBlockSizes()`
7440 @*/
7441 PetscErrorCode MatGetBlockSizes(Mat mat, PetscInt *rbs, PetscInt *cbs)
7442 {
7443   PetscFunctionBegin;
7444   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7445   if (rbs) PetscAssertPointer(rbs, 2);
7446   if (cbs) PetscAssertPointer(cbs, 3);
7447   if (rbs) *rbs = PetscAbs(mat->rmap->bs);
7448   if (cbs) *cbs = PetscAbs(mat->cmap->bs);
7449   PetscFunctionReturn(PETSC_SUCCESS);
7450 }
7451 
7452 /*@
7453   MatSetBlockSize - Sets the matrix block size.
7454 
7455   Logically Collective
7456 
7457   Input Parameters:
7458 + mat - the matrix
7459 - bs  - block size
7460 
7461   Level: intermediate
7462 
7463   Notes:
7464   Block row formats are `MATBAIJ` and `MATSBAIJ` formats ALWAYS have square block storage in the matrix.
7465   This must be called before `MatSetUp()` or MatXXXSetPreallocation() (or will default to 1) and the block size cannot be changed later.
7466 
7467   For `MATAIJ` matrix format, this function can be called at a later stage, provided that the specified block size
7468   is compatible with the matrix local sizes.
7469 
7470 .seealso: [](ch_matrices), `Mat`, `MATBAIJ`, `MATSBAIJ`, `MATAIJ`, `MatCreateSeqBAIJ()`, `MatCreateBAIJ()`, `MatGetBlockSize()`, `MatSetBlockSizes()`, `MatGetBlockSizes()`
7471 @*/
7472 PetscErrorCode MatSetBlockSize(Mat mat, PetscInt bs)
7473 {
7474   PetscFunctionBegin;
7475   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7476   PetscValidLogicalCollectiveInt(mat, bs, 2);
7477   PetscCall(MatSetBlockSizes(mat, bs, bs));
7478   PetscFunctionReturn(PETSC_SUCCESS);
7479 }
7480 
7481 typedef struct {
7482   PetscInt         n;
7483   IS              *is;
7484   Mat             *mat;
7485   PetscObjectState nonzerostate;
7486   Mat              C;
7487 } EnvelopeData;
7488 
7489 static PetscErrorCode EnvelopeDataDestroy(void *ptr)
7490 {
7491   EnvelopeData *edata = (EnvelopeData *)ptr;
7492 
7493   PetscFunctionBegin;
7494   for (PetscInt i = 0; i < edata->n; i++) PetscCall(ISDestroy(&edata->is[i]));
7495   PetscCall(PetscFree(edata->is));
7496   PetscCall(PetscFree(edata));
7497   PetscFunctionReturn(PETSC_SUCCESS);
7498 }
7499 
7500 /*@
7501   MatComputeVariableBlockEnvelope - Given a matrix whose nonzeros are in blocks along the diagonal this computes and stores
7502   the sizes of these blocks in the matrix. An individual block may lie over several processes.
7503 
7504   Collective
7505 
7506   Input Parameter:
7507 . mat - the matrix
7508 
7509   Level: intermediate
7510 
7511   Notes:
7512   There can be zeros within the blocks
7513 
7514   The blocks can overlap between processes, including laying on more than two processes
7515 
7516 .seealso: [](ch_matrices), `Mat`, `MatInvertVariableBlockEnvelope()`, `MatSetVariableBlockSizes()`
7517 @*/
7518 PetscErrorCode MatComputeVariableBlockEnvelope(Mat mat)
7519 {
7520   PetscInt           n, *sizes, *starts, i = 0, env = 0, tbs = 0, lblocks = 0, rstart, II, ln = 0, cnt = 0, cstart, cend;
7521   PetscInt          *diag, *odiag, sc;
7522   VecScatter         scatter;
7523   PetscScalar       *seqv;
7524   const PetscScalar *parv;
7525   const PetscInt    *ia, *ja;
7526   PetscBool          set, flag, done;
7527   Mat                AA = mat, A;
7528   MPI_Comm           comm;
7529   PetscMPIInt        rank, size, tag;
7530   MPI_Status         status;
7531   PetscContainer     container;
7532   EnvelopeData      *edata;
7533   Vec                seq, par;
7534   IS                 isglobal;
7535 
7536   PetscFunctionBegin;
7537   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7538   PetscCall(MatIsSymmetricKnown(mat, &set, &flag));
7539   if (!set || !flag) {
7540     /* TODO: only needs nonzero structure of transpose */
7541     PetscCall(MatTranspose(mat, MAT_INITIAL_MATRIX, &AA));
7542     PetscCall(MatAXPY(AA, 1.0, mat, DIFFERENT_NONZERO_PATTERN));
7543   }
7544   PetscCall(MatAIJGetLocalMat(AA, &A));
7545   PetscCall(MatGetRowIJ(A, 0, PETSC_FALSE, PETSC_FALSE, &n, &ia, &ja, &done));
7546   PetscCheck(done, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Unable to get IJ structure from matrix");
7547 
7548   PetscCall(MatGetLocalSize(mat, &n, NULL));
7549   PetscCall(PetscObjectGetNewTag((PetscObject)mat, &tag));
7550   PetscCall(PetscObjectGetComm((PetscObject)mat, &comm));
7551   PetscCallMPI(MPI_Comm_size(comm, &size));
7552   PetscCallMPI(MPI_Comm_rank(comm, &rank));
7553 
7554   PetscCall(PetscMalloc2(n, &sizes, n, &starts));
7555 
7556   if (rank > 0) {
7557     PetscCallMPI(MPI_Recv(&env, 1, MPIU_INT, rank - 1, tag, comm, &status));
7558     PetscCallMPI(MPI_Recv(&tbs, 1, MPIU_INT, rank - 1, tag, comm, &status));
7559   }
7560   PetscCall(MatGetOwnershipRange(mat, &rstart, NULL));
7561   for (i = 0; i < n; i++) {
7562     env = PetscMax(env, ja[ia[i + 1] - 1]);
7563     II  = rstart + i;
7564     if (env == II) {
7565       starts[lblocks]  = tbs;
7566       sizes[lblocks++] = 1 + II - tbs;
7567       tbs              = 1 + II;
7568     }
7569   }
7570   if (rank < size - 1) {
7571     PetscCallMPI(MPI_Send(&env, 1, MPIU_INT, rank + 1, tag, comm));
7572     PetscCallMPI(MPI_Send(&tbs, 1, MPIU_INT, rank + 1, tag, comm));
7573   }
7574 
7575   PetscCall(MatRestoreRowIJ(A, 0, PETSC_FALSE, PETSC_FALSE, &n, &ia, &ja, &done));
7576   if (!set || !flag) PetscCall(MatDestroy(&AA));
7577   PetscCall(MatDestroy(&A));
7578 
7579   PetscCall(PetscNew(&edata));
7580   PetscCall(MatGetNonzeroState(mat, &edata->nonzerostate));
7581   edata->n = lblocks;
7582   /* create IS needed for extracting blocks from the original matrix */
7583   PetscCall(PetscMalloc1(lblocks, &edata->is));
7584   for (PetscInt i = 0; i < lblocks; i++) PetscCall(ISCreateStride(PETSC_COMM_SELF, sizes[i], starts[i], 1, &edata->is[i]));
7585 
7586   /* Create the resulting inverse matrix structure with preallocation information */
7587   PetscCall(MatCreate(PetscObjectComm((PetscObject)mat), &edata->C));
7588   PetscCall(MatSetSizes(edata->C, mat->rmap->n, mat->cmap->n, mat->rmap->N, mat->cmap->N));
7589   PetscCall(MatSetBlockSizesFromMats(edata->C, mat, mat));
7590   PetscCall(MatSetType(edata->C, MATAIJ));
7591 
7592   /* Communicate the start and end of each row, from each block to the correct rank */
7593   /* TODO: Use PetscSF instead of VecScatter */
7594   for (PetscInt i = 0; i < lblocks; i++) ln += sizes[i];
7595   PetscCall(VecCreateSeq(PETSC_COMM_SELF, 2 * ln, &seq));
7596   PetscCall(VecGetArrayWrite(seq, &seqv));
7597   for (PetscInt i = 0; i < lblocks; i++) {
7598     for (PetscInt j = 0; j < sizes[i]; j++) {
7599       seqv[cnt]     = starts[i];
7600       seqv[cnt + 1] = starts[i] + sizes[i];
7601       cnt += 2;
7602     }
7603   }
7604   PetscCall(VecRestoreArrayWrite(seq, &seqv));
7605   PetscCallMPI(MPI_Scan(&cnt, &sc, 1, MPIU_INT, MPI_SUM, PetscObjectComm((PetscObject)mat)));
7606   sc -= cnt;
7607   PetscCall(VecCreateMPI(PetscObjectComm((PetscObject)mat), 2 * mat->rmap->n, 2 * mat->rmap->N, &par));
7608   PetscCall(ISCreateStride(PETSC_COMM_SELF, cnt, sc, 1, &isglobal));
7609   PetscCall(VecScatterCreate(seq, NULL, par, isglobal, &scatter));
7610   PetscCall(ISDestroy(&isglobal));
7611   PetscCall(VecScatterBegin(scatter, seq, par, INSERT_VALUES, SCATTER_FORWARD));
7612   PetscCall(VecScatterEnd(scatter, seq, par, INSERT_VALUES, SCATTER_FORWARD));
7613   PetscCall(VecScatterDestroy(&scatter));
7614   PetscCall(VecDestroy(&seq));
7615   PetscCall(MatGetOwnershipRangeColumn(mat, &cstart, &cend));
7616   PetscCall(PetscMalloc2(mat->rmap->n, &diag, mat->rmap->n, &odiag));
7617   PetscCall(VecGetArrayRead(par, &parv));
7618   cnt = 0;
7619   PetscCall(MatGetSize(mat, NULL, &n));
7620   for (PetscInt i = 0; i < mat->rmap->n; i++) {
7621     PetscInt start, end, d = 0, od = 0;
7622 
7623     start = (PetscInt)PetscRealPart(parv[cnt]);
7624     end   = (PetscInt)PetscRealPart(parv[cnt + 1]);
7625     cnt += 2;
7626 
7627     if (start < cstart) {
7628       od += cstart - start + n - cend;
7629       d += cend - cstart;
7630     } else if (start < cend) {
7631       od += n - cend;
7632       d += cend - start;
7633     } else od += n - start;
7634     if (end <= cstart) {
7635       od -= cstart - end + n - cend;
7636       d -= cend - cstart;
7637     } else if (end < cend) {
7638       od -= n - cend;
7639       d -= cend - end;
7640     } else od -= n - end;
7641 
7642     odiag[i] = od;
7643     diag[i]  = d;
7644   }
7645   PetscCall(VecRestoreArrayRead(par, &parv));
7646   PetscCall(VecDestroy(&par));
7647   PetscCall(MatXAIJSetPreallocation(edata->C, mat->rmap->bs, diag, odiag, NULL, NULL));
7648   PetscCall(PetscFree2(diag, odiag));
7649   PetscCall(PetscFree2(sizes, starts));
7650 
7651   PetscCall(PetscContainerCreate(PETSC_COMM_SELF, &container));
7652   PetscCall(PetscContainerSetPointer(container, edata));
7653   PetscCall(PetscContainerSetUserDestroy(container, (PetscErrorCode(*)(void *))EnvelopeDataDestroy));
7654   PetscCall(PetscObjectCompose((PetscObject)mat, "EnvelopeData", (PetscObject)container));
7655   PetscCall(PetscObjectDereference((PetscObject)container));
7656   PetscFunctionReturn(PETSC_SUCCESS);
7657 }
7658 
7659 /*@
7660   MatInvertVariableBlockEnvelope - set matrix C to be the inverted block diagonal of matrix A
7661 
7662   Collective
7663 
7664   Input Parameters:
7665 + A     - the matrix
7666 - reuse - indicates if the `C` matrix was obtained from a previous call to this routine
7667 
7668   Output Parameter:
7669 . C - matrix with inverted block diagonal of `A`
7670 
7671   Level: advanced
7672 
7673   Note:
7674   For efficiency the matrix `A` should have all the nonzero entries clustered in smallish blocks along the diagonal.
7675 
7676 .seealso: [](ch_matrices), `Mat`, `MatInvertBlockDiagonal()`, `MatComputeBlockDiagonal()`
7677 @*/
7678 PetscErrorCode MatInvertVariableBlockEnvelope(Mat A, MatReuse reuse, Mat *C)
7679 {
7680   PetscContainer   container;
7681   EnvelopeData    *edata;
7682   PetscObjectState nonzerostate;
7683 
7684   PetscFunctionBegin;
7685   PetscCall(PetscObjectQuery((PetscObject)A, "EnvelopeData", (PetscObject *)&container));
7686   if (!container) {
7687     PetscCall(MatComputeVariableBlockEnvelope(A));
7688     PetscCall(PetscObjectQuery((PetscObject)A, "EnvelopeData", (PetscObject *)&container));
7689   }
7690   PetscCall(PetscContainerGetPointer(container, (void **)&edata));
7691   PetscCall(MatGetNonzeroState(A, &nonzerostate));
7692   PetscCheck(nonzerostate <= edata->nonzerostate, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Cannot handle changes to matrix nonzero structure");
7693   PetscCheck(reuse != MAT_REUSE_MATRIX || *C == edata->C, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "C matrix must be the same as previously output");
7694 
7695   PetscCall(MatCreateSubMatrices(A, edata->n, edata->is, edata->is, MAT_INITIAL_MATRIX, &edata->mat));
7696   *C = edata->C;
7697 
7698   for (PetscInt i = 0; i < edata->n; i++) {
7699     Mat          D;
7700     PetscScalar *dvalues;
7701 
7702     PetscCall(MatConvert(edata->mat[i], MATSEQDENSE, MAT_INITIAL_MATRIX, &D));
7703     PetscCall(MatSetOption(*C, MAT_ROW_ORIENTED, PETSC_FALSE));
7704     PetscCall(MatSeqDenseInvert(D));
7705     PetscCall(MatDenseGetArray(D, &dvalues));
7706     PetscCall(MatSetValuesIS(*C, edata->is[i], edata->is[i], dvalues, INSERT_VALUES));
7707     PetscCall(MatDestroy(&D));
7708   }
7709   PetscCall(MatDestroySubMatrices(edata->n, &edata->mat));
7710   PetscCall(MatAssemblyBegin(*C, MAT_FINAL_ASSEMBLY));
7711   PetscCall(MatAssemblyEnd(*C, MAT_FINAL_ASSEMBLY));
7712   PetscFunctionReturn(PETSC_SUCCESS);
7713 }
7714 
7715 /*@
7716   MatSetVariableBlockSizes - Sets diagonal point-blocks of the matrix that need not be of the same size
7717 
7718   Logically Collective
7719 
7720   Input Parameters:
7721 + mat     - the matrix
7722 . nblocks - the number of blocks on this process, each block can only exist on a single process
7723 - bsizes  - the block sizes
7724 
7725   Level: intermediate
7726 
7727   Notes:
7728   Currently used by `PCVPBJACOBI` for `MATAIJ` matrices
7729 
7730   Each variable point-block set of degrees of freedom must live on a single MPI process. That is a point block cannot straddle two MPI processes.
7731 
7732 .seealso: [](ch_matrices), `Mat`, `MatCreateSeqBAIJ()`, `MatCreateBAIJ()`, `MatGetBlockSize()`, `MatSetBlockSizes()`, `MatGetBlockSizes()`, `MatGetVariableBlockSizes()`,
7733           `MatComputeVariableBlockEnvelope()`, `PCVPBJACOBI`
7734 @*/
7735 PetscErrorCode MatSetVariableBlockSizes(Mat mat, PetscInt nblocks, PetscInt *bsizes)
7736 {
7737   PetscInt i, ncnt = 0, nlocal;
7738 
7739   PetscFunctionBegin;
7740   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7741   PetscCall(MatGetLocalSize(mat, &nlocal, NULL));
7742   PetscCheck(nblocks >= 0 && nblocks <= nlocal, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Number of local blocks %" PetscInt_FMT " is not in [0, %" PetscInt_FMT "]", nblocks, nlocal);
7743   for (i = 0; i < nblocks; i++) ncnt += bsizes[i];
7744   PetscCheck(ncnt == nlocal, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Sum of local block sizes %" PetscInt_FMT " does not equal local size of matrix %" PetscInt_FMT, ncnt, nlocal);
7745   PetscCall(PetscFree(mat->bsizes));
7746   mat->nblocks = nblocks;
7747   PetscCall(PetscMalloc1(nblocks, &mat->bsizes));
7748   PetscCall(PetscArraycpy(mat->bsizes, bsizes, nblocks));
7749   PetscFunctionReturn(PETSC_SUCCESS);
7750 }
7751 
7752 /*@C
7753   MatGetVariableBlockSizes - Gets a diagonal blocks of the matrix that need not be of the same size
7754 
7755   Logically Collective; No Fortran Support
7756 
7757   Input Parameter:
7758 . mat - the matrix
7759 
7760   Output Parameters:
7761 + nblocks - the number of blocks on this process
7762 - bsizes  - the block sizes
7763 
7764   Level: intermediate
7765 
7766 .seealso: [](ch_matrices), `Mat`, `MatCreateSeqBAIJ()`, `MatCreateBAIJ()`, `MatGetBlockSize()`, `MatSetBlockSizes()`, `MatGetBlockSizes()`, `MatSetVariableBlockSizes()`, `MatComputeVariableBlockEnvelope()`
7767 @*/
7768 PetscErrorCode MatGetVariableBlockSizes(Mat mat, PetscInt *nblocks, const PetscInt **bsizes)
7769 {
7770   PetscFunctionBegin;
7771   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7772   *nblocks = mat->nblocks;
7773   *bsizes  = mat->bsizes;
7774   PetscFunctionReturn(PETSC_SUCCESS);
7775 }
7776 
7777 /*@
7778   MatSetBlockSizes - Sets the matrix block row and column sizes.
7779 
7780   Logically Collective
7781 
7782   Input Parameters:
7783 + mat - the matrix
7784 . rbs - row block size
7785 - cbs - column block size
7786 
7787   Level: intermediate
7788 
7789   Notes:
7790   Block row formats are `MATBAIJ` and  `MATSBAIJ`. These formats ALWAYS have square block storage in the matrix.
7791   If you pass a different block size for the columns than the rows, the row block size determines the square block storage.
7792   This must be called before `MatSetUp()` or MatXXXSetPreallocation() (or will default to 1) and the block size cannot be changed later.
7793 
7794   For `MATAIJ` matrix this function can be called at a later stage, provided that the specified block sizes
7795   are compatible with the matrix local sizes.
7796 
7797   The row and column block size determine the blocksize of the "row" and "column" vectors returned by `MatCreateVecs()`.
7798 
7799 .seealso: [](ch_matrices), `Mat`, `MatCreateSeqBAIJ()`, `MatCreateBAIJ()`, `MatGetBlockSize()`, `MatSetBlockSize()`, `MatGetBlockSizes()`
7800 @*/
7801 PetscErrorCode MatSetBlockSizes(Mat mat, PetscInt rbs, PetscInt cbs)
7802 {
7803   PetscFunctionBegin;
7804   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7805   PetscValidLogicalCollectiveInt(mat, rbs, 2);
7806   PetscValidLogicalCollectiveInt(mat, cbs, 3);
7807   PetscTryTypeMethod(mat, setblocksizes, rbs, cbs);
7808   if (mat->rmap->refcnt) {
7809     ISLocalToGlobalMapping l2g  = NULL;
7810     PetscLayout            nmap = NULL;
7811 
7812     PetscCall(PetscLayoutDuplicate(mat->rmap, &nmap));
7813     if (mat->rmap->mapping) PetscCall(ISLocalToGlobalMappingDuplicate(mat->rmap->mapping, &l2g));
7814     PetscCall(PetscLayoutDestroy(&mat->rmap));
7815     mat->rmap          = nmap;
7816     mat->rmap->mapping = l2g;
7817   }
7818   if (mat->cmap->refcnt) {
7819     ISLocalToGlobalMapping l2g  = NULL;
7820     PetscLayout            nmap = NULL;
7821 
7822     PetscCall(PetscLayoutDuplicate(mat->cmap, &nmap));
7823     if (mat->cmap->mapping) PetscCall(ISLocalToGlobalMappingDuplicate(mat->cmap->mapping, &l2g));
7824     PetscCall(PetscLayoutDestroy(&mat->cmap));
7825     mat->cmap          = nmap;
7826     mat->cmap->mapping = l2g;
7827   }
7828   PetscCall(PetscLayoutSetBlockSize(mat->rmap, rbs));
7829   PetscCall(PetscLayoutSetBlockSize(mat->cmap, cbs));
7830   PetscFunctionReturn(PETSC_SUCCESS);
7831 }
7832 
7833 /*@
7834   MatSetBlockSizesFromMats - Sets the matrix block row and column sizes to match a pair of matrices
7835 
7836   Logically Collective
7837 
7838   Input Parameters:
7839 + mat     - the matrix
7840 . fromRow - matrix from which to copy row block size
7841 - fromCol - matrix from which to copy column block size (can be same as fromRow)
7842 
7843   Level: developer
7844 
7845 .seealso: [](ch_matrices), `Mat`, `MatCreateSeqBAIJ()`, `MatCreateBAIJ()`, `MatGetBlockSize()`, `MatSetBlockSizes()`
7846 @*/
7847 PetscErrorCode MatSetBlockSizesFromMats(Mat mat, Mat fromRow, Mat fromCol)
7848 {
7849   PetscFunctionBegin;
7850   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7851   PetscValidHeaderSpecific(fromRow, MAT_CLASSID, 2);
7852   PetscValidHeaderSpecific(fromCol, MAT_CLASSID, 3);
7853   if (fromRow->rmap->bs > 0) PetscCall(PetscLayoutSetBlockSize(mat->rmap, fromRow->rmap->bs));
7854   if (fromCol->cmap->bs > 0) PetscCall(PetscLayoutSetBlockSize(mat->cmap, fromCol->cmap->bs));
7855   PetscFunctionReturn(PETSC_SUCCESS);
7856 }
7857 
7858 /*@
7859   MatResidual - Default routine to calculate the residual r = b - Ax
7860 
7861   Collective
7862 
7863   Input Parameters:
7864 + mat - the matrix
7865 . b   - the right-hand-side
7866 - x   - the approximate solution
7867 
7868   Output Parameter:
7869 . r - location to store the residual
7870 
7871   Level: developer
7872 
7873 .seealso: [](ch_matrices), `Mat`, `MatMult()`, `MatMultAdd()`, `PCMGSetResidual()`
7874 @*/
7875 PetscErrorCode MatResidual(Mat mat, Vec b, Vec x, Vec r)
7876 {
7877   PetscFunctionBegin;
7878   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7879   PetscValidHeaderSpecific(b, VEC_CLASSID, 2);
7880   PetscValidHeaderSpecific(x, VEC_CLASSID, 3);
7881   PetscValidHeaderSpecific(r, VEC_CLASSID, 4);
7882   PetscValidType(mat, 1);
7883   MatCheckPreallocated(mat, 1);
7884   PetscCall(PetscLogEventBegin(MAT_Residual, mat, 0, 0, 0));
7885   if (!mat->ops->residual) {
7886     PetscCall(MatMult(mat, x, r));
7887     PetscCall(VecAYPX(r, -1.0, b));
7888   } else {
7889     PetscUseTypeMethod(mat, residual, b, x, r);
7890   }
7891   PetscCall(PetscLogEventEnd(MAT_Residual, mat, 0, 0, 0));
7892   PetscFunctionReturn(PETSC_SUCCESS);
7893 }
7894 
7895 /*MC
7896     MatGetRowIJF90 - Obtains the compressed row storage i and j indices for the local rows of a sparse matrix
7897 
7898     Synopsis:
7899     MatGetRowIJF90(Mat A, PetscInt shift, PetscBool symmetric, PetscBool inodecompressed, PetscInt n, {PetscInt, pointer :: ia(:)}, {PetscInt, pointer :: ja(:)}, PetscBool done,integer ierr)
7900 
7901     Not Collective
7902 
7903     Input Parameters:
7904 +   A - the matrix
7905 .   shift -  0 or 1 indicating we want the indices starting at 0 or 1
7906 .   symmetric - `PETSC_TRUE` or `PETSC_FALSE` indicating the matrix data structure should be symmetrized
7907 -   inodecompressed - `PETSC_TRUE` or `PETSC_FALSE`  indicating if the nonzero structure of the
7908                  inodes or the nonzero elements is wanted. For `MATBAIJ` matrices the compressed version is
7909                  always used.
7910 
7911     Output Parameters:
7912 +   n - number of local rows in the (possibly compressed) matrix
7913 .   ia - the row pointers; that is ia[0] = 0, ia[row] = ia[row-1] + number of elements in that row of the matrix
7914 .   ja - the column indices
7915 -   done - indicates if the routine actually worked and returned appropriate ia[] and ja[] arrays; callers
7916            are responsible for handling the case when done == `PETSC_FALSE` and ia and ja are not set
7917 
7918     Level: developer
7919 
7920     Note:
7921     Use  `MatRestoreRowIJF90()` when you no longer need access to the data
7922 
7923 .seealso: [](ch_matrices), [](sec_fortranarrays), `Mat`, `MATMPIAIJ`, `MatGetRowIJ()`, `MatRestoreRowIJ()`, `MatRestoreRowIJF90()`
7924 M*/
7925 
7926 /*MC
7927     MatRestoreRowIJF90 - restores the compressed row storage i and j indices for the local rows of a sparse matrix obtained with `MatGetRowIJF90()`
7928 
7929     Synopsis:
7930     MatRestoreRowIJF90(Mat A, PetscInt shift, PetscBool symmetric, PetscBool inodecompressed, PetscInt n, {PetscInt, pointer :: ia(:)}, {PetscInt, pointer :: ja(:)}, PetscBool done,integer ierr)
7931 
7932     Not Collective
7933 
7934     Input Parameters:
7935 +   A - the  matrix
7936 .   shift -  0 or 1 indicating we want the indices starting at 0 or 1
7937 .   symmetric - `PETSC_TRUE` or `PETSC_FALSE` indicating the matrix data structure should be symmetrized
7938     inodecompressed - `PETSC_TRUE` or `PETSC_FALSE`  indicating if the nonzero structure of the
7939                  inodes or the nonzero elements is wanted. For `MATBAIJ` matrices the compressed version is
7940                  always used.
7941 .   n - number of local rows in the (possibly compressed) matrix
7942 .   ia - the row pointers; that is ia[0] = 0, ia[row] = ia[row-1] + number of elements in that row of the matrix
7943 .   ja - the column indices
7944 -   done - indicates if the routine actually worked and returned appropriate ia[] and ja[] arrays; callers
7945            are responsible for handling the case when done == `PETSC_FALSE` and ia and ja are not set
7946 
7947     Level: developer
7948 
7949 .seealso: [](ch_matrices), [](sec_fortranarrays), `Mat`, `MATMPIAIJ`, `MatGetRowIJ()`, `MatRestoreRowIJ()`, `MatGetRowIJF90()`
7950 M*/
7951 
7952 /*@C
7953   MatGetRowIJ - Returns the compressed row storage i and j indices for the local rows of a sparse matrix
7954 
7955   Collective
7956 
7957   Input Parameters:
7958 + mat             - the matrix
7959 . shift           - 0 or 1 indicating we want the indices starting at 0 or 1
7960 . symmetric       - `PETSC_TRUE` or `PETSC_FALSE` indicating the matrix data structure should be symmetrized
7961 - inodecompressed - `PETSC_TRUE` or `PETSC_FALSE`  indicating if the nonzero structure of the
7962                  inodes or the nonzero elements is wanted. For `MATBAIJ` matrices the compressed version is
7963                  always used.
7964 
7965   Output Parameters:
7966 + n    - number of local rows in the (possibly compressed) matrix, use `NULL` if not needed
7967 . ia   - the row pointers; that is ia[0] = 0, ia[row] = ia[row-1] + number of elements in that row of the matrix, use `NULL` if not needed
7968 . ja   - the column indices, use `NULL` if not needed
7969 - done - indicates if the routine actually worked and returned appropriate ia[] and ja[] arrays; callers
7970            are responsible for handling the case when done == `PETSC_FALSE` and ia and ja are not set
7971 
7972   Level: developer
7973 
7974   Notes:
7975   You CANNOT change any of the ia[] or ja[] values.
7976 
7977   Use `MatRestoreRowIJ()` when you are finished accessing the ia[] and ja[] values.
7978 
7979   Fortran Notes:
7980   Use
7981 .vb
7982     PetscInt, pointer :: ia(:),ja(:)
7983     call MatGetRowIJF90(mat,shift,symmetric,inodecompressed,n,ia,ja,done,ierr)
7984     ! Access the ith and jth entries via ia(i) and ja(j)
7985 .ve
7986 
7987   `MatGetRowIJ()` Fortran binding is deprecated (since PETSc 3.19), use `MatGetRowIJF90()`
7988 
7989 .seealso: [](ch_matrices), `Mat`, `MATAIJ`, `MatGetRowIJF90()`, `MatGetColumnIJ()`, `MatRestoreRowIJ()`, `MatSeqAIJGetArray()`
7990 @*/
7991 PetscErrorCode MatGetRowIJ(Mat mat, PetscInt shift, PetscBool symmetric, PetscBool inodecompressed, PetscInt *n, const PetscInt *ia[], const PetscInt *ja[], PetscBool *done)
7992 {
7993   PetscFunctionBegin;
7994   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
7995   PetscValidType(mat, 1);
7996   if (n) PetscAssertPointer(n, 5);
7997   if (ia) PetscAssertPointer(ia, 6);
7998   if (ja) PetscAssertPointer(ja, 7);
7999   if (done) PetscAssertPointer(done, 8);
8000   MatCheckPreallocated(mat, 1);
8001   if (!mat->ops->getrowij && done) *done = PETSC_FALSE;
8002   else {
8003     if (done) *done = PETSC_TRUE;
8004     PetscCall(PetscLogEventBegin(MAT_GetRowIJ, mat, 0, 0, 0));
8005     PetscUseTypeMethod(mat, getrowij, shift, symmetric, inodecompressed, n, ia, ja, done);
8006     PetscCall(PetscLogEventEnd(MAT_GetRowIJ, mat, 0, 0, 0));
8007   }
8008   PetscFunctionReturn(PETSC_SUCCESS);
8009 }
8010 
8011 /*@C
8012   MatGetColumnIJ - Returns the compressed column storage i and j indices for sequential matrices.
8013 
8014   Collective
8015 
8016   Input Parameters:
8017 + mat             - the matrix
8018 . shift           - 1 or zero indicating we want the indices starting at 0 or 1
8019 . symmetric       - `PETSC_TRUE` or `PETSC_FALSE` indicating the matrix data structure should be
8020                 symmetrized
8021 . inodecompressed - `PETSC_TRUE` or `PETSC_FALSE` indicating if the nonzero structure of the
8022                  inodes or the nonzero elements is wanted. For `MATBAIJ` matrices the compressed version is
8023                  always used.
8024 . n               - number of columns in the (possibly compressed) matrix
8025 . ia              - the column pointers; that is ia[0] = 0, ia[col] = i[col-1] + number of elements in that col of the matrix
8026 - ja              - the row indices
8027 
8028   Output Parameter:
8029 . done - `PETSC_TRUE` or `PETSC_FALSE`, indicating whether the values have been returned
8030 
8031   Level: developer
8032 
8033 .seealso: [](ch_matrices), `Mat`, `MatGetRowIJ()`, `MatRestoreColumnIJ()`
8034 @*/
8035 PetscErrorCode MatGetColumnIJ(Mat mat, PetscInt shift, PetscBool symmetric, PetscBool inodecompressed, PetscInt *n, const PetscInt *ia[], const PetscInt *ja[], PetscBool *done)
8036 {
8037   PetscFunctionBegin;
8038   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8039   PetscValidType(mat, 1);
8040   PetscAssertPointer(n, 5);
8041   if (ia) PetscAssertPointer(ia, 6);
8042   if (ja) PetscAssertPointer(ja, 7);
8043   PetscAssertPointer(done, 8);
8044   MatCheckPreallocated(mat, 1);
8045   if (!mat->ops->getcolumnij) *done = PETSC_FALSE;
8046   else {
8047     *done = PETSC_TRUE;
8048     PetscUseTypeMethod(mat, getcolumnij, shift, symmetric, inodecompressed, n, ia, ja, done);
8049   }
8050   PetscFunctionReturn(PETSC_SUCCESS);
8051 }
8052 
8053 /*@C
8054   MatRestoreRowIJ - Call after you are completed with the ia,ja indices obtained with `MatGetRowIJ()`.
8055 
8056   Collective
8057 
8058   Input Parameters:
8059 + mat             - the matrix
8060 . shift           - 1 or zero indicating we want the indices starting at 0 or 1
8061 . symmetric       - `PETSC_TRUE` or `PETSC_FALSE` indicating the matrix data structure should be symmetrized
8062 . inodecompressed - `PETSC_TRUE` or `PETSC_FALSE` indicating if the nonzero structure of the
8063                  inodes or the nonzero elements is wanted. For `MATBAIJ` matrices the compressed version is
8064                  always used.
8065 . n               - size of (possibly compressed) matrix
8066 . ia              - the row pointers
8067 - ja              - the column indices
8068 
8069   Output Parameter:
8070 . done - `PETSC_TRUE` or `PETSC_FALSE` indicated that the values have been returned
8071 
8072   Level: developer
8073 
8074   Note:
8075   This routine zeros out `n`, `ia`, and `ja`. This is to prevent accidental
8076   us of the array after it has been restored. If you pass `NULL`, it will
8077   not zero the pointers.  Use of ia or ja after `MatRestoreRowIJ()` is invalid.
8078 
8079   Fortran Note:
8080   `MatRestoreRowIJ()` Fortran binding is deprecated (since PETSc 3.19), use `MatRestoreRowIJF90()`
8081 
8082 .seealso: [](ch_matrices), `Mat`, `MatGetRowIJ()`, `MatRestoreRowIJF90()`, `MatRestoreColumnIJ()`
8083 @*/
8084 PetscErrorCode MatRestoreRowIJ(Mat mat, PetscInt shift, PetscBool symmetric, PetscBool inodecompressed, PetscInt *n, const PetscInt *ia[], const PetscInt *ja[], PetscBool *done)
8085 {
8086   PetscFunctionBegin;
8087   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8088   PetscValidType(mat, 1);
8089   if (ia) PetscAssertPointer(ia, 6);
8090   if (ja) PetscAssertPointer(ja, 7);
8091   if (done) PetscAssertPointer(done, 8);
8092   MatCheckPreallocated(mat, 1);
8093 
8094   if (!mat->ops->restorerowij && done) *done = PETSC_FALSE;
8095   else {
8096     if (done) *done = PETSC_TRUE;
8097     PetscUseTypeMethod(mat, restorerowij, shift, symmetric, inodecompressed, n, ia, ja, done);
8098     if (n) *n = 0;
8099     if (ia) *ia = NULL;
8100     if (ja) *ja = NULL;
8101   }
8102   PetscFunctionReturn(PETSC_SUCCESS);
8103 }
8104 
8105 /*@C
8106   MatRestoreColumnIJ - Call after you are completed with the ia,ja indices obtained with `MatGetColumnIJ()`.
8107 
8108   Collective
8109 
8110   Input Parameters:
8111 + mat             - the matrix
8112 . shift           - 1 or zero indicating we want the indices starting at 0 or 1
8113 . symmetric       - `PETSC_TRUE` or `PETSC_FALSE` indicating the matrix data structure should be symmetrized
8114 - inodecompressed - `PETSC_TRUE` or `PETSC_FALSE` indicating if the nonzero structure of the
8115                  inodes or the nonzero elements is wanted. For `MATBAIJ` matrices the compressed version is
8116                  always used.
8117 
8118   Output Parameters:
8119 + n    - size of (possibly compressed) matrix
8120 . ia   - the column pointers
8121 . ja   - the row indices
8122 - done - `PETSC_TRUE` or `PETSC_FALSE` indicated that the values have been returned
8123 
8124   Level: developer
8125 
8126 .seealso: [](ch_matrices), `Mat`, `MatGetColumnIJ()`, `MatRestoreRowIJ()`
8127 @*/
8128 PetscErrorCode MatRestoreColumnIJ(Mat mat, PetscInt shift, PetscBool symmetric, PetscBool inodecompressed, PetscInt *n, const PetscInt *ia[], const PetscInt *ja[], PetscBool *done)
8129 {
8130   PetscFunctionBegin;
8131   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8132   PetscValidType(mat, 1);
8133   if (ia) PetscAssertPointer(ia, 6);
8134   if (ja) PetscAssertPointer(ja, 7);
8135   PetscAssertPointer(done, 8);
8136   MatCheckPreallocated(mat, 1);
8137 
8138   if (!mat->ops->restorecolumnij) *done = PETSC_FALSE;
8139   else {
8140     *done = PETSC_TRUE;
8141     PetscUseTypeMethod(mat, restorecolumnij, shift, symmetric, inodecompressed, n, ia, ja, done);
8142     if (n) *n = 0;
8143     if (ia) *ia = NULL;
8144     if (ja) *ja = NULL;
8145   }
8146   PetscFunctionReturn(PETSC_SUCCESS);
8147 }
8148 
8149 /*@C
8150   MatColoringPatch - Used inside matrix coloring routines that use `MatGetRowIJ()` and/or
8151   `MatGetColumnIJ()`.
8152 
8153   Collective
8154 
8155   Input Parameters:
8156 + mat        - the matrix
8157 . ncolors    - maximum color value
8158 . n          - number of entries in colorarray
8159 - colorarray - array indicating color for each column
8160 
8161   Output Parameter:
8162 . iscoloring - coloring generated using colorarray information
8163 
8164   Level: developer
8165 
8166 .seealso: [](ch_matrices), `Mat`, `MatGetRowIJ()`, `MatGetColumnIJ()`
8167 @*/
8168 PetscErrorCode MatColoringPatch(Mat mat, PetscInt ncolors, PetscInt n, ISColoringValue colorarray[], ISColoring *iscoloring)
8169 {
8170   PetscFunctionBegin;
8171   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8172   PetscValidType(mat, 1);
8173   PetscAssertPointer(colorarray, 4);
8174   PetscAssertPointer(iscoloring, 5);
8175   MatCheckPreallocated(mat, 1);
8176 
8177   if (!mat->ops->coloringpatch) {
8178     PetscCall(ISColoringCreate(PetscObjectComm((PetscObject)mat), ncolors, n, colorarray, PETSC_OWN_POINTER, iscoloring));
8179   } else {
8180     PetscUseTypeMethod(mat, coloringpatch, ncolors, n, colorarray, iscoloring);
8181   }
8182   PetscFunctionReturn(PETSC_SUCCESS);
8183 }
8184 
8185 /*@
8186   MatSetUnfactored - Resets a factored matrix to be treated as unfactored.
8187 
8188   Logically Collective
8189 
8190   Input Parameter:
8191 . mat - the factored matrix to be reset
8192 
8193   Level: developer
8194 
8195   Notes:
8196   This routine should be used only with factored matrices formed by in-place
8197   factorization via ILU(0) (or by in-place LU factorization for the `MATSEQDENSE`
8198   format).  This option can save memory, for example, when solving nonlinear
8199   systems with a matrix-free Newton-Krylov method and a matrix-based, in-place
8200   ILU(0) preconditioner.
8201 
8202   One can specify in-place ILU(0) factorization by calling
8203 .vb
8204      PCType(pc,PCILU);
8205      PCFactorSeUseInPlace(pc);
8206 .ve
8207   or by using the options -pc_type ilu -pc_factor_in_place
8208 
8209   In-place factorization ILU(0) can also be used as a local
8210   solver for the blocks within the block Jacobi or additive Schwarz
8211   methods (runtime option: -sub_pc_factor_in_place).  See Users-Manual: ch_pc
8212   for details on setting local solver options.
8213 
8214   Most users should employ the `KSP` interface for linear solvers
8215   instead of working directly with matrix algebra routines such as this.
8216   See, e.g., `KSPCreate()`.
8217 
8218 .seealso: [](ch_matrices), `Mat`, `PCFactorSetUseInPlace()`, `PCFactorGetUseInPlace()`
8219 @*/
8220 PetscErrorCode MatSetUnfactored(Mat mat)
8221 {
8222   PetscFunctionBegin;
8223   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8224   PetscValidType(mat, 1);
8225   MatCheckPreallocated(mat, 1);
8226   mat->factortype = MAT_FACTOR_NONE;
8227   if (!mat->ops->setunfactored) PetscFunctionReturn(PETSC_SUCCESS);
8228   PetscUseTypeMethod(mat, setunfactored);
8229   PetscFunctionReturn(PETSC_SUCCESS);
8230 }
8231 
8232 /*MC
8233     MatDenseGetArrayF90 - Accesses a matrix array from Fortran
8234 
8235     Synopsis:
8236     MatDenseGetArrayF90(Mat x,{Scalar, pointer :: xx_v(:,:)},integer ierr)
8237 
8238     Not Collective
8239 
8240     Input Parameter:
8241 .   x - matrix
8242 
8243     Output Parameters:
8244 +   xx_v - the Fortran pointer to the array
8245 -   ierr - error code
8246 
8247     Example of Usage:
8248 .vb
8249       PetscScalar, pointer xx_v(:,:)
8250       ....
8251       call MatDenseGetArrayF90(x,xx_v,ierr)
8252       a = xx_v(3)
8253       call MatDenseRestoreArrayF90(x,xx_v,ierr)
8254 .ve
8255 
8256     Level: advanced
8257 
8258 .seealso: [](ch_matrices), `Mat`, `MatDenseRestoreArrayF90()`, `MatDenseGetArray()`, `MatDenseRestoreArray()`, `MatSeqAIJGetArrayF90()`
8259 M*/
8260 
8261 /*MC
8262     MatDenseRestoreArrayF90 - Restores a matrix array that has been
8263     accessed with `MatDenseGetArrayF90()`.
8264 
8265     Synopsis:
8266     MatDenseRestoreArrayF90(Mat x,{Scalar, pointer :: xx_v(:,:)},integer ierr)
8267 
8268     Not Collective
8269 
8270     Input Parameters:
8271 +   x - matrix
8272 -   xx_v - the Fortran90 pointer to the array
8273 
8274     Output Parameter:
8275 .   ierr - error code
8276 
8277     Example of Usage:
8278 .vb
8279        PetscScalar, pointer xx_v(:,:)
8280        ....
8281        call MatDenseGetArrayF90(x,xx_v,ierr)
8282        a = xx_v(3)
8283        call MatDenseRestoreArrayF90(x,xx_v,ierr)
8284 .ve
8285 
8286     Level: advanced
8287 
8288 .seealso: [](ch_matrices), `Mat`, `MatDenseGetArrayF90()`, `MatDenseGetArray()`, `MatDenseRestoreArray()`, `MatSeqAIJRestoreArrayF90()`
8289 M*/
8290 
8291 /*MC
8292     MatSeqAIJGetArrayF90 - Accesses a matrix array from Fortran.
8293 
8294     Synopsis:
8295     MatSeqAIJGetArrayF90(Mat x,{Scalar, pointer :: xx_v(:)},integer ierr)
8296 
8297     Not Collective
8298 
8299     Input Parameter:
8300 .   x - matrix
8301 
8302     Output Parameters:
8303 +   xx_v - the Fortran pointer to the array
8304 -   ierr - error code
8305 
8306     Example of Usage:
8307 .vb
8308       PetscScalar, pointer xx_v(:)
8309       ....
8310       call MatSeqAIJGetArrayF90(x,xx_v,ierr)
8311       a = xx_v(3)
8312       call MatSeqAIJRestoreArrayF90(x,xx_v,ierr)
8313 .ve
8314 
8315     Level: advanced
8316 
8317 .seealso: [](ch_matrices), `Mat`, `MatSeqAIJRestoreArrayF90()`, `MatSeqAIJGetArray()`, `MatSeqAIJRestoreArray()`, `MatDenseGetArrayF90()`
8318 M*/
8319 
8320 /*MC
8321     MatSeqAIJRestoreArrayF90 - Restores a matrix array that has been
8322     accessed with `MatSeqAIJGetArrayF90()`.
8323 
8324     Synopsis:
8325     MatSeqAIJRestoreArrayF90(Mat x,{Scalar, pointer :: xx_v(:)},integer ierr)
8326 
8327     Not Collective
8328 
8329     Input Parameters:
8330 +   x - matrix
8331 -   xx_v - the Fortran90 pointer to the array
8332 
8333     Output Parameter:
8334 .   ierr - error code
8335 
8336     Example of Usage:
8337 .vb
8338        PetscScalar, pointer xx_v(:)
8339        ....
8340        call MatSeqAIJGetArrayF90(x,xx_v,ierr)
8341        a = xx_v(3)
8342        call MatSeqAIJRestoreArrayF90(x,xx_v,ierr)
8343 .ve
8344 
8345     Level: advanced
8346 
8347 .seealso: [](ch_matrices), `Mat`, `MatSeqAIJGetArrayF90()`, `MatSeqAIJGetArray()`, `MatSeqAIJRestoreArray()`, `MatDenseRestoreArrayF90()`
8348 M*/
8349 
8350 /*@
8351   MatCreateSubMatrix - Gets a single submatrix on the same number of processors
8352   as the original matrix.
8353 
8354   Collective
8355 
8356   Input Parameters:
8357 + mat   - the original matrix
8358 . isrow - parallel `IS` containing the rows this processor should obtain
8359 . iscol - parallel `IS` containing all columns you wish to keep. Each process should list the columns that will be in IT's "diagonal part" in the new matrix.
8360 - cll   - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
8361 
8362   Output Parameter:
8363 . newmat - the new submatrix, of the same type as the original matrix
8364 
8365   Level: advanced
8366 
8367   Notes:
8368   The submatrix will be able to be multiplied with vectors using the same layout as `iscol`.
8369 
8370   Some matrix types place restrictions on the row and column indices, such
8371   as that they be sorted or that they be equal to each other. For `MATBAIJ` and `MATSBAIJ` matrices the indices must include all rows/columns of a block;
8372   for example, if the block size is 3 one cannot select the 0 and 2 rows without selecting the 1 row.
8373 
8374   The index sets may not have duplicate entries.
8375 
8376   The first time this is called you should use a cll of `MAT_INITIAL_MATRIX`,
8377   the `MatCreateSubMatrix()` routine will create the newmat for you. Any additional calls
8378   to this routine with a mat of the same nonzero structure and with a call of `MAT_REUSE_MATRIX`
8379   will reuse the matrix generated the first time.  You should call `MatDestroy()` on `newmat` when
8380   you are finished using it.
8381 
8382   The communicator of the newly obtained matrix is ALWAYS the same as the communicator of
8383   the input matrix.
8384 
8385   If `iscol` is `NULL` then all columns are obtained (not supported in Fortran).
8386 
8387   If `isrow` and `iscol` have a nontrivial block-size then the resulting matrix has this block-size as well. This feature
8388   is used by `PCFIELDSPLIT` to allow easy nesting of its use.
8389 
8390   Example usage:
8391   Consider the following 8x8 matrix with 34 non-zero values, that is
8392   assembled across 3 processors. Let's assume that proc0 owns 3 rows,
8393   proc1 owns 3 rows, proc2 owns 2 rows. This division can be shown
8394   as follows
8395 .vb
8396             1  2  0  |  0  3  0  |  0  4
8397     Proc0   0  5  6  |  7  0  0  |  8  0
8398             9  0 10  | 11  0  0  | 12  0
8399     -------------------------------------
8400            13  0 14  | 15 16 17  |  0  0
8401     Proc1   0 18  0  | 19 20 21  |  0  0
8402             0  0  0  | 22 23  0  | 24  0
8403     -------------------------------------
8404     Proc2  25 26 27  |  0  0 28  | 29  0
8405            30  0  0  | 31 32 33  |  0 34
8406 .ve
8407 
8408   Suppose `isrow` = [0 1 | 4 | 6 7] and `iscol` = [1 2 | 3 4 5 | 6].  The resulting submatrix is
8409 
8410 .vb
8411             2  0  |  0  3  0  |  0
8412     Proc0   5  6  |  7  0  0  |  8
8413     -------------------------------
8414     Proc1  18  0  | 19 20 21  |  0
8415     -------------------------------
8416     Proc2  26 27  |  0  0 28  | 29
8417             0  0  | 31 32 33  |  0
8418 .ve
8419 
8420 .seealso: [](ch_matrices), `Mat`, `MatCreateSubMatrices()`, `MatCreateSubMatricesMPI()`, `MatCreateSubMatrixVirtual()`, `MatSubMatrixVirtualUpdate()`
8421 @*/
8422 PetscErrorCode MatCreateSubMatrix(Mat mat, IS isrow, IS iscol, MatReuse cll, Mat *newmat)
8423 {
8424   PetscMPIInt size;
8425   Mat        *local;
8426   IS          iscoltmp;
8427   PetscBool   flg;
8428 
8429   PetscFunctionBegin;
8430   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8431   PetscValidHeaderSpecific(isrow, IS_CLASSID, 2);
8432   if (iscol) PetscValidHeaderSpecific(iscol, IS_CLASSID, 3);
8433   PetscAssertPointer(newmat, 5);
8434   if (cll == MAT_REUSE_MATRIX) PetscValidHeaderSpecific(*newmat, MAT_CLASSID, 5);
8435   PetscValidType(mat, 1);
8436   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
8437   PetscCheck(cll != MAT_IGNORE_MATRIX, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Cannot use MAT_IGNORE_MATRIX");
8438 
8439   MatCheckPreallocated(mat, 1);
8440   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)mat), &size));
8441 
8442   if (!iscol || isrow == iscol) {
8443     PetscBool   stride;
8444     PetscMPIInt grabentirematrix = 0, grab;
8445     PetscCall(PetscObjectTypeCompare((PetscObject)isrow, ISSTRIDE, &stride));
8446     if (stride) {
8447       PetscInt first, step, n, rstart, rend;
8448       PetscCall(ISStrideGetInfo(isrow, &first, &step));
8449       if (step == 1) {
8450         PetscCall(MatGetOwnershipRange(mat, &rstart, &rend));
8451         if (rstart == first) {
8452           PetscCall(ISGetLocalSize(isrow, &n));
8453           if (n == rend - rstart) grabentirematrix = 1;
8454         }
8455       }
8456     }
8457     PetscCall(MPIU_Allreduce(&grabentirematrix, &grab, 1, MPI_INT, MPI_MIN, PetscObjectComm((PetscObject)mat)));
8458     if (grab) {
8459       PetscCall(PetscInfo(mat, "Getting entire matrix as submatrix\n"));
8460       if (cll == MAT_INITIAL_MATRIX) {
8461         *newmat = mat;
8462         PetscCall(PetscObjectReference((PetscObject)mat));
8463       }
8464       PetscFunctionReturn(PETSC_SUCCESS);
8465     }
8466   }
8467 
8468   if (!iscol) {
8469     PetscCall(ISCreateStride(PetscObjectComm((PetscObject)mat), mat->cmap->n, mat->cmap->rstart, 1, &iscoltmp));
8470   } else {
8471     iscoltmp = iscol;
8472   }
8473 
8474   /* if original matrix is on just one processor then use submatrix generated */
8475   if (mat->ops->createsubmatrices && !mat->ops->createsubmatrix && size == 1 && cll == MAT_REUSE_MATRIX) {
8476     PetscCall(MatCreateSubMatrices(mat, 1, &isrow, &iscoltmp, MAT_REUSE_MATRIX, &newmat));
8477     goto setproperties;
8478   } else if (mat->ops->createsubmatrices && !mat->ops->createsubmatrix && size == 1) {
8479     PetscCall(MatCreateSubMatrices(mat, 1, &isrow, &iscoltmp, MAT_INITIAL_MATRIX, &local));
8480     *newmat = *local;
8481     PetscCall(PetscFree(local));
8482     goto setproperties;
8483   } else if (!mat->ops->createsubmatrix) {
8484     /* Create a new matrix type that implements the operation using the full matrix */
8485     PetscCall(PetscLogEventBegin(MAT_CreateSubMat, mat, 0, 0, 0));
8486     switch (cll) {
8487     case MAT_INITIAL_MATRIX:
8488       PetscCall(MatCreateSubMatrixVirtual(mat, isrow, iscoltmp, newmat));
8489       break;
8490     case MAT_REUSE_MATRIX:
8491       PetscCall(MatSubMatrixVirtualUpdate(*newmat, mat, isrow, iscoltmp));
8492       break;
8493     default:
8494       SETERRQ(PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "Invalid MatReuse, must be either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX");
8495     }
8496     PetscCall(PetscLogEventEnd(MAT_CreateSubMat, mat, 0, 0, 0));
8497     goto setproperties;
8498   }
8499 
8500   PetscCall(PetscLogEventBegin(MAT_CreateSubMat, mat, 0, 0, 0));
8501   PetscUseTypeMethod(mat, createsubmatrix, isrow, iscoltmp, cll, newmat);
8502   PetscCall(PetscLogEventEnd(MAT_CreateSubMat, mat, 0, 0, 0));
8503 
8504 setproperties:
8505   PetscCall(ISEqualUnsorted(isrow, iscoltmp, &flg));
8506   if (flg) PetscCall(MatPropagateSymmetryOptions(mat, *newmat));
8507   if (!iscol) PetscCall(ISDestroy(&iscoltmp));
8508   if (*newmat && cll == MAT_INITIAL_MATRIX) PetscCall(PetscObjectStateIncrease((PetscObject)*newmat));
8509   PetscFunctionReturn(PETSC_SUCCESS);
8510 }
8511 
8512 /*@
8513   MatPropagateSymmetryOptions - Propagates symmetry options set on a matrix to another matrix
8514 
8515   Not Collective
8516 
8517   Input Parameters:
8518 + A - the matrix we wish to propagate options from
8519 - B - the matrix we wish to propagate options to
8520 
8521   Level: beginner
8522 
8523   Note:
8524   Propagates the options associated to `MAT_SYMMETRY_ETERNAL`, `MAT_STRUCTURALLY_SYMMETRIC`, `MAT_HERMITIAN`, `MAT_SPD`, `MAT_SYMMETRIC`, and `MAT_STRUCTURAL_SYMMETRY_ETERNAL`
8525 
8526 .seealso: [](ch_matrices), `Mat`, `MatSetOption()`, `MatIsSymmetricKnown()`, `MatIsSPDKnown()`, `MatIsHermitianKnown()`, `MatIsStructurallySymmetricKnown()`
8527 @*/
8528 PetscErrorCode MatPropagateSymmetryOptions(Mat A, Mat B)
8529 {
8530   PetscFunctionBegin;
8531   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
8532   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
8533   B->symmetry_eternal            = A->symmetry_eternal;
8534   B->structural_symmetry_eternal = A->structural_symmetry_eternal;
8535   B->symmetric                   = A->symmetric;
8536   B->structurally_symmetric      = A->structurally_symmetric;
8537   B->spd                         = A->spd;
8538   B->hermitian                   = A->hermitian;
8539   PetscFunctionReturn(PETSC_SUCCESS);
8540 }
8541 
8542 /*@
8543   MatStashSetInitialSize - sets the sizes of the matrix stash, that is
8544   used during the assembly process to store values that belong to
8545   other processors.
8546 
8547   Not Collective
8548 
8549   Input Parameters:
8550 + mat   - the matrix
8551 . size  - the initial size of the stash.
8552 - bsize - the initial size of the block-stash(if used).
8553 
8554   Options Database Keys:
8555 + -matstash_initial_size <size> or <size0,size1,...sizep-1>            - set initial size
8556 - -matstash_block_initial_size <bsize>  or <bsize0,bsize1,...bsizep-1> - set initial block size
8557 
8558   Level: intermediate
8559 
8560   Notes:
8561   The block-stash is used for values set with `MatSetValuesBlocked()` while
8562   the stash is used for values set with `MatSetValues()`
8563 
8564   Run with the option -info and look for output of the form
8565   MatAssemblyBegin_MPIXXX:Stash has MM entries, uses nn mallocs.
8566   to determine the appropriate value, MM, to use for size and
8567   MatAssemblyBegin_MPIXXX:Block-Stash has BMM entries, uses nn mallocs.
8568   to determine the value, BMM to use for bsize
8569 
8570 .seealso: [](ch_matrices), `MatAssemblyBegin()`, `MatAssemblyEnd()`, `Mat`, `MatStashGetInfo()`
8571 @*/
8572 PetscErrorCode MatStashSetInitialSize(Mat mat, PetscInt size, PetscInt bsize)
8573 {
8574   PetscFunctionBegin;
8575   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8576   PetscValidType(mat, 1);
8577   PetscCall(MatStashSetInitialSize_Private(&mat->stash, size));
8578   PetscCall(MatStashSetInitialSize_Private(&mat->bstash, bsize));
8579   PetscFunctionReturn(PETSC_SUCCESS);
8580 }
8581 
8582 /*@
8583   MatInterpolateAdd - $w = y + A*x$ or $A^T*x$ depending on the shape of
8584   the matrix
8585 
8586   Neighbor-wise Collective
8587 
8588   Input Parameters:
8589 + A - the matrix
8590 . x - the vector to be multiplied by the interpolation operator
8591 - y - the vector to be added to the result
8592 
8593   Output Parameter:
8594 . w - the resulting vector
8595 
8596   Level: intermediate
8597 
8598   Notes:
8599   `w` may be the same vector as `y`.
8600 
8601   This allows one to use either the restriction or interpolation (its transpose)
8602   matrix to do the interpolation
8603 
8604 .seealso: [](ch_matrices), `Mat`, `MatMultAdd()`, `MatMultTransposeAdd()`, `MatRestrict()`, `PCMG`
8605 @*/
8606 PetscErrorCode MatInterpolateAdd(Mat A, Vec x, Vec y, Vec w)
8607 {
8608   PetscInt M, N, Ny;
8609 
8610   PetscFunctionBegin;
8611   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
8612   PetscValidHeaderSpecific(x, VEC_CLASSID, 2);
8613   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
8614   PetscValidHeaderSpecific(w, VEC_CLASSID, 4);
8615   PetscCall(MatGetSize(A, &M, &N));
8616   PetscCall(VecGetSize(y, &Ny));
8617   if (M == Ny) {
8618     PetscCall(MatMultAdd(A, x, y, w));
8619   } else {
8620     PetscCall(MatMultTransposeAdd(A, x, y, w));
8621   }
8622   PetscFunctionReturn(PETSC_SUCCESS);
8623 }
8624 
8625 /*@
8626   MatInterpolate - $y = A*x$ or $A^T*x$ depending on the shape of
8627   the matrix
8628 
8629   Neighbor-wise Collective
8630 
8631   Input Parameters:
8632 + A - the matrix
8633 - x - the vector to be interpolated
8634 
8635   Output Parameter:
8636 . y - the resulting vector
8637 
8638   Level: intermediate
8639 
8640   Note:
8641   This allows one to use either the restriction or interpolation (its transpose)
8642   matrix to do the interpolation
8643 
8644 .seealso: [](ch_matrices), `Mat`, `MatMultAdd()`, `MatMultTransposeAdd()`, `MatRestrict()`, `PCMG`
8645 @*/
8646 PetscErrorCode MatInterpolate(Mat A, Vec x, Vec y)
8647 {
8648   PetscInt M, N, Ny;
8649 
8650   PetscFunctionBegin;
8651   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
8652   PetscValidHeaderSpecific(x, VEC_CLASSID, 2);
8653   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
8654   PetscCall(MatGetSize(A, &M, &N));
8655   PetscCall(VecGetSize(y, &Ny));
8656   if (M == Ny) {
8657     PetscCall(MatMult(A, x, y));
8658   } else {
8659     PetscCall(MatMultTranspose(A, x, y));
8660   }
8661   PetscFunctionReturn(PETSC_SUCCESS);
8662 }
8663 
8664 /*@
8665   MatRestrict - $y = A*x$ or $A^T*x$
8666 
8667   Neighbor-wise Collective
8668 
8669   Input Parameters:
8670 + A - the matrix
8671 - x - the vector to be restricted
8672 
8673   Output Parameter:
8674 . y - the resulting vector
8675 
8676   Level: intermediate
8677 
8678   Note:
8679   This allows one to use either the restriction or interpolation (its transpose)
8680   matrix to do the restriction
8681 
8682 .seealso: [](ch_matrices), `Mat`, `MatMultAdd()`, `MatMultTransposeAdd()`, `MatInterpolate()`, `PCMG`
8683 @*/
8684 PetscErrorCode MatRestrict(Mat A, Vec x, Vec y)
8685 {
8686   PetscInt M, N, Nx;
8687 
8688   PetscFunctionBegin;
8689   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
8690   PetscValidHeaderSpecific(x, VEC_CLASSID, 2);
8691   PetscValidHeaderSpecific(y, VEC_CLASSID, 3);
8692   PetscCall(MatGetSize(A, &M, &N));
8693   PetscCall(VecGetSize(x, &Nx));
8694   if (M == Nx) {
8695     PetscCall(MatMultTranspose(A, x, y));
8696   } else {
8697     PetscCall(MatMult(A, x, y));
8698   }
8699   PetscFunctionReturn(PETSC_SUCCESS);
8700 }
8701 
8702 /*@
8703   MatMatInterpolateAdd - $Y = W + A*X$ or $W + A^T*X$ depending on the shape of `A`
8704 
8705   Neighbor-wise Collective
8706 
8707   Input Parameters:
8708 + A - the matrix
8709 . x - the input dense matrix to be multiplied
8710 - w - the input dense matrix to be added to the result
8711 
8712   Output Parameter:
8713 . y - the output dense matrix
8714 
8715   Level: intermediate
8716 
8717   Note:
8718   This allows one to use either the restriction or interpolation (its transpose)
8719   matrix to do the interpolation. `y` matrix can be reused if already created with the proper sizes,
8720   otherwise it will be recreated. `y` must be initialized to `NULL` if not supplied.
8721 
8722 .seealso: [](ch_matrices), `Mat`, `MatInterpolateAdd()`, `MatMatInterpolate()`, `MatMatRestrict()`, `PCMG`
8723 @*/
8724 PetscErrorCode MatMatInterpolateAdd(Mat A, Mat x, Mat w, Mat *y)
8725 {
8726   PetscInt  M, N, Mx, Nx, Mo, My = 0, Ny = 0;
8727   PetscBool trans = PETSC_TRUE;
8728   MatReuse  reuse = MAT_INITIAL_MATRIX;
8729 
8730   PetscFunctionBegin;
8731   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
8732   PetscValidHeaderSpecific(x, MAT_CLASSID, 2);
8733   PetscValidType(x, 2);
8734   if (w) PetscValidHeaderSpecific(w, MAT_CLASSID, 3);
8735   if (*y) PetscValidHeaderSpecific(*y, MAT_CLASSID, 4);
8736   PetscCall(MatGetSize(A, &M, &N));
8737   PetscCall(MatGetSize(x, &Mx, &Nx));
8738   if (N == Mx) trans = PETSC_FALSE;
8739   else PetscCheck(M == Mx, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Size mismatch: A %" PetscInt_FMT "x%" PetscInt_FMT ", X %" PetscInt_FMT "x%" PetscInt_FMT, M, N, Mx, Nx);
8740   Mo = trans ? N : M;
8741   if (*y) {
8742     PetscCall(MatGetSize(*y, &My, &Ny));
8743     if (Mo == My && Nx == Ny) {
8744       reuse = MAT_REUSE_MATRIX;
8745     } else {
8746       PetscCheck(w || *y != w, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Cannot reuse y and w, size mismatch: A %" PetscInt_FMT "x%" PetscInt_FMT ", X %" PetscInt_FMT "x%" PetscInt_FMT ", Y %" PetscInt_FMT "x%" PetscInt_FMT, M, N, Mx, Nx, My, Ny);
8747       PetscCall(MatDestroy(y));
8748     }
8749   }
8750 
8751   if (w && *y == w) { /* this is to minimize changes in PCMG */
8752     PetscBool flg;
8753 
8754     PetscCall(PetscObjectQuery((PetscObject)*y, "__MatMatIntAdd_w", (PetscObject *)&w));
8755     if (w) {
8756       PetscInt My, Ny, Mw, Nw;
8757 
8758       PetscCall(PetscObjectTypeCompare((PetscObject)*y, ((PetscObject)w)->type_name, &flg));
8759       PetscCall(MatGetSize(*y, &My, &Ny));
8760       PetscCall(MatGetSize(w, &Mw, &Nw));
8761       if (!flg || My != Mw || Ny != Nw) w = NULL;
8762     }
8763     if (!w) {
8764       PetscCall(MatDuplicate(*y, MAT_COPY_VALUES, &w));
8765       PetscCall(PetscObjectCompose((PetscObject)*y, "__MatMatIntAdd_w", (PetscObject)w));
8766       PetscCall(PetscObjectDereference((PetscObject)w));
8767     } else {
8768       PetscCall(MatCopy(*y, w, UNKNOWN_NONZERO_PATTERN));
8769     }
8770   }
8771   if (!trans) {
8772     PetscCall(MatMatMult(A, x, reuse, PETSC_DEFAULT, y));
8773   } else {
8774     PetscCall(MatTransposeMatMult(A, x, reuse, PETSC_DEFAULT, y));
8775   }
8776   if (w) PetscCall(MatAXPY(*y, 1.0, w, UNKNOWN_NONZERO_PATTERN));
8777   PetscFunctionReturn(PETSC_SUCCESS);
8778 }
8779 
8780 /*@
8781   MatMatInterpolate - $Y = A*X$ or $A^T*X$ depending on the shape of `A`
8782 
8783   Neighbor-wise Collective
8784 
8785   Input Parameters:
8786 + A - the matrix
8787 - x - the input dense matrix
8788 
8789   Output Parameter:
8790 . y - the output dense matrix
8791 
8792   Level: intermediate
8793 
8794   Note:
8795   This allows one to use either the restriction or interpolation (its transpose)
8796   matrix to do the interpolation. `y` matrix can be reused if already created with the proper sizes,
8797   otherwise it will be recreated. `y` must be initialized to `NULL` if not supplied.
8798 
8799 .seealso: [](ch_matrices), `Mat`, `MatInterpolate()`, `MatRestrict()`, `MatMatRestrict()`, `PCMG`
8800 @*/
8801 PetscErrorCode MatMatInterpolate(Mat A, Mat x, Mat *y)
8802 {
8803   PetscFunctionBegin;
8804   PetscCall(MatMatInterpolateAdd(A, x, NULL, y));
8805   PetscFunctionReturn(PETSC_SUCCESS);
8806 }
8807 
8808 /*@
8809   MatMatRestrict - $Y = A*X$ or $A^T*X$ depending on the shape of `A`
8810 
8811   Neighbor-wise Collective
8812 
8813   Input Parameters:
8814 + A - the matrix
8815 - x - the input dense matrix
8816 
8817   Output Parameter:
8818 . y - the output dense matrix
8819 
8820   Level: intermediate
8821 
8822   Note:
8823   This allows one to use either the restriction or interpolation (its transpose)
8824   matrix to do the restriction. `y` matrix can be reused if already created with the proper sizes,
8825   otherwise it will be recreated. `y` must be initialized to `NULL` if not supplied.
8826 
8827 .seealso: [](ch_matrices), `Mat`, `MatRestrict()`, `MatInterpolate()`, `MatMatInterpolate()`, `PCMG`
8828 @*/
8829 PetscErrorCode MatMatRestrict(Mat A, Mat x, Mat *y)
8830 {
8831   PetscFunctionBegin;
8832   PetscCall(MatMatInterpolateAdd(A, x, NULL, y));
8833   PetscFunctionReturn(PETSC_SUCCESS);
8834 }
8835 
8836 /*@
8837   MatGetNullSpace - retrieves the null space of a matrix.
8838 
8839   Logically Collective
8840 
8841   Input Parameters:
8842 + mat    - the matrix
8843 - nullsp - the null space object
8844 
8845   Level: developer
8846 
8847 .seealso: [](ch_matrices), `Mat`, `MatCreate()`, `MatNullSpaceCreate()`, `MatSetNearNullSpace()`, `MatSetNullSpace()`, `MatNullSpace`
8848 @*/
8849 PetscErrorCode MatGetNullSpace(Mat mat, MatNullSpace *nullsp)
8850 {
8851   PetscFunctionBegin;
8852   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8853   PetscAssertPointer(nullsp, 2);
8854   *nullsp = (mat->symmetric == PETSC_BOOL3_TRUE && !mat->nullsp) ? mat->transnullsp : mat->nullsp;
8855   PetscFunctionReturn(PETSC_SUCCESS);
8856 }
8857 
8858 /*@
8859   MatSetNullSpace - attaches a null space to a matrix.
8860 
8861   Logically Collective
8862 
8863   Input Parameters:
8864 + mat    - the matrix
8865 - nullsp - the null space object
8866 
8867   Level: advanced
8868 
8869   Notes:
8870   This null space is used by the `KSP` linear solvers to solve singular systems.
8871 
8872   Overwrites any previous null space that may have been attached. You can remove the null space from the matrix object by calling this routine with an nullsp of `NULL`
8873 
8874   For inconsistent singular systems (linear systems where the right hand side is not in the range of the operator) the `KSP` residuals will not converge to
8875   to zero but the linear system will still be solved in a least squares sense.
8876 
8877   The fundamental theorem of linear algebra (Gilbert Strang, Introduction to Applied Mathematics, page 72) states that
8878   the domain of a matrix A (from $R^n$ to $R^m$ (m rows, n columns) $R^n$ = the direct sum of the null space of A, n(A), + the range of $A^T$, $R(A^T)$.
8879   Similarly $R^m$ = direct sum n($A^T$) + R(A).  Hence the linear system $A x = b$ has a solution only if b in R(A) (or correspondingly b is orthogonal to
8880   n($A^T$)) and if x is a solution then x + alpha n(A) is a solution for any alpha. The minimum norm solution is orthogonal to n(A). For problems without a solution
8881   the solution that minimizes the norm of the residual (the least squares solution) can be obtained by solving A x = \hat{b} where \hat{b} is b orthogonalized to the n($A^T$).
8882   This  \hat{b} can be obtained by calling `MatNullSpaceRemove()` with the null space of the transpose of the matrix.
8883 
8884   If the matrix is known to be symmetric because it is an `MATSBAIJ` matrix or one as called
8885   `MatSetOption`(mat,`MAT_SYMMETRIC` or possibly `MAT_SYMMETRY_ETERNAL`,`PETSC_TRUE`); this
8886   routine also automatically calls `MatSetTransposeNullSpace()`.
8887 
8888   The user should call `MatNullSpaceDestroy()`.
8889 
8890 .seealso: [](ch_matrices), `Mat`, `MatCreate()`, `MatNullSpaceCreate()`, `MatSetNearNullSpace()`, `MatGetNullSpace()`, `MatSetTransposeNullSpace()`, `MatGetTransposeNullSpace()`, `MatNullSpaceRemove()`,
8891           `KSPSetPCSide()`
8892 @*/
8893 PetscErrorCode MatSetNullSpace(Mat mat, MatNullSpace nullsp)
8894 {
8895   PetscFunctionBegin;
8896   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8897   if (nullsp) PetscValidHeaderSpecific(nullsp, MAT_NULLSPACE_CLASSID, 2);
8898   if (nullsp) PetscCall(PetscObjectReference((PetscObject)nullsp));
8899   PetscCall(MatNullSpaceDestroy(&mat->nullsp));
8900   mat->nullsp = nullsp;
8901   if (mat->symmetric == PETSC_BOOL3_TRUE) PetscCall(MatSetTransposeNullSpace(mat, nullsp));
8902   PetscFunctionReturn(PETSC_SUCCESS);
8903 }
8904 
8905 /*@
8906   MatGetTransposeNullSpace - retrieves the null space of the transpose of a matrix.
8907 
8908   Logically Collective
8909 
8910   Input Parameters:
8911 + mat    - the matrix
8912 - nullsp - the null space object
8913 
8914   Level: developer
8915 
8916 .seealso: [](ch_matrices), `Mat`, `MatNullSpace`, `MatCreate()`, `MatNullSpaceCreate()`, `MatSetNearNullSpace()`, `MatSetTransposeNullSpace()`, `MatSetNullSpace()`, `MatGetNullSpace()`
8917 @*/
8918 PetscErrorCode MatGetTransposeNullSpace(Mat mat, MatNullSpace *nullsp)
8919 {
8920   PetscFunctionBegin;
8921   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8922   PetscValidType(mat, 1);
8923   PetscAssertPointer(nullsp, 2);
8924   *nullsp = (mat->symmetric == PETSC_BOOL3_TRUE && !mat->transnullsp) ? mat->nullsp : mat->transnullsp;
8925   PetscFunctionReturn(PETSC_SUCCESS);
8926 }
8927 
8928 /*@
8929   MatSetTransposeNullSpace - attaches the null space of a transpose of a matrix to the matrix
8930 
8931   Logically Collective
8932 
8933   Input Parameters:
8934 + mat    - the matrix
8935 - nullsp - the null space object
8936 
8937   Level: advanced
8938 
8939   Notes:
8940   This allows solving singular linear systems defined by the transpose of the matrix using `KSP` solvers with left preconditioning.
8941 
8942   See `MatSetNullSpace()`
8943 
8944 .seealso: [](ch_matrices), `Mat`, `MatNullSpace`, `MatCreate()`, `MatNullSpaceCreate()`, `MatSetNearNullSpace()`, `MatGetNullSpace()`, `MatSetNullSpace()`, `MatGetTransposeNullSpace()`, `MatNullSpaceRemove()`, `KSPSetPCSide()`
8945 @*/
8946 PetscErrorCode MatSetTransposeNullSpace(Mat mat, MatNullSpace nullsp)
8947 {
8948   PetscFunctionBegin;
8949   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8950   if (nullsp) PetscValidHeaderSpecific(nullsp, MAT_NULLSPACE_CLASSID, 2);
8951   if (nullsp) PetscCall(PetscObjectReference((PetscObject)nullsp));
8952   PetscCall(MatNullSpaceDestroy(&mat->transnullsp));
8953   mat->transnullsp = nullsp;
8954   PetscFunctionReturn(PETSC_SUCCESS);
8955 }
8956 
8957 /*@
8958   MatSetNearNullSpace - attaches a null space to a matrix, which is often the null space (rigid body modes) of the operator without boundary conditions
8959   This null space will be used to provide near null space vectors to a multigrid preconditioner built from this matrix.
8960 
8961   Logically Collective
8962 
8963   Input Parameters:
8964 + mat    - the matrix
8965 - nullsp - the null space object
8966 
8967   Level: advanced
8968 
8969   Notes:
8970   Overwrites any previous near null space that may have been attached
8971 
8972   You can remove the null space by calling this routine with an `nullsp` of `NULL`
8973 
8974 .seealso: [](ch_matrices), `Mat`, `MatNullSpace`, `MatCreate()`, `MatNullSpaceCreate()`, `MatSetNullSpace()`, `MatNullSpaceCreateRigidBody()`, `MatGetNearNullSpace()`
8975 @*/
8976 PetscErrorCode MatSetNearNullSpace(Mat mat, MatNullSpace nullsp)
8977 {
8978   PetscFunctionBegin;
8979   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
8980   PetscValidType(mat, 1);
8981   if (nullsp) PetscValidHeaderSpecific(nullsp, MAT_NULLSPACE_CLASSID, 2);
8982   MatCheckPreallocated(mat, 1);
8983   if (nullsp) PetscCall(PetscObjectReference((PetscObject)nullsp));
8984   PetscCall(MatNullSpaceDestroy(&mat->nearnullsp));
8985   mat->nearnullsp = nullsp;
8986   PetscFunctionReturn(PETSC_SUCCESS);
8987 }
8988 
8989 /*@
8990   MatGetNearNullSpace - Get null space attached with `MatSetNearNullSpace()`
8991 
8992   Not Collective
8993 
8994   Input Parameter:
8995 . mat - the matrix
8996 
8997   Output Parameter:
8998 . nullsp - the null space object, `NULL` if not set
8999 
9000   Level: advanced
9001 
9002 .seealso: [](ch_matrices), `Mat`, `MatNullSpace`, `MatSetNearNullSpace()`, `MatGetNullSpace()`, `MatNullSpaceCreate()`
9003 @*/
9004 PetscErrorCode MatGetNearNullSpace(Mat mat, MatNullSpace *nullsp)
9005 {
9006   PetscFunctionBegin;
9007   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
9008   PetscValidType(mat, 1);
9009   PetscAssertPointer(nullsp, 2);
9010   MatCheckPreallocated(mat, 1);
9011   *nullsp = mat->nearnullsp;
9012   PetscFunctionReturn(PETSC_SUCCESS);
9013 }
9014 
9015 /*@C
9016   MatICCFactor - Performs in-place incomplete Cholesky factorization of matrix.
9017 
9018   Collective
9019 
9020   Input Parameters:
9021 + mat  - the matrix
9022 . row  - row/column permutation
9023 - info - information on desired factorization process
9024 
9025   Level: developer
9026 
9027   Notes:
9028   Probably really in-place only when level of fill is zero, otherwise allocates
9029   new space to store factored matrix and deletes previous memory.
9030 
9031   Most users should employ the `KSP` interface for linear solvers
9032   instead of working directly with matrix algebra routines such as this.
9033   See, e.g., `KSPCreate()`.
9034 
9035   Developer Note:
9036   The Fortran interface is not autogenerated as the
9037   interface definition cannot be generated correctly [due to `MatFactorInfo`]
9038 
9039 .seealso: [](ch_matrices), `Mat`, `MatFactorInfo`, `MatGetFactor()`, `MatICCFactorSymbolic()`, `MatLUFactorNumeric()`, `MatCholeskyFactor()`
9040 @*/
9041 PetscErrorCode MatICCFactor(Mat mat, IS row, const MatFactorInfo *info)
9042 {
9043   PetscFunctionBegin;
9044   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
9045   PetscValidType(mat, 1);
9046   if (row) PetscValidHeaderSpecific(row, IS_CLASSID, 2);
9047   PetscAssertPointer(info, 3);
9048   PetscCheck(mat->rmap->N == mat->cmap->N, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONG, "matrix must be square");
9049   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
9050   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
9051   MatCheckPreallocated(mat, 1);
9052   PetscUseTypeMethod(mat, iccfactor, row, info);
9053   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
9054   PetscFunctionReturn(PETSC_SUCCESS);
9055 }
9056 
9057 /*@
9058   MatDiagonalScaleLocal - Scales columns of a matrix given the scaling values including the
9059   ghosted ones.
9060 
9061   Not Collective
9062 
9063   Input Parameters:
9064 + mat  - the matrix
9065 - diag - the diagonal values, including ghost ones
9066 
9067   Level: developer
9068 
9069   Notes:
9070   Works only for `MATMPIAIJ` and `MATMPIBAIJ` matrices
9071 
9072   This allows one to avoid during communication to perform the scaling that must be done with `MatDiagonalScale()`
9073 
9074 .seealso: [](ch_matrices), `Mat`, `MatDiagonalScale()`
9075 @*/
9076 PetscErrorCode MatDiagonalScaleLocal(Mat mat, Vec diag)
9077 {
9078   PetscMPIInt size;
9079 
9080   PetscFunctionBegin;
9081   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
9082   PetscValidHeaderSpecific(diag, VEC_CLASSID, 2);
9083   PetscValidType(mat, 1);
9084 
9085   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Matrix must be already assembled");
9086   PetscCall(PetscLogEventBegin(MAT_Scale, mat, 0, 0, 0));
9087   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)mat), &size));
9088   if (size == 1) {
9089     PetscInt n, m;
9090     PetscCall(VecGetSize(diag, &n));
9091     PetscCall(MatGetSize(mat, NULL, &m));
9092     PetscCheck(m == n, PETSC_COMM_SELF, PETSC_ERR_SUP, "Only supported for sequential matrices when no ghost points/periodic conditions");
9093     PetscCall(MatDiagonalScale(mat, NULL, diag));
9094   } else {
9095     PetscUseMethod(mat, "MatDiagonalScaleLocal_C", (Mat, Vec), (mat, diag));
9096   }
9097   PetscCall(PetscLogEventEnd(MAT_Scale, mat, 0, 0, 0));
9098   PetscCall(PetscObjectStateIncrease((PetscObject)mat));
9099   PetscFunctionReturn(PETSC_SUCCESS);
9100 }
9101 
9102 /*@
9103   MatGetInertia - Gets the inertia from a factored matrix
9104 
9105   Collective
9106 
9107   Input Parameter:
9108 . mat - the matrix
9109 
9110   Output Parameters:
9111 + nneg  - number of negative eigenvalues
9112 . nzero - number of zero eigenvalues
9113 - npos  - number of positive eigenvalues
9114 
9115   Level: advanced
9116 
9117   Note:
9118   Matrix must have been factored by `MatCholeskyFactor()`
9119 
9120 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatCholeskyFactor()`
9121 @*/
9122 PetscErrorCode MatGetInertia(Mat mat, PetscInt *nneg, PetscInt *nzero, PetscInt *npos)
9123 {
9124   PetscFunctionBegin;
9125   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
9126   PetscValidType(mat, 1);
9127   PetscCheck(mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Unfactored matrix");
9128   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Numeric factor mat is not assembled");
9129   PetscUseTypeMethod(mat, getinertia, nneg, nzero, npos);
9130   PetscFunctionReturn(PETSC_SUCCESS);
9131 }
9132 
9133 /*@C
9134   MatSolves - Solves $A x = b$, given a factored matrix, for a collection of vectors
9135 
9136   Neighbor-wise Collective
9137 
9138   Input Parameters:
9139 + mat - the factored matrix obtained with `MatGetFactor()`
9140 - b   - the right-hand-side vectors
9141 
9142   Output Parameter:
9143 . x - the result vectors
9144 
9145   Level: developer
9146 
9147   Note:
9148   The vectors `b` and `x` cannot be the same.  I.e., one cannot
9149   call `MatSolves`(A,x,x).
9150 
9151 .seealso: [](ch_matrices), `Mat`, `Vecs`, `MatSolveAdd()`, `MatSolveTranspose()`, `MatSolveTransposeAdd()`, `MatSolve()`
9152 @*/
9153 PetscErrorCode MatSolves(Mat mat, Vecs b, Vecs x)
9154 {
9155   PetscFunctionBegin;
9156   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
9157   PetscValidType(mat, 1);
9158   PetscCheck(x != b, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_IDN, "x and b must be different vectors");
9159   PetscCheck(mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Unfactored matrix");
9160   if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(PETSC_SUCCESS);
9161 
9162   MatCheckPreallocated(mat, 1);
9163   PetscCall(PetscLogEventBegin(MAT_Solves, mat, 0, 0, 0));
9164   PetscUseTypeMethod(mat, solves, b, x);
9165   PetscCall(PetscLogEventEnd(MAT_Solves, mat, 0, 0, 0));
9166   PetscFunctionReturn(PETSC_SUCCESS);
9167 }
9168 
9169 /*@
9170   MatIsSymmetric - Test whether a matrix is symmetric
9171 
9172   Collective
9173 
9174   Input Parameters:
9175 + A   - the matrix to test
9176 - tol - difference between value and its transpose less than this amount counts as equal (use 0.0 for exact transpose)
9177 
9178   Output Parameter:
9179 . flg - the result
9180 
9181   Level: intermediate
9182 
9183   Notes:
9184   For real numbers `MatIsSymmetric()` and `MatIsHermitian()` return identical results
9185 
9186   If the matrix does not yet know if it is symmetric or not this can be an expensive operation, also available `MatIsSymmetricKnown()`
9187 
9188   One can declare that a matrix is symmetric with `MatSetOption`(mat,`MAT_SYMMETRIC`,`PETSC_TRUE`) and if it is known to remain symmetric
9189   after changes to the matrices values one can call `MatSetOption`(mat,`MAT_SYMMETRY_ETERNAL`,`PETSC_TRUE`)
9190 
9191 .seealso: [](ch_matrices), `Mat`, `MatTranspose()`, `MatIsTranspose()`, `MatIsHermitian()`, `MatIsStructurallySymmetric()`, `MatSetOption()`, `MatIsSymmetricKnown()`,
9192           `MAT_SYMMETRIC`, `MAT_SYMMETRY_ETERNAL`
9193 @*/
9194 PetscErrorCode MatIsSymmetric(Mat A, PetscReal tol, PetscBool *flg)
9195 {
9196   PetscFunctionBegin;
9197   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
9198   PetscAssertPointer(flg, 3);
9199 
9200   if (A->symmetric == PETSC_BOOL3_TRUE) *flg = PETSC_TRUE;
9201   else if (A->symmetric == PETSC_BOOL3_FALSE) *flg = PETSC_FALSE;
9202   else {
9203     PetscUseTypeMethod(A, issymmetric, tol, flg);
9204     if (!tol) PetscCall(MatSetOption(A, MAT_SYMMETRIC, *flg));
9205   }
9206   PetscFunctionReturn(PETSC_SUCCESS);
9207 }
9208 
9209 /*@
9210   MatIsHermitian - Test whether a matrix is Hermitian
9211 
9212   Collective
9213 
9214   Input Parameters:
9215 + A   - the matrix to test
9216 - tol - difference between value and its transpose less than this amount counts as equal (use 0.0 for exact Hermitian)
9217 
9218   Output Parameter:
9219 . flg - the result
9220 
9221   Level: intermediate
9222 
9223   Notes:
9224   For real numbers `MatIsSymmetric()` and `MatIsHermitian()` return identical results
9225 
9226   If the matrix does not yet know if it is Hermitian or not this can be an expensive operation, also available `MatIsHermitianKnown()`
9227 
9228   One can declare that a matrix is Hermitian with `MatSetOption`(mat,`MAT_HERMITIAN`,`PETSC_TRUE`) and if it is known to remain Hermitian
9229   after changes to the matrices values one can call `MatSetOption`(mat,`MAT_SYMEMTRY_ETERNAL`,`PETSC_TRUE`)
9230 
9231 .seealso: [](ch_matrices), `Mat`, `MatTranspose()`, `MatIsTranspose()`, `MatIsHermitianKnown()`, `MatIsStructurallySymmetric()`, `MatSetOption()`,
9232           `MatIsSymmetricKnown()`, `MatIsSymmetric()`, `MAT_HERMITIAN`, `MAT_SYMMETRY_ETERNAL`
9233 @*/
9234 PetscErrorCode MatIsHermitian(Mat A, PetscReal tol, PetscBool *flg)
9235 {
9236   PetscFunctionBegin;
9237   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
9238   PetscAssertPointer(flg, 3);
9239 
9240   if (A->hermitian == PETSC_BOOL3_TRUE) *flg = PETSC_TRUE;
9241   else if (A->hermitian == PETSC_BOOL3_FALSE) *flg = PETSC_FALSE;
9242   else {
9243     PetscUseTypeMethod(A, ishermitian, tol, flg);
9244     if (!tol) PetscCall(MatSetOption(A, MAT_HERMITIAN, *flg));
9245   }
9246   PetscFunctionReturn(PETSC_SUCCESS);
9247 }
9248 
9249 /*@
9250   MatIsSymmetricKnown - Checks if a matrix knows if it is symmetric or not and its symmetric state
9251 
9252   Not Collective
9253 
9254   Input Parameter:
9255 . A - the matrix to check
9256 
9257   Output Parameters:
9258 + set - `PETSC_TRUE` if the matrix knows its symmetry state (this tells you if the next flag is valid)
9259 - flg - the result (only valid if set is `PETSC_TRUE`)
9260 
9261   Level: advanced
9262 
9263   Notes:
9264   Does not check the matrix values directly, so this may return unknown (set = `PETSC_FALSE`). Use `MatIsSymmetric()`
9265   if you want it explicitly checked
9266 
9267   One can declare that a matrix is symmetric with `MatSetOption`(mat,`MAT_SYMMETRIC`,`PETSC_TRUE`) and if it is known to remain symmetric
9268   after changes to the matrices values one can call `MatSetOption`(mat,`MAT_SYMMETRY_ETERNAL`,`PETSC_TRUE`)
9269 
9270 .seealso: [](ch_matrices), `Mat`, `MAT_SYMMETRY_ETERNAL`, `MatTranspose()`, `MatIsTranspose()`, `MatIsHermitian()`, `MatIsStructurallySymmetric()`, `MatSetOption()`, `MatIsSymmetric()`, `MatIsHermitianKnown()`
9271 @*/
9272 PetscErrorCode MatIsSymmetricKnown(Mat A, PetscBool *set, PetscBool *flg)
9273 {
9274   PetscFunctionBegin;
9275   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
9276   PetscAssertPointer(set, 2);
9277   PetscAssertPointer(flg, 3);
9278   if (A->symmetric != PETSC_BOOL3_UNKNOWN) {
9279     *set = PETSC_TRUE;
9280     *flg = PetscBool3ToBool(A->symmetric);
9281   } else {
9282     *set = PETSC_FALSE;
9283   }
9284   PetscFunctionReturn(PETSC_SUCCESS);
9285 }
9286 
9287 /*@
9288   MatIsSPDKnown - Checks if a matrix knows if it is symmetric positive definite or not and its symmetric positive definite state
9289 
9290   Not Collective
9291 
9292   Input Parameter:
9293 . A - the matrix to check
9294 
9295   Output Parameters:
9296 + set - `PETSC_TRUE` if the matrix knows its symmetric positive definite state (this tells you if the next flag is valid)
9297 - flg - the result (only valid if set is `PETSC_TRUE`)
9298 
9299   Level: advanced
9300 
9301   Notes:
9302   Does not check the matrix values directly, so this may return unknown (set = `PETSC_FALSE`).
9303 
9304   One can declare that a matrix is SPD with `MatSetOption`(mat,`MAT_SPD`,`PETSC_TRUE`) and if it is known to remain SPD
9305   after changes to the matrices values one can call `MatSetOption`(mat,`MAT_SPD_ETERNAL`,`PETSC_TRUE`)
9306 
9307 .seealso: [](ch_matrices), `Mat`, `MAT_SPD_ETERNAL`, `MAT_SPD`, `MatTranspose()`, `MatIsTranspose()`, `MatIsHermitian()`, `MatIsStructurallySymmetric()`, `MatSetOption()`, `MatIsSymmetric()`, `MatIsHermitianKnown()`
9308 @*/
9309 PetscErrorCode MatIsSPDKnown(Mat A, PetscBool *set, PetscBool *flg)
9310 {
9311   PetscFunctionBegin;
9312   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
9313   PetscAssertPointer(set, 2);
9314   PetscAssertPointer(flg, 3);
9315   if (A->spd != PETSC_BOOL3_UNKNOWN) {
9316     *set = PETSC_TRUE;
9317     *flg = PetscBool3ToBool(A->spd);
9318   } else {
9319     *set = PETSC_FALSE;
9320   }
9321   PetscFunctionReturn(PETSC_SUCCESS);
9322 }
9323 
9324 /*@
9325   MatIsHermitianKnown - Checks if a matrix knows if it is Hermitian or not and its Hermitian state
9326 
9327   Not Collective
9328 
9329   Input Parameter:
9330 . A - the matrix to check
9331 
9332   Output Parameters:
9333 + set - `PETSC_TRUE` if the matrix knows its Hermitian state (this tells you if the next flag is valid)
9334 - flg - the result (only valid if set is `PETSC_TRUE`)
9335 
9336   Level: advanced
9337 
9338   Notes:
9339   Does not check the matrix values directly, so this may return unknown (set = `PETSC_FALSE`). Use `MatIsHermitian()`
9340   if you want it explicitly checked
9341 
9342   One can declare that a matrix is Hermitian with `MatSetOption`(mat,`MAT_HERMITIAN`,`PETSC_TRUE`) and if it is known to remain Hermitian
9343   after changes to the matrices values one can call `MatSetOption`(mat,`MAT_SYMMETRY_ETERNAL`,`PETSC_TRUE`)
9344 
9345 .seealso: [](ch_matrices), `Mat`, `MAT_SYMMETRY_ETERNAL`, `MAT_HERMITIAN`, `MatTranspose()`, `MatIsTranspose()`, `MatIsHermitian()`, `MatIsStructurallySymmetric()`, `MatSetOption()`, `MatIsSymmetric()`
9346 @*/
9347 PetscErrorCode MatIsHermitianKnown(Mat A, PetscBool *set, PetscBool *flg)
9348 {
9349   PetscFunctionBegin;
9350   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
9351   PetscAssertPointer(set, 2);
9352   PetscAssertPointer(flg, 3);
9353   if (A->hermitian != PETSC_BOOL3_UNKNOWN) {
9354     *set = PETSC_TRUE;
9355     *flg = PetscBool3ToBool(A->hermitian);
9356   } else {
9357     *set = PETSC_FALSE;
9358   }
9359   PetscFunctionReturn(PETSC_SUCCESS);
9360 }
9361 
9362 /*@
9363   MatIsStructurallySymmetric - Test whether a matrix is structurally symmetric
9364 
9365   Collective
9366 
9367   Input Parameter:
9368 . A - the matrix to test
9369 
9370   Output Parameter:
9371 . flg - the result
9372 
9373   Level: intermediate
9374 
9375   Notes:
9376   If the matrix does yet know it is structurally symmetric this can be an expensive operation, also available `MatIsStructurallySymmetricKnown()`
9377 
9378   One can declare that a matrix is structurally symmetric with `MatSetOption`(mat,`MAT_STRUCTURALLY_SYMMETRIC`,`PETSC_TRUE`) and if it is known to remain structurally
9379   symmetric after changes to the matrices values one can call `MatSetOption`(mat,`MAT_STRUCTURAL_SYMMETRY_ETERNAL`,`PETSC_TRUE`)
9380 
9381 .seealso: [](ch_matrices), `Mat`, `MAT_STRUCTURALLY_SYMMETRIC`, `MAT_STRUCTURAL_SYMMETRY_ETERNAL`, `MatTranspose()`, `MatIsTranspose()`, `MatIsHermitian()`, `MatIsSymmetric()`, `MatSetOption()`, `MatIsStructurallySymmetricKnown()`
9382 @*/
9383 PetscErrorCode MatIsStructurallySymmetric(Mat A, PetscBool *flg)
9384 {
9385   PetscFunctionBegin;
9386   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
9387   PetscAssertPointer(flg, 2);
9388   if (A->structurally_symmetric != PETSC_BOOL3_UNKNOWN) {
9389     *flg = PetscBool3ToBool(A->structurally_symmetric);
9390   } else {
9391     PetscUseTypeMethod(A, isstructurallysymmetric, flg);
9392     PetscCall(MatSetOption(A, MAT_STRUCTURALLY_SYMMETRIC, *flg));
9393   }
9394   PetscFunctionReturn(PETSC_SUCCESS);
9395 }
9396 
9397 /*@
9398   MatIsStructurallySymmetricKnown - Checks if a matrix knows if it is structurally symmetric or not and its structurally symmetric state
9399 
9400   Not Collective
9401 
9402   Input Parameter:
9403 . A - the matrix to check
9404 
9405   Output Parameters:
9406 + set - PETSC_TRUE if the matrix knows its structurally symmetric state (this tells you if the next flag is valid)
9407 - flg - the result (only valid if set is PETSC_TRUE)
9408 
9409   Level: advanced
9410 
9411   Notes:
9412   One can declare that a matrix is structurally symmetric with `MatSetOption`(mat,`MAT_STRUCTURALLY_SYMMETRIC`,`PETSC_TRUE`) and if it is known to remain structurally
9413   symmetric after changes to the matrices values one can call `MatSetOption`(mat,`MAT_STRUCTURAL_SYMMETRY_ETERNAL`,`PETSC_TRUE`)
9414 
9415   Use `MatIsStructurallySymmetric()` to explicitly check if a matrix is structurally symmetric (this is an expensive operation)
9416 
9417 .seealso: [](ch_matrices), `Mat`, `MAT_STRUCTURALLY_SYMMETRIC`, `MatTranspose()`, `MatIsTranspose()`, `MatIsHermitian()`, `MatIsStructurallySymmetric()`, `MatSetOption()`, `MatIsSymmetric()`, `MatIsHermitianKnown()`
9418 @*/
9419 PetscErrorCode MatIsStructurallySymmetricKnown(Mat A, PetscBool *set, PetscBool *flg)
9420 {
9421   PetscFunctionBegin;
9422   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
9423   PetscAssertPointer(set, 2);
9424   PetscAssertPointer(flg, 3);
9425   if (A->structurally_symmetric != PETSC_BOOL3_UNKNOWN) {
9426     *set = PETSC_TRUE;
9427     *flg = PetscBool3ToBool(A->structurally_symmetric);
9428   } else {
9429     *set = PETSC_FALSE;
9430   }
9431   PetscFunctionReturn(PETSC_SUCCESS);
9432 }
9433 
9434 /*@
9435   MatStashGetInfo - Gets how many values are currently in the matrix stash, i.e. need
9436   to be communicated to other processors during the `MatAssemblyBegin()`/`MatAssemblyEnd()` process
9437 
9438   Not Collective
9439 
9440   Input Parameter:
9441 . mat - the matrix
9442 
9443   Output Parameters:
9444 + nstash    - the size of the stash
9445 . reallocs  - the number of additional mallocs incurred.
9446 . bnstash   - the size of the block stash
9447 - breallocs - the number of additional mallocs incurred.in the block stash
9448 
9449   Level: advanced
9450 
9451 .seealso: [](ch_matrices), `MatAssemblyBegin()`, `MatAssemblyEnd()`, `Mat`, `MatStashSetInitialSize()`
9452 @*/
9453 PetscErrorCode MatStashGetInfo(Mat mat, PetscInt *nstash, PetscInt *reallocs, PetscInt *bnstash, PetscInt *breallocs)
9454 {
9455   PetscFunctionBegin;
9456   PetscCall(MatStashGetInfo_Private(&mat->stash, nstash, reallocs));
9457   PetscCall(MatStashGetInfo_Private(&mat->bstash, bnstash, breallocs));
9458   PetscFunctionReturn(PETSC_SUCCESS);
9459 }
9460 
9461 /*@C
9462   MatCreateVecs - Get vector(s) compatible with the matrix, i.e. with the same
9463   parallel layout, `PetscLayout` for rows and columns
9464 
9465   Collective
9466 
9467   Input Parameter:
9468 . mat - the matrix
9469 
9470   Output Parameters:
9471 + right - (optional) vector that the matrix can be multiplied against
9472 - left  - (optional) vector that the matrix vector product can be stored in
9473 
9474   Level: advanced
9475 
9476   Notes:
9477   The blocksize of the returned vectors is determined by the row and column block sizes set with `MatSetBlockSizes()` or the single blocksize (same for both) set by `MatSetBlockSize()`.
9478 
9479   These are new vectors which are not owned by the mat, they should be destroyed in `VecDestroy()` when no longer needed
9480 
9481 .seealso: [](ch_matrices), `Mat`, `Vec`, `VecCreate()`, `VecDestroy()`, `DMCreateGlobalVector()`
9482 @*/
9483 PetscErrorCode MatCreateVecs(Mat mat, Vec *right, Vec *left)
9484 {
9485   PetscFunctionBegin;
9486   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
9487   PetscValidType(mat, 1);
9488   if (mat->ops->getvecs) {
9489     PetscUseTypeMethod(mat, getvecs, right, left);
9490   } else {
9491     if (right) {
9492       PetscCheck(mat->cmap->n >= 0, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "PetscLayout for columns not yet setup");
9493       PetscCall(VecCreateWithLayout_Private(mat->cmap, right));
9494       PetscCall(VecSetType(*right, mat->defaultvectype));
9495 #if defined(PETSC_HAVE_VIENNACL) || defined(PETSC_HAVE_CUDA) || defined(PETSC_HAVE_HIP)
9496       if (mat->boundtocpu && mat->bindingpropagates) {
9497         PetscCall(VecSetBindingPropagates(*right, PETSC_TRUE));
9498         PetscCall(VecBindToCPU(*right, PETSC_TRUE));
9499       }
9500 #endif
9501     }
9502     if (left) {
9503       PetscCheck(mat->rmap->n >= 0, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "PetscLayout for rows not yet setup");
9504       PetscCall(VecCreateWithLayout_Private(mat->rmap, left));
9505       PetscCall(VecSetType(*left, mat->defaultvectype));
9506 #if defined(PETSC_HAVE_VIENNACL) || defined(PETSC_HAVE_CUDA) || defined(PETSC_HAVE_HIP)
9507       if (mat->boundtocpu && mat->bindingpropagates) {
9508         PetscCall(VecSetBindingPropagates(*left, PETSC_TRUE));
9509         PetscCall(VecBindToCPU(*left, PETSC_TRUE));
9510       }
9511 #endif
9512     }
9513   }
9514   PetscFunctionReturn(PETSC_SUCCESS);
9515 }
9516 
9517 /*@C
9518   MatFactorInfoInitialize - Initializes a `MatFactorInfo` data structure
9519   with default values.
9520 
9521   Not Collective
9522 
9523   Input Parameter:
9524 . info - the `MatFactorInfo` data structure
9525 
9526   Level: developer
9527 
9528   Notes:
9529   The solvers are generally used through the `KSP` and `PC` objects, for example
9530   `PCLU`, `PCILU`, `PCCHOLESKY`, `PCICC`
9531 
9532   Once the data structure is initialized one may change certain entries as desired for the particular factorization to be performed
9533 
9534   Developer Note:
9535   The Fortran interface is not autogenerated as the
9536   interface definition cannot be generated correctly [due to `MatFactorInfo`]
9537 
9538 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorInfo`
9539 @*/
9540 PetscErrorCode MatFactorInfoInitialize(MatFactorInfo *info)
9541 {
9542   PetscFunctionBegin;
9543   PetscCall(PetscMemzero(info, sizeof(MatFactorInfo)));
9544   PetscFunctionReturn(PETSC_SUCCESS);
9545 }
9546 
9547 /*@
9548   MatFactorSetSchurIS - Set indices corresponding to the Schur complement you wish to have computed
9549 
9550   Collective
9551 
9552   Input Parameters:
9553 + mat - the factored matrix
9554 - is  - the index set defining the Schur indices (0-based)
9555 
9556   Level: advanced
9557 
9558   Notes:
9559   Call `MatFactorSolveSchurComplement()` or `MatFactorSolveSchurComplementTranspose()` after this call to solve a Schur complement system.
9560 
9561   You can call `MatFactorGetSchurComplement()` or `MatFactorCreateSchurComplement()` after this call.
9562 
9563   This functionality is only supported for `MATSOLVERMUMPS` and `MATSOLVERMKL_PARDISO`
9564 
9565 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorGetSchurComplement()`, `MatFactorRestoreSchurComplement()`, `MatFactorCreateSchurComplement()`, `MatFactorSolveSchurComplement()`,
9566           `MatFactorSolveSchurComplementTranspose()`, `MATSOLVERMUMPS`, `MATSOLVERMKL_PARDISO`
9567 @*/
9568 PetscErrorCode MatFactorSetSchurIS(Mat mat, IS is)
9569 {
9570   PetscErrorCode (*f)(Mat, IS);
9571 
9572   PetscFunctionBegin;
9573   PetscValidType(mat, 1);
9574   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
9575   PetscValidType(is, 2);
9576   PetscValidHeaderSpecific(is, IS_CLASSID, 2);
9577   PetscCheckSameComm(mat, 1, is, 2);
9578   PetscCheck(mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Only for factored matrix");
9579   PetscCall(PetscObjectQueryFunction((PetscObject)mat, "MatFactorSetSchurIS_C", &f));
9580   PetscCheck(f, PetscObjectComm((PetscObject)mat), PETSC_ERR_SUP, "The selected MatSolverType does not support Schur complement computation. You should use MATSOLVERMUMPS or MATSOLVERMKL_PARDISO");
9581   PetscCall(MatDestroy(&mat->schur));
9582   PetscCall((*f)(mat, is));
9583   PetscCheck(mat->schur, PetscObjectComm((PetscObject)mat), PETSC_ERR_PLIB, "Schur complement has not been created");
9584   PetscFunctionReturn(PETSC_SUCCESS);
9585 }
9586 
9587 /*@
9588   MatFactorCreateSchurComplement - Create a Schur complement matrix object using Schur data computed during the factorization step
9589 
9590   Logically Collective
9591 
9592   Input Parameters:
9593 + F      - the factored matrix obtained by calling `MatGetFactor()`
9594 . S      - location where to return the Schur complement, can be `NULL`
9595 - status - the status of the Schur complement matrix, can be `NULL`
9596 
9597   Level: advanced
9598 
9599   Notes:
9600   You must call `MatFactorSetSchurIS()` before calling this routine.
9601 
9602   This functionality is only supported for `MATSOLVERMUMPS` and `MATSOLVERMKL_PARDISO`
9603 
9604   The routine provides a copy of the Schur matrix stored within the solver data structures.
9605   The caller must destroy the object when it is no longer needed.
9606   If `MatFactorInvertSchurComplement()` has been called, the routine gets back the inverse.
9607 
9608   Use `MatFactorGetSchurComplement()` to get access to the Schur complement matrix inside the factored matrix instead of making a copy of it (which this function does)
9609 
9610   See `MatCreateSchurComplement()` or `MatGetSchurComplement()` for ways to create virtual or approximate Schur complements.
9611 
9612   Developer Note:
9613   The reason this routine exists is because the representation of the Schur complement within the factor matrix may be different than a standard PETSc
9614   matrix representation and we normally do not want to use the time or memory to make a copy as a regular PETSc matrix.
9615 
9616 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorSetSchurIS()`, `MatFactorGetSchurComplement()`, `MatFactorSchurStatus`, `MATSOLVERMUMPS`, `MATSOLVERMKL_PARDISO`
9617 @*/
9618 PetscErrorCode MatFactorCreateSchurComplement(Mat F, Mat *S, MatFactorSchurStatus *status)
9619 {
9620   PetscFunctionBegin;
9621   PetscValidHeaderSpecific(F, MAT_CLASSID, 1);
9622   if (S) PetscAssertPointer(S, 2);
9623   if (status) PetscAssertPointer(status, 3);
9624   if (S) {
9625     PetscErrorCode (*f)(Mat, Mat *);
9626 
9627     PetscCall(PetscObjectQueryFunction((PetscObject)F, "MatFactorCreateSchurComplement_C", &f));
9628     if (f) {
9629       PetscCall((*f)(F, S));
9630     } else {
9631       PetscCall(MatDuplicate(F->schur, MAT_COPY_VALUES, S));
9632     }
9633   }
9634   if (status) *status = F->schur_status;
9635   PetscFunctionReturn(PETSC_SUCCESS);
9636 }
9637 
9638 /*@
9639   MatFactorGetSchurComplement - Gets access to a Schur complement matrix using the current Schur data within a factored matrix
9640 
9641   Logically Collective
9642 
9643   Input Parameters:
9644 + F      - the factored matrix obtained by calling `MatGetFactor()`
9645 . S      - location where to return the Schur complement, can be `NULL`
9646 - status - the status of the Schur complement matrix, can be `NULL`
9647 
9648   Level: advanced
9649 
9650   Notes:
9651   You must call `MatFactorSetSchurIS()` before calling this routine.
9652 
9653   Schur complement mode is currently implemented for sequential matrices with factor type of `MATSOLVERMUMPS`
9654 
9655   The routine returns a the Schur Complement stored within the data structures of the solver.
9656 
9657   If `MatFactorInvertSchurComplement()` has previously been called, the returned matrix is actually the inverse of the Schur complement.
9658 
9659   The returned matrix should not be destroyed; the caller should call `MatFactorRestoreSchurComplement()` when the object is no longer needed.
9660 
9661   Use `MatFactorCreateSchurComplement()` to create a copy of the Schur complement matrix that is within a factored matrix
9662 
9663   See `MatCreateSchurComplement()` or `MatGetSchurComplement()` for ways to create virtual or approximate Schur complements.
9664 
9665 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorSetSchurIS()`, `MatFactorRestoreSchurComplement()`, `MatFactorCreateSchurComplement()`, `MatFactorSchurStatus`
9666 @*/
9667 PetscErrorCode MatFactorGetSchurComplement(Mat F, Mat *S, MatFactorSchurStatus *status)
9668 {
9669   PetscFunctionBegin;
9670   PetscValidHeaderSpecific(F, MAT_CLASSID, 1);
9671   if (S) {
9672     PetscAssertPointer(S, 2);
9673     *S = F->schur;
9674   }
9675   if (status) {
9676     PetscAssertPointer(status, 3);
9677     *status = F->schur_status;
9678   }
9679   PetscFunctionReturn(PETSC_SUCCESS);
9680 }
9681 
9682 static PetscErrorCode MatFactorUpdateSchurStatus_Private(Mat F)
9683 {
9684   Mat S = F->schur;
9685 
9686   PetscFunctionBegin;
9687   switch (F->schur_status) {
9688   case MAT_FACTOR_SCHUR_UNFACTORED: // fall-through
9689   case MAT_FACTOR_SCHUR_INVERTED:
9690     if (S) {
9691       S->ops->solve             = NULL;
9692       S->ops->matsolve          = NULL;
9693       S->ops->solvetranspose    = NULL;
9694       S->ops->matsolvetranspose = NULL;
9695       S->ops->solveadd          = NULL;
9696       S->ops->solvetransposeadd = NULL;
9697       S->factortype             = MAT_FACTOR_NONE;
9698       PetscCall(PetscFree(S->solvertype));
9699     }
9700   case MAT_FACTOR_SCHUR_FACTORED: // fall-through
9701     break;
9702   default:
9703     SETERRQ(PetscObjectComm((PetscObject)F), PETSC_ERR_SUP, "Unhandled MatFactorSchurStatus %d", F->schur_status);
9704   }
9705   PetscFunctionReturn(PETSC_SUCCESS);
9706 }
9707 
9708 /*@
9709   MatFactorRestoreSchurComplement - Restore the Schur complement matrix object obtained from a call to `MatFactorGetSchurComplement()`
9710 
9711   Logically Collective
9712 
9713   Input Parameters:
9714 + F      - the factored matrix obtained by calling `MatGetFactor()`
9715 . S      - location where the Schur complement is stored
9716 - status - the status of the Schur complement matrix (see `MatFactorSchurStatus`)
9717 
9718   Level: advanced
9719 
9720 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorSetSchurIS()`, `MatFactorCreateSchurComplement()`, `MatFactorSchurStatus`
9721 @*/
9722 PetscErrorCode MatFactorRestoreSchurComplement(Mat F, Mat *S, MatFactorSchurStatus status)
9723 {
9724   PetscFunctionBegin;
9725   PetscValidHeaderSpecific(F, MAT_CLASSID, 1);
9726   if (S) {
9727     PetscValidHeaderSpecific(*S, MAT_CLASSID, 2);
9728     *S = NULL;
9729   }
9730   F->schur_status = status;
9731   PetscCall(MatFactorUpdateSchurStatus_Private(F));
9732   PetscFunctionReturn(PETSC_SUCCESS);
9733 }
9734 
9735 /*@
9736   MatFactorSolveSchurComplementTranspose - Solve the transpose of the Schur complement system computed during the factorization step
9737 
9738   Logically Collective
9739 
9740   Input Parameters:
9741 + F   - the factored matrix obtained by calling `MatGetFactor()`
9742 . rhs - location where the right hand side of the Schur complement system is stored
9743 - sol - location where the solution of the Schur complement system has to be returned
9744 
9745   Level: advanced
9746 
9747   Notes:
9748   The sizes of the vectors should match the size of the Schur complement
9749 
9750   Must be called after `MatFactorSetSchurIS()`
9751 
9752 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorSetSchurIS()`, `MatFactorSolveSchurComplement()`
9753 @*/
9754 PetscErrorCode MatFactorSolveSchurComplementTranspose(Mat F, Vec rhs, Vec sol)
9755 {
9756   PetscFunctionBegin;
9757   PetscValidType(F, 1);
9758   PetscValidType(rhs, 2);
9759   PetscValidType(sol, 3);
9760   PetscValidHeaderSpecific(F, MAT_CLASSID, 1);
9761   PetscValidHeaderSpecific(rhs, VEC_CLASSID, 2);
9762   PetscValidHeaderSpecific(sol, VEC_CLASSID, 3);
9763   PetscCheckSameComm(F, 1, rhs, 2);
9764   PetscCheckSameComm(F, 1, sol, 3);
9765   PetscCall(MatFactorFactorizeSchurComplement(F));
9766   switch (F->schur_status) {
9767   case MAT_FACTOR_SCHUR_FACTORED:
9768     PetscCall(MatSolveTranspose(F->schur, rhs, sol));
9769     break;
9770   case MAT_FACTOR_SCHUR_INVERTED:
9771     PetscCall(MatMultTranspose(F->schur, rhs, sol));
9772     break;
9773   default:
9774     SETERRQ(PetscObjectComm((PetscObject)F), PETSC_ERR_SUP, "Unhandled MatFactorSchurStatus %d", F->schur_status);
9775   }
9776   PetscFunctionReturn(PETSC_SUCCESS);
9777 }
9778 
9779 /*@
9780   MatFactorSolveSchurComplement - Solve the Schur complement system computed during the factorization step
9781 
9782   Logically Collective
9783 
9784   Input Parameters:
9785 + F   - the factored matrix obtained by calling `MatGetFactor()`
9786 . rhs - location where the right hand side of the Schur complement system is stored
9787 - sol - location where the solution of the Schur complement system has to be returned
9788 
9789   Level: advanced
9790 
9791   Notes:
9792   The sizes of the vectors should match the size of the Schur complement
9793 
9794   Must be called after `MatFactorSetSchurIS()`
9795 
9796 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorSetSchurIS()`, `MatFactorSolveSchurComplementTranspose()`
9797 @*/
9798 PetscErrorCode MatFactorSolveSchurComplement(Mat F, Vec rhs, Vec sol)
9799 {
9800   PetscFunctionBegin;
9801   PetscValidType(F, 1);
9802   PetscValidType(rhs, 2);
9803   PetscValidType(sol, 3);
9804   PetscValidHeaderSpecific(F, MAT_CLASSID, 1);
9805   PetscValidHeaderSpecific(rhs, VEC_CLASSID, 2);
9806   PetscValidHeaderSpecific(sol, VEC_CLASSID, 3);
9807   PetscCheckSameComm(F, 1, rhs, 2);
9808   PetscCheckSameComm(F, 1, sol, 3);
9809   PetscCall(MatFactorFactorizeSchurComplement(F));
9810   switch (F->schur_status) {
9811   case MAT_FACTOR_SCHUR_FACTORED:
9812     PetscCall(MatSolve(F->schur, rhs, sol));
9813     break;
9814   case MAT_FACTOR_SCHUR_INVERTED:
9815     PetscCall(MatMult(F->schur, rhs, sol));
9816     break;
9817   default:
9818     SETERRQ(PetscObjectComm((PetscObject)F), PETSC_ERR_SUP, "Unhandled MatFactorSchurStatus %d", F->schur_status);
9819   }
9820   PetscFunctionReturn(PETSC_SUCCESS);
9821 }
9822 
9823 PETSC_EXTERN PetscErrorCode MatSeqDenseInvertFactors_Private(Mat);
9824 #if PetscDefined(HAVE_CUDA)
9825 PETSC_SINGLE_LIBRARY_INTERN PetscErrorCode MatSeqDenseCUDAInvertFactors_Internal(Mat);
9826 #endif
9827 
9828 /* Schur status updated in the interface */
9829 static PetscErrorCode MatFactorInvertSchurComplement_Private(Mat F)
9830 {
9831   Mat S = F->schur;
9832 
9833   PetscFunctionBegin;
9834   if (S) {
9835     PetscMPIInt size;
9836     PetscBool   isdense, isdensecuda;
9837 
9838     PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)S), &size));
9839     PetscCheck(size <= 1, PetscObjectComm((PetscObject)S), PETSC_ERR_SUP, "Not yet implemented");
9840     PetscCall(PetscObjectTypeCompare((PetscObject)S, MATSEQDENSE, &isdense));
9841     PetscCall(PetscObjectTypeCompare((PetscObject)S, MATSEQDENSECUDA, &isdensecuda));
9842     PetscCheck(isdense || isdensecuda, PetscObjectComm((PetscObject)S), PETSC_ERR_SUP, "Not implemented for type %s", ((PetscObject)S)->type_name);
9843     PetscCall(PetscLogEventBegin(MAT_FactorInvS, F, 0, 0, 0));
9844     if (isdense) {
9845       PetscCall(MatSeqDenseInvertFactors_Private(S));
9846     } else if (isdensecuda) {
9847 #if defined(PETSC_HAVE_CUDA)
9848       PetscCall(MatSeqDenseCUDAInvertFactors_Internal(S));
9849 #endif
9850     }
9851     // HIP??????????????
9852     PetscCall(PetscLogEventEnd(MAT_FactorInvS, F, 0, 0, 0));
9853   }
9854   PetscFunctionReturn(PETSC_SUCCESS);
9855 }
9856 
9857 /*@
9858   MatFactorInvertSchurComplement - Invert the Schur complement matrix computed during the factorization step
9859 
9860   Logically Collective
9861 
9862   Input Parameter:
9863 . F - the factored matrix obtained by calling `MatGetFactor()`
9864 
9865   Level: advanced
9866 
9867   Notes:
9868   Must be called after `MatFactorSetSchurIS()`.
9869 
9870   Call `MatFactorGetSchurComplement()` or  `MatFactorCreateSchurComplement()` AFTER this call to actually compute the inverse and get access to it.
9871 
9872 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorSetSchurIS()`, `MatFactorGetSchurComplement()`, `MatFactorCreateSchurComplement()`
9873 @*/
9874 PetscErrorCode MatFactorInvertSchurComplement(Mat F)
9875 {
9876   PetscFunctionBegin;
9877   PetscValidType(F, 1);
9878   PetscValidHeaderSpecific(F, MAT_CLASSID, 1);
9879   if (F->schur_status == MAT_FACTOR_SCHUR_INVERTED) PetscFunctionReturn(PETSC_SUCCESS);
9880   PetscCall(MatFactorFactorizeSchurComplement(F));
9881   PetscCall(MatFactorInvertSchurComplement_Private(F));
9882   F->schur_status = MAT_FACTOR_SCHUR_INVERTED;
9883   PetscFunctionReturn(PETSC_SUCCESS);
9884 }
9885 
9886 /*@
9887   MatFactorFactorizeSchurComplement - Factorize the Schur complement matrix computed during the factorization step
9888 
9889   Logically Collective
9890 
9891   Input Parameter:
9892 . F - the factored matrix obtained by calling `MatGetFactor()`
9893 
9894   Level: advanced
9895 
9896   Note:
9897   Must be called after `MatFactorSetSchurIS()`
9898 
9899 .seealso: [](ch_matrices), `Mat`, `MatGetFactor()`, `MatFactorSetSchurIS()`, `MatFactorInvertSchurComplement()`
9900 @*/
9901 PetscErrorCode MatFactorFactorizeSchurComplement(Mat F)
9902 {
9903   MatFactorInfo info;
9904 
9905   PetscFunctionBegin;
9906   PetscValidType(F, 1);
9907   PetscValidHeaderSpecific(F, MAT_CLASSID, 1);
9908   if (F->schur_status == MAT_FACTOR_SCHUR_INVERTED || F->schur_status == MAT_FACTOR_SCHUR_FACTORED) PetscFunctionReturn(PETSC_SUCCESS);
9909   PetscCall(PetscLogEventBegin(MAT_FactorFactS, F, 0, 0, 0));
9910   PetscCall(PetscMemzero(&info, sizeof(MatFactorInfo)));
9911   if (F->factortype == MAT_FACTOR_CHOLESKY) { /* LDL^t regarded as Cholesky */
9912     PetscCall(MatCholeskyFactor(F->schur, NULL, &info));
9913   } else {
9914     PetscCall(MatLUFactor(F->schur, NULL, NULL, &info));
9915   }
9916   PetscCall(PetscLogEventEnd(MAT_FactorFactS, F, 0, 0, 0));
9917   F->schur_status = MAT_FACTOR_SCHUR_FACTORED;
9918   PetscFunctionReturn(PETSC_SUCCESS);
9919 }
9920 
9921 /*@
9922   MatPtAP - Creates the matrix product $C = P^T * A * P$
9923 
9924   Neighbor-wise Collective
9925 
9926   Input Parameters:
9927 + A     - the matrix
9928 . P     - the projection matrix
9929 . scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
9930 - fill  - expected fill as ratio of nnz(C)/(nnz(A) + nnz(P)), use `PETSC_DEFAULT` if you do not have a good estimate
9931           if the result is a dense matrix this is irrelevant
9932 
9933   Output Parameter:
9934 . C - the product matrix
9935 
9936   Level: intermediate
9937 
9938   Notes:
9939   C will be created and must be destroyed by the user with `MatDestroy()`.
9940 
9941   An alternative approach to this function is to use `MatProductCreate()` and set the desired options before the computation is done
9942 
9943   Developer Note:
9944   For matrix types without special implementation the function fallbacks to `MatMatMult()` followed by `MatTransposeMatMult()`.
9945 
9946 .seealso: [](ch_matrices), `Mat`, `MatProductCreate()`, `MatMatMult()`, `MatRARt()`
9947 @*/
9948 PetscErrorCode MatPtAP(Mat A, Mat P, MatReuse scall, PetscReal fill, Mat *C)
9949 {
9950   PetscFunctionBegin;
9951   if (scall == MAT_REUSE_MATRIX) MatCheckProduct(*C, 5);
9952   PetscCheck(scall != MAT_INPLACE_MATRIX, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Inplace product not supported");
9953 
9954   if (scall == MAT_INITIAL_MATRIX) {
9955     PetscCall(MatProductCreate(A, P, NULL, C));
9956     PetscCall(MatProductSetType(*C, MATPRODUCT_PtAP));
9957     PetscCall(MatProductSetAlgorithm(*C, "default"));
9958     PetscCall(MatProductSetFill(*C, fill));
9959 
9960     (*C)->product->api_user = PETSC_TRUE;
9961     PetscCall(MatProductSetFromOptions(*C));
9962     PetscCheck((*C)->ops->productsymbolic, PetscObjectComm((PetscObject)(*C)), PETSC_ERR_SUP, "MatProduct %s not supported for A %s and P %s", MatProductTypes[MATPRODUCT_PtAP], ((PetscObject)A)->type_name, ((PetscObject)P)->type_name);
9963     PetscCall(MatProductSymbolic(*C));
9964   } else { /* scall == MAT_REUSE_MATRIX */
9965     PetscCall(MatProductReplaceMats(A, P, NULL, *C));
9966   }
9967 
9968   PetscCall(MatProductNumeric(*C));
9969   (*C)->symmetric = A->symmetric;
9970   (*C)->spd       = A->spd;
9971   PetscFunctionReturn(PETSC_SUCCESS);
9972 }
9973 
9974 /*@
9975   MatRARt - Creates the matrix product $C = R * A * R^T$
9976 
9977   Neighbor-wise Collective
9978 
9979   Input Parameters:
9980 + A     - the matrix
9981 . R     - the projection matrix
9982 . scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
9983 - fill  - expected fill as ratio of nnz(C)/nnz(A), use `PETSC_DEFAULT` if you do not have a good estimate
9984           if the result is a dense matrix this is irrelevant
9985 
9986   Output Parameter:
9987 . C - the product matrix
9988 
9989   Level: intermediate
9990 
9991   Notes:
9992   C will be created and must be destroyed by the user with `MatDestroy()`.
9993 
9994   An alternative approach to this function is to use `MatProductCreate()` and set the desired options before the computation is done
9995 
9996   This routine is currently only implemented for pairs of `MATAIJ` matrices and classes
9997   which inherit from `MATAIJ`. Due to PETSc sparse matrix block row distribution among processes,
9998   parallel MatRARt is implemented via explicit transpose of R, which could be very expensive.
9999   We recommend using MatPtAP().
10000 
10001 .seealso: [](ch_matrices), `Mat`, `MatProductCreate()`, `MatMatMult()`, `MatPtAP()`
10002 @*/
10003 PetscErrorCode MatRARt(Mat A, Mat R, MatReuse scall, PetscReal fill, Mat *C)
10004 {
10005   PetscFunctionBegin;
10006   if (scall == MAT_REUSE_MATRIX) MatCheckProduct(*C, 5);
10007   PetscCheck(scall != MAT_INPLACE_MATRIX, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Inplace product not supported");
10008 
10009   if (scall == MAT_INITIAL_MATRIX) {
10010     PetscCall(MatProductCreate(A, R, NULL, C));
10011     PetscCall(MatProductSetType(*C, MATPRODUCT_RARt));
10012     PetscCall(MatProductSetAlgorithm(*C, "default"));
10013     PetscCall(MatProductSetFill(*C, fill));
10014 
10015     (*C)->product->api_user = PETSC_TRUE;
10016     PetscCall(MatProductSetFromOptions(*C));
10017     PetscCheck((*C)->ops->productsymbolic, PetscObjectComm((PetscObject)(*C)), PETSC_ERR_SUP, "MatProduct %s not supported for A %s and R %s", MatProductTypes[MATPRODUCT_RARt], ((PetscObject)A)->type_name, ((PetscObject)R)->type_name);
10018     PetscCall(MatProductSymbolic(*C));
10019   } else { /* scall == MAT_REUSE_MATRIX */
10020     PetscCall(MatProductReplaceMats(A, R, NULL, *C));
10021   }
10022 
10023   PetscCall(MatProductNumeric(*C));
10024   if (A->symmetric == PETSC_BOOL3_TRUE) PetscCall(MatSetOption(*C, MAT_SYMMETRIC, PETSC_TRUE));
10025   PetscFunctionReturn(PETSC_SUCCESS);
10026 }
10027 
10028 static PetscErrorCode MatProduct_Private(Mat A, Mat B, MatReuse scall, PetscReal fill, MatProductType ptype, Mat *C)
10029 {
10030   PetscFunctionBegin;
10031   PetscCheck(scall != MAT_INPLACE_MATRIX, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Inplace product not supported");
10032 
10033   if (scall == MAT_INITIAL_MATRIX) {
10034     PetscCall(PetscInfo(A, "Calling MatProduct API with MAT_INITIAL_MATRIX and product type %s\n", MatProductTypes[ptype]));
10035     PetscCall(MatProductCreate(A, B, NULL, C));
10036     PetscCall(MatProductSetType(*C, ptype));
10037     PetscCall(MatProductSetAlgorithm(*C, MATPRODUCTALGORITHMDEFAULT));
10038     PetscCall(MatProductSetFill(*C, fill));
10039 
10040     (*C)->product->api_user = PETSC_TRUE;
10041     PetscCall(MatProductSetFromOptions(*C));
10042     PetscCall(MatProductSymbolic(*C));
10043   } else { /* scall == MAT_REUSE_MATRIX */
10044     Mat_Product *product = (*C)->product;
10045     PetscBool    isdense;
10046 
10047     PetscCall(PetscObjectBaseTypeCompareAny((PetscObject)(*C), &isdense, MATSEQDENSE, MATMPIDENSE, ""));
10048     if (isdense && product && product->type != ptype) {
10049       PetscCall(MatProductClear(*C));
10050       product = NULL;
10051     }
10052     PetscCall(PetscInfo(A, "Calling MatProduct API with MAT_REUSE_MATRIX %s product present and product type %s\n", product ? "with" : "without", MatProductTypes[ptype]));
10053     if (!product) { /* user provide the dense matrix *C without calling MatProductCreate() or reusing it from previous calls */
10054       PetscCheck(isdense, PetscObjectComm((PetscObject)(*C)), PETSC_ERR_SUP, "Call MatProductCreate() first");
10055       PetscCall(MatProductCreate_Private(A, B, NULL, *C));
10056       product           = (*C)->product;
10057       product->fill     = fill;
10058       product->api_user = PETSC_TRUE;
10059       product->clear    = PETSC_TRUE;
10060 
10061       PetscCall(MatProductSetType(*C, ptype));
10062       PetscCall(MatProductSetFromOptions(*C));
10063       PetscCheck((*C)->ops->productsymbolic, PetscObjectComm((PetscObject)(*C)), PETSC_ERR_SUP, "MatProduct %s not supported for %s and %s", MatProductTypes[ptype], ((PetscObject)A)->type_name, ((PetscObject)B)->type_name);
10064       PetscCall(MatProductSymbolic(*C));
10065     } else { /* user may change input matrices A or B when REUSE */
10066       PetscCall(MatProductReplaceMats(A, B, NULL, *C));
10067     }
10068   }
10069   PetscCall(MatProductNumeric(*C));
10070   PetscFunctionReturn(PETSC_SUCCESS);
10071 }
10072 
10073 /*@
10074   MatMatMult - Performs matrix-matrix multiplication C=A*B.
10075 
10076   Neighbor-wise Collective
10077 
10078   Input Parameters:
10079 + A     - the left matrix
10080 . B     - the right matrix
10081 . scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10082 - fill  - expected fill as ratio of nnz(C)/(nnz(A) + nnz(B)), use `PETSC_DEFAULT` if you do not have a good estimate
10083           if the result is a dense matrix this is irrelevant
10084 
10085   Output Parameter:
10086 . C - the product matrix
10087 
10088   Notes:
10089   Unless scall is `MAT_REUSE_MATRIX` C will be created.
10090 
10091   `MAT_REUSE_MATRIX` can only be used if the matrices A and B have the same nonzero pattern as in the previous call and C was obtained from a previous
10092   call to this function with `MAT_INITIAL_MATRIX`.
10093 
10094   To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value actually needed.
10095 
10096   In the special case where matrix B (and hence C) are dense you can create the correctly sized matrix C yourself and then call this routine with `MAT_REUSE_MATRIX`,
10097   rather than first having `MatMatMult()` create it for you. You can NEVER do this if the matrix C is sparse.
10098 
10099   Example of Usage:
10100 .vb
10101      MatProductCreate(A,B,NULL,&C);
10102      MatProductSetType(C,MATPRODUCT_AB);
10103      MatProductSymbolic(C);
10104      MatProductNumeric(C); // compute C=A * B
10105      MatProductReplaceMats(A1,B1,NULL,C); // compute C=A1 * B1
10106      MatProductNumeric(C);
10107      MatProductReplaceMats(A2,NULL,NULL,C); // compute C=A2 * B1
10108      MatProductNumeric(C);
10109 .ve
10110 
10111   Level: intermediate
10112 
10113 .seealso: [](ch_matrices), `Mat`, `MatProductType`, `MATPRODUCT_AB`, `MatTransposeMatMult()`, `MatMatTransposeMult()`, `MatPtAP()`, `MatProductCreate()`, `MatProductSymbolic()`, `MatProductReplaceMats()`, `MatProductNumeric()`
10114 @*/
10115 PetscErrorCode MatMatMult(Mat A, Mat B, MatReuse scall, PetscReal fill, Mat *C)
10116 {
10117   PetscFunctionBegin;
10118   PetscCall(MatProduct_Private(A, B, scall, fill, MATPRODUCT_AB, C));
10119   PetscFunctionReturn(PETSC_SUCCESS);
10120 }
10121 
10122 /*@
10123   MatMatTransposeMult - Performs matrix-matrix multiplication $C = A*B^T$.
10124 
10125   Neighbor-wise Collective
10126 
10127   Input Parameters:
10128 + A     - the left matrix
10129 . B     - the right matrix
10130 . scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10131 - fill  - expected fill as ratio of nnz(C)/(nnz(A) + nnz(B)), use `PETSC_DEFAULT` if not known
10132 
10133   Output Parameter:
10134 . C - the product matrix
10135 
10136   Options Database Key:
10137 . -matmattransmult_mpidense_mpidense_via {allgatherv,cyclic} - Choose between algorithms for `MATMPIDENSE` matrices: the
10138               first redundantly copies the transposed `B` matrix on each process and requires O(log P) communication complexity;
10139               the second never stores more than one portion of the `B` matrix at a time but requires O(P) communication complexity.
10140 
10141   Level: intermediate
10142 
10143   Notes:
10144   C will be created if `MAT_INITIAL_MATRIX` and must be destroyed by the user with `MatDestroy()`.
10145 
10146   `MAT_REUSE_MATRIX` can only be used if the matrices A and B have the same nonzero pattern as in the previous call
10147 
10148   To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value
10149   actually needed.
10150 
10151   This routine is currently only implemented for pairs of `MATSEQAIJ` matrices, for the `MATSEQDENSE` class,
10152   and for pairs of `MATMPIDENSE` matrices.
10153 
10154   This routine is shorthand for using `MatProductCreate()` with the `MatProductType` of `MATPRODUCT_ABt`
10155 
10156 .seealso: [](ch_matrices), `Mat`, `MatProductCreate()`, `MATPRODUCT_ABt`, `MatMatMult()`, `MatTransposeMatMult()` `MatPtAP()`, `MatProductAlgorithm`, `MatProductType`
10157 @*/
10158 PetscErrorCode MatMatTransposeMult(Mat A, Mat B, MatReuse scall, PetscReal fill, Mat *C)
10159 {
10160   PetscFunctionBegin;
10161   PetscCall(MatProduct_Private(A, B, scall, fill, MATPRODUCT_ABt, C));
10162   if (A == B) PetscCall(MatSetOption(*C, MAT_SYMMETRIC, PETSC_TRUE));
10163   PetscFunctionReturn(PETSC_SUCCESS);
10164 }
10165 
10166 /*@
10167   MatTransposeMatMult - Performs matrix-matrix multiplication $C = A^T*B$.
10168 
10169   Neighbor-wise Collective
10170 
10171   Input Parameters:
10172 + A     - the left matrix
10173 . B     - the right matrix
10174 . scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10175 - fill  - expected fill as ratio of nnz(C)/(nnz(A) + nnz(B)), use `PETSC_DEFAULT` if not known
10176 
10177   Output Parameter:
10178 . C - the product matrix
10179 
10180   Level: intermediate
10181 
10182   Notes:
10183   `C` will be created if `MAT_INITIAL_MATRIX` and must be destroyed by the user with `MatDestroy()`.
10184 
10185   `MAT_REUSE_MATRIX` can only be used if the matrices A and B have the same nonzero pattern as in the previous call.
10186 
10187   This routine is shorthand for using `MatProductCreate()` with the `MatProductType` of `MATPRODUCT_AtB`
10188 
10189   To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value
10190   actually needed.
10191 
10192   This routine is currently implemented for pairs of `MATAIJ` matrices and pairs of `MATSEQDENSE` matrices and classes
10193   which inherit from `MATSEQAIJ`.  `C` will be of the same type as the input matrices.
10194 
10195 .seealso: [](ch_matrices), `Mat`, `MatProductCreate()`, `MATPRODUCT_AtB`, `MatMatMult()`, `MatMatTransposeMult()`, `MatPtAP()`
10196 @*/
10197 PetscErrorCode MatTransposeMatMult(Mat A, Mat B, MatReuse scall, PetscReal fill, Mat *C)
10198 {
10199   PetscFunctionBegin;
10200   PetscCall(MatProduct_Private(A, B, scall, fill, MATPRODUCT_AtB, C));
10201   PetscFunctionReturn(PETSC_SUCCESS);
10202 }
10203 
10204 /*@
10205   MatMatMatMult - Performs matrix-matrix-matrix multiplication D=A*B*C.
10206 
10207   Neighbor-wise Collective
10208 
10209   Input Parameters:
10210 + A     - the left matrix
10211 . B     - the middle matrix
10212 . C     - the right matrix
10213 . scall - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10214 - fill  - expected fill as ratio of nnz(D)/(nnz(A) + nnz(B)+nnz(C)), use `PETSC_DEFAULT` if you do not have a good estimate
10215           if the result is a dense matrix this is irrelevant
10216 
10217   Output Parameter:
10218 . D - the product matrix
10219 
10220   Level: intermediate
10221 
10222   Notes:
10223   Unless `scall` is `MAT_REUSE_MATRIX` D will be created.
10224 
10225   `MAT_REUSE_MATRIX` can only be used if the matrices `A`, `B`, and `C` have the same nonzero pattern as in the previous call
10226 
10227   This routine is shorthand for using `MatProductCreate()` with the `MatProductType` of `MATPRODUCT_ABC`
10228 
10229   To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value
10230   actually needed.
10231 
10232   If you have many matrices with the same non-zero structure to multiply, you
10233   should use `MAT_REUSE_MATRIX` in all calls but the first
10234 
10235 .seealso: [](ch_matrices), `Mat`, `MatProductCreate()`, `MATPRODUCT_ABC`, `MatMatMult`, `MatPtAP()`, `MatMatTransposeMult()`, `MatTransposeMatMult()`
10236 @*/
10237 PetscErrorCode MatMatMatMult(Mat A, Mat B, Mat C, MatReuse scall, PetscReal fill, Mat *D)
10238 {
10239   PetscFunctionBegin;
10240   if (scall == MAT_REUSE_MATRIX) MatCheckProduct(*D, 6);
10241   PetscCheck(scall != MAT_INPLACE_MATRIX, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Inplace product not supported");
10242 
10243   if (scall == MAT_INITIAL_MATRIX) {
10244     PetscCall(MatProductCreate(A, B, C, D));
10245     PetscCall(MatProductSetType(*D, MATPRODUCT_ABC));
10246     PetscCall(MatProductSetAlgorithm(*D, "default"));
10247     PetscCall(MatProductSetFill(*D, fill));
10248 
10249     (*D)->product->api_user = PETSC_TRUE;
10250     PetscCall(MatProductSetFromOptions(*D));
10251     PetscCheck((*D)->ops->productsymbolic, PetscObjectComm((PetscObject)(*D)), PETSC_ERR_SUP, "MatProduct %s not supported for A %s, B %s and C %s", MatProductTypes[MATPRODUCT_ABC], ((PetscObject)A)->type_name, ((PetscObject)B)->type_name,
10252                ((PetscObject)C)->type_name);
10253     PetscCall(MatProductSymbolic(*D));
10254   } else { /* user may change input matrices when REUSE */
10255     PetscCall(MatProductReplaceMats(A, B, C, *D));
10256   }
10257   PetscCall(MatProductNumeric(*D));
10258   PetscFunctionReturn(PETSC_SUCCESS);
10259 }
10260 
10261 /*@
10262   MatCreateRedundantMatrix - Create redundant matrices and put them into processors of subcommunicators.
10263 
10264   Collective
10265 
10266   Input Parameters:
10267 + mat      - the matrix
10268 . nsubcomm - the number of subcommunicators (= number of redundant parallel or sequential matrices)
10269 . subcomm  - MPI communicator split from the communicator where mat resides in (or `MPI_COMM_NULL` if nsubcomm is used)
10270 - reuse    - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10271 
10272   Output Parameter:
10273 . matredundant - redundant matrix
10274 
10275   Level: advanced
10276 
10277   Notes:
10278   `MAT_REUSE_MATRIX` can only be used when the nonzero structure of the
10279   original matrix has not changed from that last call to `MatCreateRedundantMatrix()`.
10280 
10281   This routine creates the duplicated matrices in the subcommunicators; you should NOT create them before
10282   calling it.
10283 
10284   `PetscSubcommCreate()` can be used to manage the creation of the subcomm but need not be.
10285 
10286 .seealso: [](ch_matrices), `Mat`, `MatDestroy()`, `PetscSubcommCreate()`, `PetscSubcomm`
10287 @*/
10288 PetscErrorCode MatCreateRedundantMatrix(Mat mat, PetscInt nsubcomm, MPI_Comm subcomm, MatReuse reuse, Mat *matredundant)
10289 {
10290   MPI_Comm       comm;
10291   PetscMPIInt    size;
10292   PetscInt       mloc_sub, nloc_sub, rstart, rend, M = mat->rmap->N, N = mat->cmap->N, bs = mat->rmap->bs;
10293   Mat_Redundant *redund     = NULL;
10294   PetscSubcomm   psubcomm   = NULL;
10295   MPI_Comm       subcomm_in = subcomm;
10296   Mat           *matseq;
10297   IS             isrow, iscol;
10298   PetscBool      newsubcomm = PETSC_FALSE;
10299 
10300   PetscFunctionBegin;
10301   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10302   if (nsubcomm && reuse == MAT_REUSE_MATRIX) {
10303     PetscAssertPointer(*matredundant, 5);
10304     PetscValidHeaderSpecific(*matredundant, MAT_CLASSID, 5);
10305   }
10306 
10307   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)mat), &size));
10308   if (size == 1 || nsubcomm == 1) {
10309     if (reuse == MAT_INITIAL_MATRIX) {
10310       PetscCall(MatDuplicate(mat, MAT_COPY_VALUES, matredundant));
10311     } else {
10312       PetscCheck(*matredundant != mat, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix");
10313       PetscCall(MatCopy(mat, *matredundant, SAME_NONZERO_PATTERN));
10314     }
10315     PetscFunctionReturn(PETSC_SUCCESS);
10316   }
10317 
10318   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
10319   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
10320   MatCheckPreallocated(mat, 1);
10321 
10322   PetscCall(PetscLogEventBegin(MAT_RedundantMat, mat, 0, 0, 0));
10323   if (subcomm_in == MPI_COMM_NULL && reuse == MAT_INITIAL_MATRIX) { /* get subcomm if user does not provide subcomm */
10324     /* create psubcomm, then get subcomm */
10325     PetscCall(PetscObjectGetComm((PetscObject)mat, &comm));
10326     PetscCallMPI(MPI_Comm_size(comm, &size));
10327     PetscCheck(nsubcomm >= 1 && nsubcomm <= size, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "nsubcomm must between 1 and %d", size);
10328 
10329     PetscCall(PetscSubcommCreate(comm, &psubcomm));
10330     PetscCall(PetscSubcommSetNumber(psubcomm, nsubcomm));
10331     PetscCall(PetscSubcommSetType(psubcomm, PETSC_SUBCOMM_CONTIGUOUS));
10332     PetscCall(PetscSubcommSetFromOptions(psubcomm));
10333     PetscCall(PetscCommDuplicate(PetscSubcommChild(psubcomm), &subcomm, NULL));
10334     newsubcomm = PETSC_TRUE;
10335     PetscCall(PetscSubcommDestroy(&psubcomm));
10336   }
10337 
10338   /* get isrow, iscol and a local sequential matrix matseq[0] */
10339   if (reuse == MAT_INITIAL_MATRIX) {
10340     mloc_sub = PETSC_DECIDE;
10341     nloc_sub = PETSC_DECIDE;
10342     if (bs < 1) {
10343       PetscCall(PetscSplitOwnership(subcomm, &mloc_sub, &M));
10344       PetscCall(PetscSplitOwnership(subcomm, &nloc_sub, &N));
10345     } else {
10346       PetscCall(PetscSplitOwnershipBlock(subcomm, bs, &mloc_sub, &M));
10347       PetscCall(PetscSplitOwnershipBlock(subcomm, bs, &nloc_sub, &N));
10348     }
10349     PetscCallMPI(MPI_Scan(&mloc_sub, &rend, 1, MPIU_INT, MPI_SUM, subcomm));
10350     rstart = rend - mloc_sub;
10351     PetscCall(ISCreateStride(PETSC_COMM_SELF, mloc_sub, rstart, 1, &isrow));
10352     PetscCall(ISCreateStride(PETSC_COMM_SELF, N, 0, 1, &iscol));
10353     PetscCall(ISSetIdentity(iscol));
10354   } else { /* reuse == MAT_REUSE_MATRIX */
10355     PetscCheck(*matredundant != mat, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix");
10356     /* retrieve subcomm */
10357     PetscCall(PetscObjectGetComm((PetscObject)(*matredundant), &subcomm));
10358     redund = (*matredundant)->redundant;
10359     isrow  = redund->isrow;
10360     iscol  = redund->iscol;
10361     matseq = redund->matseq;
10362   }
10363   PetscCall(MatCreateSubMatrices(mat, 1, &isrow, &iscol, reuse, &matseq));
10364 
10365   /* get matredundant over subcomm */
10366   if (reuse == MAT_INITIAL_MATRIX) {
10367     PetscCall(MatCreateMPIMatConcatenateSeqMat(subcomm, matseq[0], nloc_sub, reuse, matredundant));
10368 
10369     /* create a supporting struct and attach it to C for reuse */
10370     PetscCall(PetscNew(&redund));
10371     (*matredundant)->redundant = redund;
10372     redund->isrow              = isrow;
10373     redund->iscol              = iscol;
10374     redund->matseq             = matseq;
10375     if (newsubcomm) {
10376       redund->subcomm = subcomm;
10377     } else {
10378       redund->subcomm = MPI_COMM_NULL;
10379     }
10380   } else {
10381     PetscCall(MatCreateMPIMatConcatenateSeqMat(subcomm, matseq[0], PETSC_DECIDE, reuse, matredundant));
10382   }
10383 #if defined(PETSC_HAVE_VIENNACL) || defined(PETSC_HAVE_CUDA) || defined(PETSC_HAVE_HIP)
10384   if (matseq[0]->boundtocpu && matseq[0]->bindingpropagates) {
10385     PetscCall(MatBindToCPU(*matredundant, PETSC_TRUE));
10386     PetscCall(MatSetBindingPropagates(*matredundant, PETSC_TRUE));
10387   }
10388 #endif
10389   PetscCall(PetscLogEventEnd(MAT_RedundantMat, mat, 0, 0, 0));
10390   PetscFunctionReturn(PETSC_SUCCESS);
10391 }
10392 
10393 /*@C
10394   MatGetMultiProcBlock - Create multiple 'parallel submatrices' from
10395   a given `Mat`. Each submatrix can span multiple procs.
10396 
10397   Collective
10398 
10399   Input Parameters:
10400 + mat     - the matrix
10401 . subComm - the sub communicator obtained as if by `MPI_Comm_split(PetscObjectComm((PetscObject)mat))`
10402 - scall   - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10403 
10404   Output Parameter:
10405 . subMat - parallel sub-matrices each spanning a given `subcomm`
10406 
10407   Level: advanced
10408 
10409   Notes:
10410   The submatrix partition across processors is dictated by `subComm` a
10411   communicator obtained by `MPI_comm_split()` or via `PetscSubcommCreate()`. The `subComm`
10412   is not restricted to be grouped with consecutive original MPI processes.
10413 
10414   Due the `MPI_Comm_split()` usage, the parallel layout of the submatrices
10415   map directly to the layout of the original matrix [wrt the local
10416   row,col partitioning]. So the original 'DiagonalMat' naturally maps
10417   into the 'DiagonalMat' of the `subMat`, hence it is used directly from
10418   the `subMat`. However the offDiagMat looses some columns - and this is
10419   reconstructed with `MatSetValues()`
10420 
10421   This is used by `PCBJACOBI` when a single block spans multiple MPI processes.
10422 
10423 .seealso: [](ch_matrices), `Mat`, `MatCreateRedundantMatrix()`, `MatCreateSubMatrices()`, `PCBJACOBI`
10424 @*/
10425 PetscErrorCode MatGetMultiProcBlock(Mat mat, MPI_Comm subComm, MatReuse scall, Mat *subMat)
10426 {
10427   PetscMPIInt commsize, subCommSize;
10428 
10429   PetscFunctionBegin;
10430   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)mat), &commsize));
10431   PetscCallMPI(MPI_Comm_size(subComm, &subCommSize));
10432   PetscCheck(subCommSize <= commsize, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_OUTOFRANGE, "CommSize %d < SubCommZize %d", commsize, subCommSize);
10433 
10434   PetscCheck(scall != MAT_REUSE_MATRIX || *subMat != mat, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix");
10435   PetscCall(PetscLogEventBegin(MAT_GetMultiProcBlock, mat, 0, 0, 0));
10436   PetscUseTypeMethod(mat, getmultiprocblock, subComm, scall, subMat);
10437   PetscCall(PetscLogEventEnd(MAT_GetMultiProcBlock, mat, 0, 0, 0));
10438   PetscFunctionReturn(PETSC_SUCCESS);
10439 }
10440 
10441 /*@
10442   MatGetLocalSubMatrix - Gets a reference to a submatrix specified in local numbering
10443 
10444   Not Collective
10445 
10446   Input Parameters:
10447 + mat   - matrix to extract local submatrix from
10448 . isrow - local row indices for submatrix
10449 - iscol - local column indices for submatrix
10450 
10451   Output Parameter:
10452 . submat - the submatrix
10453 
10454   Level: intermediate
10455 
10456   Notes:
10457   `submat` should be disposed of with `MatRestoreLocalSubMatrix()`.
10458 
10459   Depending on the format of `mat`, the returned `submat` may not implement `MatMult()`.  Its communicator may be
10460   the same as `mat`, it may be `PETSC_COMM_SELF`, or some other sub-communictor of `mat`'s.
10461 
10462   `submat` always implements `MatSetValuesLocal()`.  If `isrow` and `iscol` have the same block size, then
10463   `MatSetValuesBlockedLocal()` will also be implemented.
10464 
10465   `mat` must have had a `ISLocalToGlobalMapping` provided to it with `MatSetLocalToGlobalMapping()`.
10466   Matrices obtained with `DMCreateMatrix()` generally already have the local to global mapping provided.
10467 
10468 .seealso: [](ch_matrices), `Mat`, `MatRestoreLocalSubMatrix()`, `MatCreateLocalRef()`, `MatSetLocalToGlobalMapping()`
10469 @*/
10470 PetscErrorCode MatGetLocalSubMatrix(Mat mat, IS isrow, IS iscol, Mat *submat)
10471 {
10472   PetscFunctionBegin;
10473   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10474   PetscValidHeaderSpecific(isrow, IS_CLASSID, 2);
10475   PetscValidHeaderSpecific(iscol, IS_CLASSID, 3);
10476   PetscCheckSameComm(isrow, 2, iscol, 3);
10477   PetscAssertPointer(submat, 4);
10478   PetscCheck(mat->rmap->mapping, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Matrix must have local to global mapping provided before this call");
10479 
10480   if (mat->ops->getlocalsubmatrix) {
10481     PetscUseTypeMethod(mat, getlocalsubmatrix, isrow, iscol, submat);
10482   } else {
10483     PetscCall(MatCreateLocalRef(mat, isrow, iscol, submat));
10484   }
10485   PetscFunctionReturn(PETSC_SUCCESS);
10486 }
10487 
10488 /*@
10489   MatRestoreLocalSubMatrix - Restores a reference to a submatrix specified in local numbering obtained with `MatGetLocalSubMatrix()`
10490 
10491   Not Collective
10492 
10493   Input Parameters:
10494 + mat    - matrix to extract local submatrix from
10495 . isrow  - local row indices for submatrix
10496 . iscol  - local column indices for submatrix
10497 - submat - the submatrix
10498 
10499   Level: intermediate
10500 
10501 .seealso: [](ch_matrices), `Mat`, `MatGetLocalSubMatrix()`
10502 @*/
10503 PetscErrorCode MatRestoreLocalSubMatrix(Mat mat, IS isrow, IS iscol, Mat *submat)
10504 {
10505   PetscFunctionBegin;
10506   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10507   PetscValidHeaderSpecific(isrow, IS_CLASSID, 2);
10508   PetscValidHeaderSpecific(iscol, IS_CLASSID, 3);
10509   PetscCheckSameComm(isrow, 2, iscol, 3);
10510   PetscAssertPointer(submat, 4);
10511   if (*submat) PetscValidHeaderSpecific(*submat, MAT_CLASSID, 4);
10512 
10513   if (mat->ops->restorelocalsubmatrix) {
10514     PetscUseTypeMethod(mat, restorelocalsubmatrix, isrow, iscol, submat);
10515   } else {
10516     PetscCall(MatDestroy(submat));
10517   }
10518   *submat = NULL;
10519   PetscFunctionReturn(PETSC_SUCCESS);
10520 }
10521 
10522 /*@
10523   MatFindZeroDiagonals - Finds all the rows of a matrix that have zero or no diagonal entry in the matrix
10524 
10525   Collective
10526 
10527   Input Parameter:
10528 . mat - the matrix
10529 
10530   Output Parameter:
10531 . is - if any rows have zero diagonals this contains the list of them
10532 
10533   Level: developer
10534 
10535 .seealso: [](ch_matrices), `Mat`, `MatMultTranspose()`, `MatMultAdd()`, `MatMultTransposeAdd()`
10536 @*/
10537 PetscErrorCode MatFindZeroDiagonals(Mat mat, IS *is)
10538 {
10539   PetscFunctionBegin;
10540   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10541   PetscValidType(mat, 1);
10542   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
10543   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
10544 
10545   if (!mat->ops->findzerodiagonals) {
10546     Vec                diag;
10547     const PetscScalar *a;
10548     PetscInt          *rows;
10549     PetscInt           rStart, rEnd, r, nrow = 0;
10550 
10551     PetscCall(MatCreateVecs(mat, &diag, NULL));
10552     PetscCall(MatGetDiagonal(mat, diag));
10553     PetscCall(MatGetOwnershipRange(mat, &rStart, &rEnd));
10554     PetscCall(VecGetArrayRead(diag, &a));
10555     for (r = 0; r < rEnd - rStart; ++r)
10556       if (a[r] == 0.0) ++nrow;
10557     PetscCall(PetscMalloc1(nrow, &rows));
10558     nrow = 0;
10559     for (r = 0; r < rEnd - rStart; ++r)
10560       if (a[r] == 0.0) rows[nrow++] = r + rStart;
10561     PetscCall(VecRestoreArrayRead(diag, &a));
10562     PetscCall(VecDestroy(&diag));
10563     PetscCall(ISCreateGeneral(PetscObjectComm((PetscObject)mat), nrow, rows, PETSC_OWN_POINTER, is));
10564   } else {
10565     PetscUseTypeMethod(mat, findzerodiagonals, is);
10566   }
10567   PetscFunctionReturn(PETSC_SUCCESS);
10568 }
10569 
10570 /*@
10571   MatFindOffBlockDiagonalEntries - Finds all the rows of a matrix that have entries outside of the main diagonal block (defined by the matrix block size)
10572 
10573   Collective
10574 
10575   Input Parameter:
10576 . mat - the matrix
10577 
10578   Output Parameter:
10579 . is - contains the list of rows with off block diagonal entries
10580 
10581   Level: developer
10582 
10583 .seealso: [](ch_matrices), `Mat`, `MatMultTranspose()`, `MatMultAdd()`, `MatMultTransposeAdd()`
10584 @*/
10585 PetscErrorCode MatFindOffBlockDiagonalEntries(Mat mat, IS *is)
10586 {
10587   PetscFunctionBegin;
10588   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10589   PetscValidType(mat, 1);
10590   PetscCheck(mat->assembled, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
10591   PetscCheck(!mat->factortype, PetscObjectComm((PetscObject)mat), PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
10592 
10593   PetscUseTypeMethod(mat, findoffblockdiagonalentries, is);
10594   PetscFunctionReturn(PETSC_SUCCESS);
10595 }
10596 
10597 /*@C
10598   MatInvertBlockDiagonal - Inverts the block diagonal entries.
10599 
10600   Collective; No Fortran Support
10601 
10602   Input Parameter:
10603 . mat - the matrix
10604 
10605   Output Parameter:
10606 . values - the block inverses in column major order (FORTRAN-like)
10607 
10608   Level: advanced
10609 
10610   Notes:
10611   The size of the blocks is determined by the block size of the matrix.
10612 
10613   The blocks never overlap between two MPI processes, use `MatInvertVariableBlockEnvelope()` for that case
10614 
10615   The blocks all have the same size, use `MatInvertVariableBlockDiagonal()` for variable block size
10616 
10617 .seealso: [](ch_matrices), `Mat`, `MatInvertVariableBlockEnvelope()`, `MatInvertBlockDiagonalMat()`
10618 @*/
10619 PetscErrorCode MatInvertBlockDiagonal(Mat mat, const PetscScalar **values)
10620 {
10621   PetscFunctionBegin;
10622   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10623   PetscCheck(mat->assembled, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
10624   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
10625   PetscUseTypeMethod(mat, invertblockdiagonal, values);
10626   PetscFunctionReturn(PETSC_SUCCESS);
10627 }
10628 
10629 /*@C
10630   MatInvertVariableBlockDiagonal - Inverts the point block diagonal entries.
10631 
10632   Collective; No Fortran Support
10633 
10634   Input Parameters:
10635 + mat     - the matrix
10636 . nblocks - the number of blocks on the process, set with `MatSetVariableBlockSizes()`
10637 - bsizes  - the size of each block on the process, set with `MatSetVariableBlockSizes()`
10638 
10639   Output Parameter:
10640 . values - the block inverses in column major order (FORTRAN-like)
10641 
10642   Level: advanced
10643 
10644   Notes:
10645   Use `MatInvertBlockDiagonal()` if all blocks have the same size
10646 
10647   The blocks never overlap between two MPI processes, use `MatInvertVariableBlockEnvelope()` for that case
10648 
10649 .seealso: [](ch_matrices), `Mat`, `MatInvertBlockDiagonal()`, `MatSetVariableBlockSizes()`, `MatInvertVariableBlockEnvelope()`
10650 @*/
10651 PetscErrorCode MatInvertVariableBlockDiagonal(Mat mat, PetscInt nblocks, const PetscInt *bsizes, PetscScalar *values)
10652 {
10653   PetscFunctionBegin;
10654   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10655   PetscCheck(mat->assembled, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for unassembled matrix");
10656   PetscCheck(!mat->factortype, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Not for factored matrix");
10657   PetscUseTypeMethod(mat, invertvariableblockdiagonal, nblocks, bsizes, values);
10658   PetscFunctionReturn(PETSC_SUCCESS);
10659 }
10660 
10661 /*@
10662   MatInvertBlockDiagonalMat - set the values of matrix C to be the inverted block diagonal of matrix A
10663 
10664   Collective
10665 
10666   Input Parameters:
10667 + A - the matrix
10668 - C - matrix with inverted block diagonal of `A`.  This matrix should be created and may have its type set.
10669 
10670   Level: advanced
10671 
10672   Note:
10673   The blocksize of the matrix is used to determine the blocks on the diagonal of `C`
10674 
10675 .seealso: [](ch_matrices), `Mat`, `MatInvertBlockDiagonal()`
10676 @*/
10677 PetscErrorCode MatInvertBlockDiagonalMat(Mat A, Mat C)
10678 {
10679   const PetscScalar *vals;
10680   PetscInt          *dnnz;
10681   PetscInt           m, rstart, rend, bs, i, j;
10682 
10683   PetscFunctionBegin;
10684   PetscCall(MatInvertBlockDiagonal(A, &vals));
10685   PetscCall(MatGetBlockSize(A, &bs));
10686   PetscCall(MatGetLocalSize(A, &m, NULL));
10687   PetscCall(MatSetLayouts(C, A->rmap, A->cmap));
10688   PetscCall(PetscMalloc1(m / bs, &dnnz));
10689   for (j = 0; j < m / bs; j++) dnnz[j] = 1;
10690   PetscCall(MatXAIJSetPreallocation(C, bs, dnnz, NULL, NULL, NULL));
10691   PetscCall(PetscFree(dnnz));
10692   PetscCall(MatGetOwnershipRange(C, &rstart, &rend));
10693   PetscCall(MatSetOption(C, MAT_ROW_ORIENTED, PETSC_FALSE));
10694   for (i = rstart / bs; i < rend / bs; i++) PetscCall(MatSetValuesBlocked(C, 1, &i, 1, &i, &vals[(i - rstart / bs) * bs * bs], INSERT_VALUES));
10695   PetscCall(MatAssemblyBegin(C, MAT_FINAL_ASSEMBLY));
10696   PetscCall(MatAssemblyEnd(C, MAT_FINAL_ASSEMBLY));
10697   PetscCall(MatSetOption(C, MAT_ROW_ORIENTED, PETSC_TRUE));
10698   PetscFunctionReturn(PETSC_SUCCESS);
10699 }
10700 
10701 /*@C
10702   MatTransposeColoringDestroy - Destroys a coloring context for matrix product $C = A*B^T$ that was created
10703   via `MatTransposeColoringCreate()`.
10704 
10705   Collective
10706 
10707   Input Parameter:
10708 . c - coloring context
10709 
10710   Level: intermediate
10711 
10712 .seealso: [](ch_matrices), `Mat`, `MatTransposeColoringCreate()`
10713 @*/
10714 PetscErrorCode MatTransposeColoringDestroy(MatTransposeColoring *c)
10715 {
10716   MatTransposeColoring matcolor = *c;
10717 
10718   PetscFunctionBegin;
10719   if (!matcolor) PetscFunctionReturn(PETSC_SUCCESS);
10720   if (--((PetscObject)matcolor)->refct > 0) {
10721     matcolor = NULL;
10722     PetscFunctionReturn(PETSC_SUCCESS);
10723   }
10724 
10725   PetscCall(PetscFree3(matcolor->ncolumns, matcolor->nrows, matcolor->colorforrow));
10726   PetscCall(PetscFree(matcolor->rows));
10727   PetscCall(PetscFree(matcolor->den2sp));
10728   PetscCall(PetscFree(matcolor->colorforcol));
10729   PetscCall(PetscFree(matcolor->columns));
10730   if (matcolor->brows > 0) PetscCall(PetscFree(matcolor->lstart));
10731   PetscCall(PetscHeaderDestroy(c));
10732   PetscFunctionReturn(PETSC_SUCCESS);
10733 }
10734 
10735 /*@C
10736   MatTransColoringApplySpToDen - Given a symbolic matrix product $C = A*B^T$ for which
10737   a `MatTransposeColoring` context has been created, computes a dense $B^T$ by applying
10738   `MatTransposeColoring` to sparse `B`.
10739 
10740   Collective
10741 
10742   Input Parameters:
10743 + coloring - coloring context created with `MatTransposeColoringCreate()`
10744 - B        - sparse matrix
10745 
10746   Output Parameter:
10747 . Btdense - dense matrix $B^T$
10748 
10749   Level: developer
10750 
10751   Note:
10752   These are used internally for some implementations of `MatRARt()`
10753 
10754 .seealso: [](ch_matrices), `Mat`, `MatTransposeColoringCreate()`, `MatTransposeColoringDestroy()`, `MatTransColoringApplyDenToSp()`
10755 @*/
10756 PetscErrorCode MatTransColoringApplySpToDen(MatTransposeColoring coloring, Mat B, Mat Btdense)
10757 {
10758   PetscFunctionBegin;
10759   PetscValidHeaderSpecific(coloring, MAT_TRANSPOSECOLORING_CLASSID, 1);
10760   PetscValidHeaderSpecific(B, MAT_CLASSID, 2);
10761   PetscValidHeaderSpecific(Btdense, MAT_CLASSID, 3);
10762 
10763   PetscCall((*B->ops->transcoloringapplysptoden)(coloring, B, Btdense));
10764   PetscFunctionReturn(PETSC_SUCCESS);
10765 }
10766 
10767 /*@C
10768   MatTransColoringApplyDenToSp - Given a symbolic matrix product $C_{sp} = A*B^T$ for which
10769   a `MatTransposeColoring` context has been created and a dense matrix $C_{den} = A*B^T_{dense}$
10770   in which `B^T_{dens}` is obtained from `MatTransColoringApplySpToDen()`, recover sparse matrix
10771   $C_{sp}$ from $C_{den}$.
10772 
10773   Collective
10774 
10775   Input Parameters:
10776 + matcoloring - coloring context created with `MatTransposeColoringCreate()`
10777 - Cden        - matrix product of a sparse matrix and a dense matrix Btdense
10778 
10779   Output Parameter:
10780 . Csp - sparse matrix
10781 
10782   Level: developer
10783 
10784   Note:
10785   These are used internally for some implementations of `MatRARt()`
10786 
10787 .seealso: [](ch_matrices), `Mat`, `MatTransposeColoringCreate()`, `MatTransposeColoringDestroy()`, `MatTransColoringApplySpToDen()`
10788 @*/
10789 PetscErrorCode MatTransColoringApplyDenToSp(MatTransposeColoring matcoloring, Mat Cden, Mat Csp)
10790 {
10791   PetscFunctionBegin;
10792   PetscValidHeaderSpecific(matcoloring, MAT_TRANSPOSECOLORING_CLASSID, 1);
10793   PetscValidHeaderSpecific(Cden, MAT_CLASSID, 2);
10794   PetscValidHeaderSpecific(Csp, MAT_CLASSID, 3);
10795 
10796   PetscCall((*Csp->ops->transcoloringapplydentosp)(matcoloring, Cden, Csp));
10797   PetscCall(MatAssemblyBegin(Csp, MAT_FINAL_ASSEMBLY));
10798   PetscCall(MatAssemblyEnd(Csp, MAT_FINAL_ASSEMBLY));
10799   PetscFunctionReturn(PETSC_SUCCESS);
10800 }
10801 
10802 /*@C
10803   MatTransposeColoringCreate - Creates a matrix coloring context for the matrix product $C = A*B^T$.
10804 
10805   Collective
10806 
10807   Input Parameters:
10808 + mat        - the matrix product C
10809 - iscoloring - the coloring of the matrix; usually obtained with `MatColoringCreate()` or `DMCreateColoring()`
10810 
10811   Output Parameter:
10812 . color - the new coloring context
10813 
10814   Level: intermediate
10815 
10816 .seealso: [](ch_matrices), `Mat`, `MatTransposeColoringDestroy()`, `MatTransColoringApplySpToDen()`,
10817           `MatTransColoringApplyDenToSp()`
10818 @*/
10819 PetscErrorCode MatTransposeColoringCreate(Mat mat, ISColoring iscoloring, MatTransposeColoring *color)
10820 {
10821   MatTransposeColoring c;
10822   MPI_Comm             comm;
10823 
10824   PetscFunctionBegin;
10825   PetscCall(PetscLogEventBegin(MAT_TransposeColoringCreate, mat, 0, 0, 0));
10826   PetscCall(PetscObjectGetComm((PetscObject)mat, &comm));
10827   PetscCall(PetscHeaderCreate(c, MAT_TRANSPOSECOLORING_CLASSID, "MatTransposeColoring", "Matrix product C=A*B^T via coloring", "Mat", comm, MatTransposeColoringDestroy, NULL));
10828 
10829   c->ctype = iscoloring->ctype;
10830   PetscUseTypeMethod(mat, transposecoloringcreate, iscoloring, c);
10831 
10832   *color = c;
10833   PetscCall(PetscLogEventEnd(MAT_TransposeColoringCreate, mat, 0, 0, 0));
10834   PetscFunctionReturn(PETSC_SUCCESS);
10835 }
10836 
10837 /*@
10838   MatGetNonzeroState - Returns a 64-bit integer representing the current state of nonzeros in the matrix. If the
10839   matrix has had no new nonzero locations added to (or removed from) the matrix since the previous call then the value will be the
10840   same, otherwise it will be larger
10841 
10842   Not Collective
10843 
10844   Input Parameter:
10845 . mat - the matrix
10846 
10847   Output Parameter:
10848 . state - the current state
10849 
10850   Level: intermediate
10851 
10852   Notes:
10853   You can only compare states from two different calls to the SAME matrix, you cannot compare calls between
10854   different matrices
10855 
10856   Use `PetscObjectStateGet()` to check for changes to the numerical values in a matrix
10857 
10858   Use the result of `PetscObjectGetId()` to compare if a previously checked matrix is the same as the current matrix, do not compare object pointers.
10859 
10860 .seealso: [](ch_matrices), `Mat`, `PetscObjectStateGet()`, `PetscObjectGetId()`
10861 @*/
10862 PetscErrorCode MatGetNonzeroState(Mat mat, PetscObjectState *state)
10863 {
10864   PetscFunctionBegin;
10865   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
10866   *state = mat->nonzerostate;
10867   PetscFunctionReturn(PETSC_SUCCESS);
10868 }
10869 
10870 /*@
10871   MatCreateMPIMatConcatenateSeqMat - Creates a single large PETSc matrix by concatenating sequential
10872   matrices from each processor
10873 
10874   Collective
10875 
10876   Input Parameters:
10877 + comm   - the communicators the parallel matrix will live on
10878 . seqmat - the input sequential matrices
10879 . n      - number of local columns (or `PETSC_DECIDE`)
10880 - reuse  - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10881 
10882   Output Parameter:
10883 . mpimat - the parallel matrix generated
10884 
10885   Level: developer
10886 
10887   Note:
10888   The number of columns of the matrix in EACH processor MUST be the same.
10889 
10890 .seealso: [](ch_matrices), `Mat`
10891 @*/
10892 PetscErrorCode MatCreateMPIMatConcatenateSeqMat(MPI_Comm comm, Mat seqmat, PetscInt n, MatReuse reuse, Mat *mpimat)
10893 {
10894   PetscMPIInt size;
10895 
10896   PetscFunctionBegin;
10897   PetscCallMPI(MPI_Comm_size(comm, &size));
10898   if (size == 1) {
10899     if (reuse == MAT_INITIAL_MATRIX) {
10900       PetscCall(MatDuplicate(seqmat, MAT_COPY_VALUES, mpimat));
10901     } else {
10902       PetscCall(MatCopy(seqmat, *mpimat, SAME_NONZERO_PATTERN));
10903     }
10904     PetscFunctionReturn(PETSC_SUCCESS);
10905   }
10906 
10907   PetscCheck(reuse != MAT_REUSE_MATRIX || seqmat != *mpimat, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix");
10908 
10909   PetscCall(PetscLogEventBegin(MAT_Merge, seqmat, 0, 0, 0));
10910   PetscCall((*seqmat->ops->creatempimatconcatenateseqmat)(comm, seqmat, n, reuse, mpimat));
10911   PetscCall(PetscLogEventEnd(MAT_Merge, seqmat, 0, 0, 0));
10912   PetscFunctionReturn(PETSC_SUCCESS);
10913 }
10914 
10915 /*@
10916   MatSubdomainsCreateCoalesce - Creates index subdomains by coalescing adjacent MPI processes' ownership ranges.
10917 
10918   Collective
10919 
10920   Input Parameters:
10921 + A - the matrix to create subdomains from
10922 - N - requested number of subdomains
10923 
10924   Output Parameters:
10925 + n   - number of subdomains resulting on this MPI process
10926 - iss - `IS` list with indices of subdomains on this MPI process
10927 
10928   Level: advanced
10929 
10930   Note:
10931   The number of subdomains must be smaller than the communicator size
10932 
10933 .seealso: [](ch_matrices), `Mat`, `IS`
10934 @*/
10935 PetscErrorCode MatSubdomainsCreateCoalesce(Mat A, PetscInt N, PetscInt *n, IS *iss[])
10936 {
10937   MPI_Comm    comm, subcomm;
10938   PetscMPIInt size, rank, color;
10939   PetscInt    rstart, rend, k;
10940 
10941   PetscFunctionBegin;
10942   PetscCall(PetscObjectGetComm((PetscObject)A, &comm));
10943   PetscCallMPI(MPI_Comm_size(comm, &size));
10944   PetscCallMPI(MPI_Comm_rank(comm, &rank));
10945   PetscCheck(N >= 1 && N < (PetscInt)size, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "number of subdomains must be > 0 and < %d, got N = %" PetscInt_FMT, size, N);
10946   *n    = 1;
10947   k     = ((PetscInt)size) / N + ((PetscInt)size % N > 0); /* There are up to k ranks to a color */
10948   color = rank / k;
10949   PetscCallMPI(MPI_Comm_split(comm, color, rank, &subcomm));
10950   PetscCall(PetscMalloc1(1, iss));
10951   PetscCall(MatGetOwnershipRange(A, &rstart, &rend));
10952   PetscCall(ISCreateStride(subcomm, rend - rstart, rstart, 1, iss[0]));
10953   PetscCallMPI(MPI_Comm_free(&subcomm));
10954   PetscFunctionReturn(PETSC_SUCCESS);
10955 }
10956 
10957 /*@
10958   MatGalerkin - Constructs the coarse grid problem matrix via Galerkin projection.
10959 
10960   If the interpolation and restriction operators are the same, uses `MatPtAP()`.
10961   If they are not the same, uses `MatMatMatMult()`.
10962 
10963   Once the coarse grid problem is constructed, correct for interpolation operators
10964   that are not of full rank, which can legitimately happen in the case of non-nested
10965   geometric multigrid.
10966 
10967   Input Parameters:
10968 + restrct     - restriction operator
10969 . dA          - fine grid matrix
10970 . interpolate - interpolation operator
10971 . reuse       - either `MAT_INITIAL_MATRIX` or `MAT_REUSE_MATRIX`
10972 - fill        - expected fill, use `PETSC_DEFAULT` if you do not have a good estimate
10973 
10974   Output Parameter:
10975 . A - the Galerkin coarse matrix
10976 
10977   Options Database Key:
10978 . -pc_mg_galerkin <both,pmat,mat,none> - for what matrices the Galerkin process should be used
10979 
10980   Level: developer
10981 
10982 .seealso: [](ch_matrices), `Mat`, `MatPtAP()`, `MatMatMatMult()`
10983 @*/
10984 PetscErrorCode MatGalerkin(Mat restrct, Mat dA, Mat interpolate, MatReuse reuse, PetscReal fill, Mat *A)
10985 {
10986   IS  zerorows;
10987   Vec diag;
10988 
10989   PetscFunctionBegin;
10990   PetscCheck(reuse != MAT_INPLACE_MATRIX, PetscObjectComm((PetscObject)A), PETSC_ERR_SUP, "Inplace product not supported");
10991   /* Construct the coarse grid matrix */
10992   if (interpolate == restrct) {
10993     PetscCall(MatPtAP(dA, interpolate, reuse, fill, A));
10994   } else {
10995     PetscCall(MatMatMatMult(restrct, dA, interpolate, reuse, fill, A));
10996   }
10997 
10998   /* If the interpolation matrix is not of full rank, A will have zero rows.
10999      This can legitimately happen in the case of non-nested geometric multigrid.
11000      In that event, we set the rows of the matrix to the rows of the identity,
11001      ignoring the equations (as the RHS will also be zero). */
11002 
11003   PetscCall(MatFindZeroRows(*A, &zerorows));
11004 
11005   if (zerorows != NULL) { /* if there are any zero rows */
11006     PetscCall(MatCreateVecs(*A, &diag, NULL));
11007     PetscCall(MatGetDiagonal(*A, diag));
11008     PetscCall(VecISSet(diag, zerorows, 1.0));
11009     PetscCall(MatDiagonalSet(*A, diag, INSERT_VALUES));
11010     PetscCall(VecDestroy(&diag));
11011     PetscCall(ISDestroy(&zerorows));
11012   }
11013   PetscFunctionReturn(PETSC_SUCCESS);
11014 }
11015 
11016 /*@C
11017   MatSetOperation - Allows user to set a matrix operation for any matrix type
11018 
11019   Logically Collective
11020 
11021   Input Parameters:
11022 + mat - the matrix
11023 . op  - the name of the operation
11024 - f   - the function that provides the operation
11025 
11026   Level: developer
11027 
11028   Example Usage:
11029 .vb
11030   extern PetscErrorCode usermult(Mat, Vec, Vec);
11031 
11032   PetscCall(MatCreateXXX(comm, ..., &A));
11033   PetscCall(MatSetOperation(A, MATOP_MULT, (PetscVoidFunction)usermult));
11034 .ve
11035 
11036   Notes:
11037   See the file `include/petscmat.h` for a complete list of matrix
11038   operations, which all have the form MATOP_<OPERATION>, where
11039   <OPERATION> is the name (in all capital letters) of the
11040   user interface routine (e.g., `MatMult()` -> `MATOP_MULT`).
11041 
11042   All user-provided functions (except for `MATOP_DESTROY`) should have the same calling
11043   sequence as the usual matrix interface routines, since they
11044   are intended to be accessed via the usual matrix interface
11045   routines, e.g.,
11046 .vb
11047   MatMult(Mat, Vec, Vec) -> usermult(Mat, Vec, Vec)
11048 .ve
11049 
11050   In particular each function MUST return `PETSC_SUCCESS` on success and
11051   nonzero on failure.
11052 
11053   This routine is distinct from `MatShellSetOperation()` in that it can be called on any matrix type.
11054 
11055 .seealso: [](ch_matrices), `Mat`, `MatGetOperation()`, `MatCreateShell()`, `MatShellSetContext()`, `MatShellSetOperation()`
11056 @*/
11057 PetscErrorCode MatSetOperation(Mat mat, MatOperation op, void (*f)(void))
11058 {
11059   PetscFunctionBegin;
11060   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
11061   if (op == MATOP_VIEW && !mat->ops->viewnative && f != (void (*)(void))(mat->ops->view)) mat->ops->viewnative = mat->ops->view;
11062   (((void (**)(void))mat->ops)[op]) = f;
11063   PetscFunctionReturn(PETSC_SUCCESS);
11064 }
11065 
11066 /*@C
11067   MatGetOperation - Gets a matrix operation for any matrix type.
11068 
11069   Not Collective
11070 
11071   Input Parameters:
11072 + mat - the matrix
11073 - op  - the name of the operation
11074 
11075   Output Parameter:
11076 . f - the function that provides the operation
11077 
11078   Level: developer
11079 
11080   Example Usage:
11081 .vb
11082   PetscErrorCode (*usermult)(Mat, Vec, Vec);
11083 
11084   MatGetOperation(A, MATOP_MULT, (void (**)(void))&usermult);
11085 .ve
11086 
11087   Notes:
11088   See the file include/petscmat.h for a complete list of matrix
11089   operations, which all have the form MATOP_<OPERATION>, where
11090   <OPERATION> is the name (in all capital letters) of the
11091   user interface routine (e.g., `MatMult()` -> `MATOP_MULT`).
11092 
11093   This routine is distinct from `MatShellGetOperation()` in that it can be called on any matrix type.
11094 
11095 .seealso: [](ch_matrices), `Mat`, `MatSetOperation()`, `MatCreateShell()`, `MatShellGetContext()`, `MatShellGetOperation()`
11096 @*/
11097 PetscErrorCode MatGetOperation(Mat mat, MatOperation op, void (**f)(void))
11098 {
11099   PetscFunctionBegin;
11100   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
11101   *f = (((void (**)(void))mat->ops)[op]);
11102   PetscFunctionReturn(PETSC_SUCCESS);
11103 }
11104 
11105 /*@
11106   MatHasOperation - Determines whether the given matrix supports the particular operation.
11107 
11108   Not Collective
11109 
11110   Input Parameters:
11111 + mat - the matrix
11112 - op  - the operation, for example, `MATOP_GET_DIAGONAL`
11113 
11114   Output Parameter:
11115 . has - either `PETSC_TRUE` or `PETSC_FALSE`
11116 
11117   Level: advanced
11118 
11119   Note:
11120   See `MatSetOperation()` for additional discussion on naming convention and usage of `op`.
11121 
11122 .seealso: [](ch_matrices), `Mat`, `MatCreateShell()`, `MatGetOperation()`, `MatSetOperation()`
11123 @*/
11124 PetscErrorCode MatHasOperation(Mat mat, MatOperation op, PetscBool *has)
11125 {
11126   PetscFunctionBegin;
11127   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
11128   PetscAssertPointer(has, 3);
11129   if (mat->ops->hasoperation) {
11130     PetscUseTypeMethod(mat, hasoperation, op, has);
11131   } else {
11132     if (((void **)mat->ops)[op]) *has = PETSC_TRUE;
11133     else {
11134       *has = PETSC_FALSE;
11135       if (op == MATOP_CREATE_SUBMATRIX) {
11136         PetscMPIInt size;
11137 
11138         PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)mat), &size));
11139         if (size == 1) PetscCall(MatHasOperation(mat, MATOP_CREATE_SUBMATRICES, has));
11140       }
11141     }
11142   }
11143   PetscFunctionReturn(PETSC_SUCCESS);
11144 }
11145 
11146 /*@
11147   MatHasCongruentLayouts - Determines whether the rows and columns layouts of the matrix are congruent
11148 
11149   Collective
11150 
11151   Input Parameter:
11152 . mat - the matrix
11153 
11154   Output Parameter:
11155 . cong - either `PETSC_TRUE` or `PETSC_FALSE`
11156 
11157   Level: beginner
11158 
11159 .seealso: [](ch_matrices), `Mat`, `MatCreate()`, `MatSetSizes()`, `PetscLayout`
11160 @*/
11161 PetscErrorCode MatHasCongruentLayouts(Mat mat, PetscBool *cong)
11162 {
11163   PetscFunctionBegin;
11164   PetscValidHeaderSpecific(mat, MAT_CLASSID, 1);
11165   PetscValidType(mat, 1);
11166   PetscAssertPointer(cong, 2);
11167   if (!mat->rmap || !mat->cmap) {
11168     *cong = mat->rmap == mat->cmap ? PETSC_TRUE : PETSC_FALSE;
11169     PetscFunctionReturn(PETSC_SUCCESS);
11170   }
11171   if (mat->congruentlayouts == PETSC_DECIDE) { /* first time we compare rows and cols layouts */
11172     PetscCall(PetscLayoutSetUp(mat->rmap));
11173     PetscCall(PetscLayoutSetUp(mat->cmap));
11174     PetscCall(PetscLayoutCompare(mat->rmap, mat->cmap, cong));
11175     if (*cong) mat->congruentlayouts = 1;
11176     else mat->congruentlayouts = 0;
11177   } else *cong = mat->congruentlayouts ? PETSC_TRUE : PETSC_FALSE;
11178   PetscFunctionReturn(PETSC_SUCCESS);
11179 }
11180 
11181 PetscErrorCode MatSetInf(Mat A)
11182 {
11183   PetscFunctionBegin;
11184   PetscUseTypeMethod(A, setinf);
11185   PetscFunctionReturn(PETSC_SUCCESS);
11186 }
11187 
11188 /*@C
11189   MatCreateGraph - create a scalar matrix (that is a matrix with one vertex for each block vertex in the original matrix), for use in graph algorithms
11190   and possibly removes small values from the graph structure.
11191 
11192   Collective
11193 
11194   Input Parameters:
11195 + A       - the matrix
11196 . sym     - `PETSC_TRUE` indicates that the graph should be symmetrized
11197 . scale   - `PETSC_TRUE` indicates that the graph edge weights should be symmetrically scaled with the diagonal entry
11198 . filter  - filter value - < 0: does nothing; == 0: removes only 0.0 entries; otherwise: removes entries with abs(entries) <= value
11199 . num_idx - size of 'index' array
11200 - index   - array of block indices to use for graph strength of connection weight
11201 
11202   Output Parameter:
11203 . graph - the resulting graph
11204 
11205   Level: advanced
11206 
11207 .seealso: [](ch_matrices), `Mat`, `MatCreate()`, `PCGAMG`
11208 @*/
11209 PetscErrorCode MatCreateGraph(Mat A, PetscBool sym, PetscBool scale, PetscReal filter, PetscInt num_idx, PetscInt index[], Mat *graph)
11210 {
11211   PetscFunctionBegin;
11212   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
11213   PetscValidType(A, 1);
11214   PetscValidLogicalCollectiveBool(A, scale, 3);
11215   PetscAssertPointer(graph, 7);
11216   PetscUseTypeMethod(A, creategraph, sym, scale, filter, num_idx, index, graph);
11217   PetscFunctionReturn(PETSC_SUCCESS);
11218 }
11219 
11220 /*@
11221   MatEliminateZeros - eliminate the nondiagonal zero entries in place from the nonzero structure of a sparse `Mat` in place,
11222   meaning the same memory is used for the matrix, and no new memory is allocated.
11223 
11224   Collective
11225 
11226   Input Parameters:
11227 + A    - the matrix
11228 - keep - if for a given row of `A`, the diagonal coefficient is zero, indicates whether it should be left in the structure or eliminated as well
11229 
11230   Level: intermediate
11231 
11232   Developer Note:
11233   The entries in the sparse matrix data structure are shifted to fill in the unneeded locations in the data. Thus the end
11234   of the arrays in the data structure are unneeded.
11235 
11236 .seealso: [](ch_matrices), `Mat`, `MatCreate()`, `MatCreateGraph()`, `MatFilter()`
11237 @*/
11238 PetscErrorCode MatEliminateZeros(Mat A, PetscBool keep)
11239 {
11240   PetscFunctionBegin;
11241   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
11242   PetscUseTypeMethod(A, eliminatezeros, keep);
11243   PetscFunctionReturn(PETSC_SUCCESS);
11244 }
11245