Home
last modified time | relevance | path

Searched refs:MatZeroRowsIS (Results 1 – 19 of 19) sorted by relevance

/petsc/src/mat/tests/
H A Dex12.c123 PetscCall(MatZeroRowsIS(B, is, diag, 0, 0)); in TestMatZeroRows_Basic()
139 PetscCall(MatZeroRowsIS(B, is, diag, 0, 0)); in TestMatZeroRows_with_no_allocation()
H A Dex11.c52 PetscCall(MatZeroRowsIS(C, isrow, five, 0, 0)); in main()
H A Dex221.c217 PetscCall(MatZeroRowsIS(A, zr, diag, x, b1)); in main()
218 PetscCall(MatZeroRowsIS(S, zr, diag, x, b2)); in main()
239 PetscCall(MatZeroRowsIS(A, zr, diag * 2.0 + PETSC_SMALL, NULL, NULL)); in main()
240 PetscCall(MatZeroRowsIS(S, zr, diag * 2.0 + PETSC_SMALL, NULL, NULL)); in main()
H A Dex17.c52 PetscCall(MatZeroRowsIS(C, isrow, five, 0, 0)); in main()
H A Dex23.c1070 PetscCall(MatZeroRowsIS(B, is, diag, x, b)); in TestMatZeroRows()
1081 PetscCall(MatZeroRowsIS(B, is, diag, NULL, NULL)); in TestMatZeroRows()
1105 PetscCall(MatZeroRowsIS(Bcheck, gis, diag, NULL, NULL)); in TestMatZeroRows()
1108 PetscCall(MatZeroRowsIS(Bcheck, is, diag, NULL, NULL)); in TestMatZeroRows()
/petsc/src/ksp/ksp/tests/
H A Dex16f.F9074 PetscCallA(MatZeroRowsIS(A, isrow, five, PETSC_NULL_VEC, PETSC_NULL_VEC, ierr))
/petsc/doc/changes/
H A D32.md143 - MatZeroRows() and MatZeroRowsIS() now take an x and b vector as
/petsc/src/ksp/ksp/tutorials/
H A Dex43.c1483 …PetscCall(MatZeroRowsIS(B, fields[2], 1.0, NULL, NULL)); /* we put 1.0 on the diagonal to pick the… in solve_stokes_2d_coupled()
1485 PetscCall(MatZeroRowsIS(B, vel, 0.0, NULL, NULL)); in solve_stokes_2d_coupled()
/petsc/src/ts/tutorials/power_grid/stability_9bus/
H A Dex9busadj.c725 PetscCall(MatZeroRowsIS(A, user->is_diff, 1.0, NULL, NULL)); in AlgJacobian()
H A Dex9busoptfd.c727 PetscCall(MatZeroRowsIS(A, user->is_diff, 1.0, NULL, NULL)); in AlgJacobian()
H A Dex9bus.c997 PetscCall(MatZeroRowsIS(A, user->is_diff, 1.0, NULL, NULL)); in AlgJacobian()
H A Dex9busopt.c869 PetscCall(MatZeroRowsIS(A, user->is_diff, 1.0, NULL, NULL)); in AlgJacobian()
/petsc/src/ksp/pc/impls/hpddm/
H A Dpchpddm.cxx114 PetscCall(MatZeroRowsIS(**splitting, zero, 0.0, nullptr, nullptr)); in PCHPDDMSplittingMatNormal_Private()
1400 … PetscCall(MatZeroRowsIS(T, z, 0.0, nullptr, nullptr)); /* corresponding zero rows from A01 */ in PCHPDDMCheckSymmetry_Private()
1990 PetscCall(MatZeroRowsIS(C, is[0], 0.0, nullptr, nullptr)); in PCSetUp_HPDDM()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscmat.pxi380 PetscErrorCode MatZeroRowsIS(PetscMat, PetscIS, PetscScalar, PetscVec, PetscVec)
H A DMat.pyx3261 zeroRowsLocal, petsc.MatZeroRows, petsc.MatZeroRowsIS
3270 CHKERR(MatZeroRowsIS(self.mat, (<IS>rows).iset, sval, xvec, bvec))
/petsc/include/
H A Dpetscmat.h858 PETSC_EXTERN PetscErrorCode MatZeroRowsIS(Mat, IS, PetscScalar, Vec, Vec);
/petsc/src/ts/impls/arkimex/
H A Darkimex.c1940 PetscCall(MatZeroRowsIS(B, alg_is, 1.0, NULL, NULL)); in SNESTSFormJacobian_ARKIMEX()
/petsc/doc/manual/
H A Dmat.md1094 MatZeroRowsIS(Mat A,IS rows,PetscScalar diag_value,Vec x,Vec b);
/petsc/src/mat/interface/
H A Dmatrix.c6442 PetscErrorCode MatZeroRowsIS(Mat mat, IS is, PetscScalar diag, Vec x, Vec b) in MatZeroRowsIS() function