Home
last modified time | relevance | path

Searched refs:MatForwardSolve (Results 1 – 18 of 18) sorted by relevance

/petsc/src/mat/tests/output/
H A Dex263_1.out2 Test MatForwardSolve...
H A Dex128_2.out2 Test MatForwardSolve...
H A Dex263_2.out2 Test MatForwardSolve...
H A Dex30_3.out3 Test MatForwardSolve...
H A Dex30_8.out2 Test MatForwardSolve...
/petsc/src/mat/tests/
H A Dex30.c126 PetscCall(MatForwardSolve(A, b, ytmp)); in main()
181 PetscCall(MatForwardSolve(A, b, ytmp)); in main()
H A Dex128.c99 PetscCall(MatForwardSolve(sA, b, ytmp)); in main()
H A Dex263.c100 PetscCall(MatForwardSolve(F, b, ytmp)); in main()
H A Dex48.c167 PetscCall(MatForwardSolve(Fact, yy, xx)); in main()
H A Dex74.c327 PetscCall(MatForwardSolve(sFactor, b, s1)); in main()
/petsc/src/ksp/pc/impls/factor/cholesky/
H A Dcholesky.c208 PetscCall(MatForwardSolve(pc->pmat, x, y)); in PCApplySymmetricLeft_Cholesky()
210 PetscCall(MatForwardSolve(((PC_Factor *)dir)->fact, x, y)); in PCApplySymmetricLeft_Cholesky()
/petsc/src/ksp/pc/impls/factor/icc/
H A Dicc.c111 PetscCall(MatForwardSolve(((PC_Factor *)icc)->fact, x, y)); in PCApplySymmetricLeft_ICC()
/petsc/src/ksp/pc/impls/factor/ilu/
H A Dilu.c233 PetscCall(MatForwardSolve(((PC_Factor *)icc)->fact, x, y)); in PCApplySymmetricLeft_ILU()
/petsc/doc/changes/
H A D321.md98 - Add partial support for `MatBackwardSolve()`/`MatForwardSolve()` with `MATSOLVERMKL_PARDISO` and …
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscmat.pxi487 PetscErrorCode MatForwardSolve(PetscMat, PetscVec, PetscVec)
H A DMat.pyx5460 petsc.MatForwardSolve
5463 CHKERR(MatForwardSolve(self.mat, b.vec, x.vec))
/petsc/include/
H A Dpetscmat.h1566 PETSC_EXTERN PetscErrorCode MatForwardSolve(Mat, Vec, Vec);
/petsc/src/mat/interface/
H A Dmatrix.c3890 PetscErrorCode MatForwardSolve(Mat mat, Vec b, Vec x) in MatForwardSolve() function