forked from petsc/petsc
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PCApplyTranspose_FieldSplit(): fix Schur complement implementation
Reported-by: Chris Douglas <[email protected]> [0]PETSC ERROR: --------------------- Error Message -------------------------------------------------------------- [0]PETSC ERROR: Object is in wrong state [0]PETSC ERROR: Mat object's type is not set: Argument # 1 [0]PETSC ERROR: #1 MatGetFactorAvailable() at src/mat/interface/matrix.c:4820 [0]PETSC ERROR: #2 PCGetDefaultType_Private() at src/ksp/pc/interface/precon.c:25 [0]PETSC ERROR: #3 PCSetUp() at src/ksp/pc/interface/precon.c:1109 [0]PETSC ERROR: #4 KSPSetUp() at src/ksp/ksp/interface/itfunc.c:406 [0]PETSC ERROR: #5 KSPSolve_Private() at src/ksp/ksp/interface/itfunc.c:826 [0]PETSC ERROR: #6 KSPSolveTranspose() at src/ksp/ksp/interface/itfunc.c:1122 [0]PETSC ERROR: #7 PCApplyTranspose_FieldSplit() at src/ksp/pc/impls/fieldsplit/fieldsplit.c:1487 [0]PETSC ERROR: #8 PCApplyTranspose() at src/ksp/pc/interface/precon.c:715 [0]PETSC ERROR: #9 KSP_PCApply() at include/petsc/private/kspimpl.h:380 [0]PETSC ERROR: #10 KSPInitialResidual() at src/ksp/ksp/interface/itres.c:63 [0]PETSC ERROR: #11 KSPSolve_GMRES() at src/ksp/ksp/impls/gmres/gmres.c:226 [0]PETSC ERROR: #12 KSPSolve_Private() at src/ksp/ksp/interface/itfunc.c:900 [0]PETSC ERROR: #13 KSPSolveTranspose() at src/ksp/ksp/interface/itfunc.c:1122 [0]PETSC ERROR: #14 main() at ex9.c:80 [0]PETSC ERROR: Reached the main program with an out-of-range error code 1. This should never happen
- Loading branch information
Showing
4 changed files
with
117 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Linear solve converged due to CONVERGED_ATOL iterations 1 | ||
Linear solve converged due to CONVERGED_ATOL iterations 1 | ||
Linear solve converged due to CONVERGED_ATOL iterations 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Linear solve converged due to CONVERGED_ATOL iterations 1 | ||
Linear solve converged due to CONVERGED_ATOL iterations 1 | ||
Linear solve converged due to CONVERGED_ATOL iterations 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters