xref: /petsc/src/snes/impls/ksponly/ksponly.c (revision bd89dbf26d8a5efecb980364933175da61864cd7)
1 #include <petsc/private/snesimpl.h> /*I   "petscsnes.h"   I*/
2 
3 typedef struct {
4   PetscBool transpose_solve;
5 } SNES_KSPONLY;
6 
SNESSolve_KSPONLY(SNES snes)7 static PetscErrorCode SNESSolve_KSPONLY(SNES snes)
8 {
9   SNES_KSPONLY    *ksponly = (SNES_KSPONLY *)snes->data;
10   PetscInt         lits;
11   Vec              Y, X, F;
12   SNESNormSchedule normschedule;
13 
14   PetscFunctionBegin;
15   PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObject)snes), PETSC_ERR_ARG_WRONGSTATE, "SNES solver %s does not support bounds", ((PetscObject)snes)->type_name);
16 
17   snes->numFailures            = 0;
18   snes->numLinearSolveFailures = 0;
19   snes->reason                 = SNES_CONVERGED_ITERATING;
20   snes->iter                   = 0;
21   snes->norm                   = 0.0;
22 
23   X = snes->vec_sol;
24   F = snes->vec_func;
25   Y = snes->vec_sol_update;
26 
27   if (!snes->vec_func_init_set) PetscCall(SNESComputeFunction(snes, X, F));
28   else snes->vec_func_init_set = PETSC_FALSE;
29 
30   PetscCall(SNESGetNormSchedule(snes, &normschedule));
31   if (snes->numbermonitors && (normschedule == SNES_NORM_ALWAYS || normschedule == SNES_NORM_INITIAL_ONLY || normschedule == SNES_NORM_INITIAL_FINAL_ONLY)) {
32     PetscReal fnorm;
33     PetscCall(VecNorm(F, NORM_2, &fnorm));
34     SNESCheckFunctionDomainError(snes, fnorm);
35     PetscCall(SNESMonitor(snes, 0, fnorm));
36   }
37 
38   /* Call general purpose update function */
39   PetscTryTypeMethod(snes, update, 0);
40 
41   /* Solve J Y = F, where J is Jacobian matrix */
42   PetscCall(SNESComputeJacobian(snes, X, snes->jacobian, snes->jacobian_pre));
43   SNESCheckJacobianDomainError(snes);
44 
45   PetscCall(KSPSetOperators(snes->ksp, snes->jacobian, snes->jacobian_pre));
46   if (ksponly->transpose_solve) {
47     PetscCall(KSPSolveTranspose(snes->ksp, F, Y));
48   } else {
49     PetscCall(KSPSolve(snes->ksp, F, Y));
50   }
51   snes->reason = SNES_CONVERGED_ITS;
52   SNESCheckKSPSolve(snes);
53 
54   PetscCall(KSPGetIterationNumber(snes->ksp, &lits));
55   PetscCall(PetscInfo(snes, "iter=%" PetscInt_FMT ", linear solve iterations=%" PetscInt_FMT "\n", snes->iter, lits));
56   snes->iter++;
57 
58   /* Take the computed step. */
59   PetscCall(VecAXPY(X, -1.0, Y));
60 
61   if (snes->numbermonitors && (normschedule == SNES_NORM_ALWAYS || normschedule == SNES_NORM_FINAL_ONLY || normschedule == SNES_NORM_INITIAL_FINAL_ONLY)) {
62     PetscReal fnorm;
63     PetscCall(SNESComputeFunction(snes, X, F));
64     PetscCall(VecNorm(F, NORM_2, &fnorm));
65     SNESCheckFunctionDomainError(snes, fnorm);
66     PetscCall(SNESMonitor(snes, 1, fnorm));
67   }
68   PetscFunctionReturn(PETSC_SUCCESS);
69 }
70 
SNESSetUp_KSPONLY(SNES snes)71 static PetscErrorCode SNESSetUp_KSPONLY(SNES snes)
72 {
73   PetscFunctionBegin;
74   PetscCall(SNESSetUpMatrices(snes));
75   PetscFunctionReturn(PETSC_SUCCESS);
76 }
77 
SNESDestroy_KSPONLY(SNES snes)78 static PetscErrorCode SNESDestroy_KSPONLY(SNES snes)
79 {
80   PetscFunctionBegin;
81   PetscCall(PetscFree(snes->data));
82   PetscFunctionReturn(PETSC_SUCCESS);
83 }
84 
85 /*MC
86    SNESKSPONLY - Nonlinear solver that performs one Newton step with `KSPSolve()` and does not compute any norms.
87 
88    Level: beginner
89 
90    Note:
91    The main purpose of this solver is to solve linear problems using the `SNES` interface, without
92    any additional overhead in the form of vector norm operations.
93 
94 .seealso: [](ch_snes), `SNES`, `SNESType`, `SNESCreate()`, `SNES`, `SNESSetType()`, `SNESNEWTONLS`, `SNESNEWTONTR`, `SNESKSPTRANSPOSEONLY`
95 M*/
SNESCreate_KSPONLY(SNES snes)96 PETSC_EXTERN PetscErrorCode SNESCreate_KSPONLY(SNES snes)
97 {
98   SNES_KSPONLY *ksponly;
99 
100   PetscFunctionBegin;
101   snes->ops->setup          = SNESSetUp_KSPONLY;
102   snes->ops->solve          = SNESSolve_KSPONLY;
103   snes->ops->destroy        = SNESDestroy_KSPONLY;
104   snes->ops->setfromoptions = NULL;
105   snes->ops->view           = NULL;
106   snes->ops->reset          = NULL;
107 
108   snes->usesksp = PETSC_TRUE;
109   snes->usesnpc = PETSC_FALSE;
110 
111   snes->alwayscomputesfinalresidual = PETSC_FALSE;
112 
113   PetscCall(SNESParametersInitialize(snes));
114 
115   PetscCall(PetscNew(&ksponly));
116   snes->data = (void *)ksponly;
117   PetscFunctionReturn(PETSC_SUCCESS);
118 }
119 
120 /*MC
121    SNESKSPTRANSPOSEONLY - Nonlinear solver that performs one Newton step with `KSPSolveTranspose()` and does not compute any norms.
122 
123    Level: beginner
124 
125    Note:
126    The main purpose of this solver is to solve transposed linear problems using the `SNES` interface, without
127    any additional overhead in the form of vector operations within adjoint solvers.
128 
129 .seealso: [](ch_snes), `SNES`, `SNESType`, `SNESCreate()`, `SNES`, `SNESSetType()`, `SNESKS`, `SNESNEWTONLS`, `SNESNEWTONTR`
130 M*/
SNESCreate_KSPTRANSPOSEONLY(SNES snes)131 PETSC_EXTERN PetscErrorCode SNESCreate_KSPTRANSPOSEONLY(SNES snes)
132 {
133   SNES_KSPONLY *kspo;
134 
135   PetscFunctionBegin;
136   PetscCall(SNESCreate_KSPONLY(snes));
137   PetscCall(PetscObjectChangeTypeName((PetscObject)snes, SNESKSPTRANSPOSEONLY));
138   kspo                  = (SNES_KSPONLY *)snes->data;
139   kspo->transpose_solve = PETSC_TRUE;
140   PetscFunctionReturn(PETSC_SUCCESS);
141 }
142