xref: /petsc/src/tao/bound/impls/bnk/bntl.c (revision fa2f3a98544cffa8147e57031dd6780dd55215d2)
1 #include <../src/tao/bound/impls/bnk/bnk.h>
2 #include <petscksp.h>
3 
4 /*
5  Implements Newton's Method with a trust region approach for solving
6  bound constrained minimization problems.
7 
8  In this variant, the trust region failures trigger a line search with
9  the existing Newton step instead of re-solving the step with a
10  different radius.
11 
12  ------------------------------------------------------------
13 
14  x_0 = VecMedian(x_0)
15  f_0, g_0 = TaoComputeObjectiveAndGradient(x_0)
16  pg_0 = project(g_0)
17  check convergence at pg_0
18  needH = TaoBNKInitialize(default:BNK_INIT_INTERPOLATION)
19  niter = 0
20  step_accepted = true
21 
22  while niter <= max_it
23     niter += 1
24 
25     if needH
26       If max_cg_steps > 0
27         x_k, g_k, pg_k = TaoSolve(BNCG)
28       end
29 
30       H_k = TaoComputeHessian(x_k)
31       if pc_type == BNK_PC_BFGS
32         add correction to BFGS approx
33         if scale_type == BNK_SCALE_AHESS
34           D = VecMedian(1e-6, abs(diag(H_k)), 1e6)
35           scale BFGS with VecReciprocal(D)
36         end
37       end
38       needH = False
39     end
40 
41     if pc_type = BNK_PC_BFGS
42       B_k = BFGS
43     else
44       B_k = VecMedian(1e-6, abs(diag(H_k)), 1e6)
45       B_k = VecReciprocal(B_k)
46     end
47     w = x_k - VecMedian(x_k - 0.001*B_k*g_k)
48     eps = min(eps, norm2(w))
49     determine the active and inactive index sets such that
50       L = {i : (x_k)_i <= l_i + eps && (g_k)_i > 0}
51       U = {i : (x_k)_i >= u_i - eps && (g_k)_i < 0}
52       F = {i : l_i = (x_k)_i = u_i}
53       A = {L + U + F}
54       IA = {i : i not in A}
55 
56     generate the reduced system Hr_k dr_k = -gr_k for variables in IA
57     if pc_type == BNK_PC_BFGS && scale_type == BNK_SCALE_PHESS
58       D = VecMedian(1e-6, abs(diag(Hr_k)), 1e6)
59       scale BFGS with VecReciprocal(D)
60     end
61     solve Hr_k dr_k = -gr_k
62     set d_k to (l - x) for variables in L, (u - x) for variables in U, and 0 for variables in F
63 
64     x_{k+1} = VecMedian(x_k + d_k)
65     s = x_{k+1} - x_k
66     prered = dot(s, 0.5*gr_k - Hr_k*s)
67     f_{k+1} = TaoComputeObjective(x_{k+1})
68     actred = f_k - f_{k+1}
69 
70     oldTrust = trust
71     step_accepted, trust = TaoBNKUpdateTrustRadius(default: BNK_UPDATE_REDUCTION)
72     if step_accepted
73       g_{k+1} = TaoComputeGradient(x_{k+1})
74       pg_{k+1} = project(g_{k+1})
75       count the accepted Newton step
76     else
77       if dot(d_k, pg_k)) >= 0 || norm(d_k) == NaN || norm(d_k) == Inf
78         dr_k = -BFGS*gr_k for variables in I
79         if dot(d_k, pg_k)) >= 0 || norm(d_k) == NaN || norm(d_k) == Inf
80           reset the BFGS preconditioner
81           calculate scale delta and apply it to BFGS
82           dr_k = -BFGS*gr_k for variables in I
83           if dot(d_k, pg_k)) >= 0 || norm(d_k) == NaN || norm(d_k) == Inf
84             dr_k = -gr_k for variables in I
85           end
86         end
87       end
88 
89       x_{k+1}, f_{k+1}, g_{k+1}, ls_failed = TaoBNKPerformLineSearch()
90       if ls_failed
91         f_{k+1} = f_k
92         x_{k+1} = x_k
93         g_{k+1} = g_k
94         pg_{k+1} = pg_k
95         terminate
96       else
97         pg_{k+1} = project(g_{k+1})
98         trust = oldTrust
99         trust = TaoBNKUpdateTrustRadius(BNK_UPDATE_STEP)
100         count the accepted step type (Newton, BFGS, scaled grad or grad)
101       end
102     end
103 
104     check convergence at pg_{k+1}
105  end
106 */
107 
108 static PetscErrorCode TaoSolve_BNTL(Tao tao)
109 {
110   PetscErrorCode               ierr;
111   TAO_BNK                      *bnk = (TAO_BNK *)tao->data;
112   KSPConvergedReason           ksp_reason;
113   TaoLineSearchConvergedReason ls_reason;
114 
115   PetscReal                    oldTrust, prered, actred, steplen, resnorm;
116   PetscBool                    cgTerminate, needH = PETSC_TRUE, stepAccepted, shift = PETSC_FALSE;
117   PetscInt                     stepType, nDiff;
118 
119   PetscFunctionBegin;
120   /* Initialize the preconditioner, KSP solver and trust radius/line search */
121   tao->reason = TAO_CONTINUE_ITERATING;
122   ierr = TaoBNKInitialize(tao, bnk->init_type, &needH);CHKERRQ(ierr);
123   if (tao->reason != TAO_CONTINUE_ITERATING) PetscFunctionReturn(0);
124 
125   /* Have not converged; continue with Newton method */
126   while (tao->reason == TAO_CONTINUE_ITERATING) {
127     ++tao->niter;
128 
129     if (needH && bnk->inactive_idx) {
130       /* Take BNCG steps (if enabled) to trade-off Hessian evaluations for more gradient evaluations */
131       ierr = TaoBNKTakeCGSteps(tao, &cgTerminate);CHKERRQ(ierr);
132       if (cgTerminate) {
133         tao->reason = bnk->bncg->reason;
134         PetscFunctionReturn(0);
135       }
136       /* Compute the hessian and update the BFGS preconditioner at the new iterate */
137       ierr = TaoBNKComputeHessian(tao);CHKERRQ(ierr);
138       needH = PETSC_FALSE;
139     }
140 
141     /* Use the common BNK kernel to compute the Newton step (for inactive variables only) */
142     ierr = TaoBNKComputeStep(tao, shift, &ksp_reason);CHKERRQ(ierr);
143     stepType = BNK_NEWTON;
144 
145     /* Store current solution before it changes */
146     oldTrust = tao->trust;
147     bnk->fold = bnk->f;
148     ierr = VecCopy(tao->solution, bnk->Xold);CHKERRQ(ierr);
149     ierr = VecCopy(tao->gradient, bnk->Gold);CHKERRQ(ierr);
150     ierr = VecCopy(bnk->unprojected_gradient, bnk->unprojected_gradient_old);CHKERRQ(ierr);
151 
152     /* Temporarily accept the step and project it into the bounds */
153     ierr = VecAXPY(tao->solution, 1.0, tao->stepdirection);CHKERRQ(ierr);
154     ierr = TaoBoundSolution(tao->solution, tao->XL,tao->XU, 0.0, &nDiff, tao->solution);CHKERRQ(ierr);
155 
156     /* Check if the projection changed the step direction */
157     if (nDiff > 0) {
158       /* Projection changed the step, so we have to recompute the step and
159          the predicted reduction. Leave the trust radius unchanged. */
160       ierr = VecCopy(tao->solution, tao->stepdirection);CHKERRQ(ierr);
161       ierr = VecAXPY(tao->stepdirection, -1.0, bnk->Xold);CHKERRQ(ierr);
162       ierr = TaoBNKRecomputePred(tao, tao->stepdirection, &prered);CHKERRQ(ierr);
163     } else {
164       /* Step did not change, so we can just recover the pre-computed prediction */
165       ierr = KSPCGGetObjFcn(tao->ksp, &prered);CHKERRQ(ierr);
166     }
167     prered = -prered;
168 
169     /* Compute the actual reduction and update the trust radius */
170     ierr = TaoComputeObjective(tao, tao->solution, &bnk->f);CHKERRQ(ierr);
171     if (PetscIsInfOrNanReal(bnk->f)) SETERRQ(PETSC_COMM_SELF,1, "User provided compute function generated Inf or NaN");
172     actred = bnk->fold - bnk->f;
173     ierr = TaoBNKUpdateTrustRadius(tao, prered, actred, bnk->update_type, stepType, &stepAccepted);CHKERRQ(ierr);
174 
175     if (stepAccepted) {
176       /* Step is good, evaluate the gradient and the hessian */
177       steplen = 1.0;
178       needH = PETSC_TRUE;
179       ++bnk->newt;
180       ierr = TaoComputeGradient(tao, tao->solution, bnk->unprojected_gradient);CHKERRQ(ierr);
181       ierr = TaoBNKEstimateActiveSet(tao, bnk->as_type);CHKERRQ(ierr);
182       ierr = VecCopy(bnk->unprojected_gradient, tao->gradient);CHKERRQ(ierr);
183       ierr = VecISSet(tao->gradient, bnk->active_idx, 0.0);CHKERRQ(ierr);
184       ierr = VecNorm(tao->gradient, NORM_2, &bnk->gnorm);CHKERRQ(ierr);
185     } else {
186       /* Trust-region rejected the step. Revert the solution. */
187       bnk->f = bnk->fold;
188       ierr = VecCopy(bnk->Xold, tao->solution);CHKERRQ(ierr);
189       /* Trigger the line search */
190       ierr = TaoBNKSafeguardStep(tao, ksp_reason, &stepType);CHKERRQ(ierr);
191       ierr = TaoBNKPerformLineSearch(tao, &stepType, &steplen, &ls_reason);CHKERRQ(ierr);
192       if (ls_reason != TAOLINESEARCH_SUCCESS && ls_reason != TAOLINESEARCH_SUCCESS_USER) {
193         /* Line search failed, revert solution and terminate */
194         stepAccepted = PETSC_FALSE;
195         needH = PETSC_FALSE;
196         bnk->f = bnk->fold;
197         ierr = VecCopy(bnk->Xold, tao->solution);CHKERRQ(ierr);
198         ierr = VecCopy(bnk->Gold, tao->gradient);CHKERRQ(ierr);
199         ierr = VecCopy(bnk->unprojected_gradient_old, bnk->unprojected_gradient);CHKERRQ(ierr);
200         tao->trust = 0.0;
201         tao->reason = TAO_DIVERGED_LS_FAILURE;
202       } else {
203         /* new iterate so we need to recompute the Hessian */
204         needH = PETSC_TRUE;
205         /* compute the projected gradient */
206         ierr = TaoBNKEstimateActiveSet(tao, bnk->as_type);CHKERRQ(ierr);
207         ierr = VecCopy(bnk->unprojected_gradient, tao->gradient);CHKERRQ(ierr);
208         ierr = VecISSet(tao->gradient, bnk->active_idx, 0.0);CHKERRQ(ierr);
209         ierr = VecNorm(tao->gradient, NORM_2, &bnk->gnorm);CHKERRQ(ierr);
210         /* Line search succeeded so we should update the trust radius based on the LS step length */
211         tao->trust = oldTrust;
212         ierr = TaoBNKUpdateTrustRadius(tao, prered, actred, BNK_UPDATE_STEP, stepType, &stepAccepted);CHKERRQ(ierr);
213         /* count the accepted step type */
214         ierr = TaoBNKAddStepCounts(tao, stepType);CHKERRQ(ierr);
215       }
216     }
217 
218     /*  Check for termination */
219     ierr = VecFischer(tao->solution, bnk->unprojected_gradient, tao->XL, tao->XU, bnk->W);CHKERRQ(ierr);
220     ierr = VecNorm(bnk->W, NORM_2, &resnorm);CHKERRQ(ierr);
221     if (PetscIsInfOrNanReal(resnorm)) SETERRQ(PETSC_COMM_SELF,1, "User provided compute function generated Inf or NaN");
222     ierr = TaoLogConvergenceHistory(tao, bnk->f, resnorm, 0.0, tao->ksp_its);CHKERRQ(ierr);
223     ierr = TaoMonitor(tao, tao->niter, bnk->f, resnorm, 0.0, steplen);CHKERRQ(ierr);
224     ierr = (*tao->ops->convergencetest)(tao, tao->cnvP);CHKERRQ(ierr);
225   }
226   PetscFunctionReturn(0);
227 }
228 
229 /*------------------------------------------------------------*/
230 
231 PETSC_INTERN PetscErrorCode TaoSetUp_BNTL(Tao tao)
232 {
233   TAO_BNK        *bnk = (TAO_BNK *)tao->data;
234   PetscErrorCode ierr;
235 
236   PetscFunctionBegin;
237   ierr = TaoSetUp_BNK(tao);CHKERRQ(ierr);
238   if (!bnk->is_nash && !bnk->is_stcg && !bnk->is_gltr) SETERRQ(PETSC_COMM_SELF,1,"Must use a trust-region CG method for KSP (KSPNASH, KSPSTCG, KSPGLTR)");
239   PetscFunctionReturn(0);
240 }
241 
242 /*------------------------------------------------------------*/
243 
244 PETSC_INTERN PetscErrorCode TaoCreate_BNTL(Tao tao)
245 {
246   TAO_BNK        *bnk;
247   PetscErrorCode ierr;
248 
249   PetscFunctionBegin;
250   ierr = TaoCreate_BNK(tao);CHKERRQ(ierr);
251   tao->ops->solve=TaoSolve_BNTL;
252   tao->ops->setup=TaoSetUp_BNTL;
253 
254   bnk = (TAO_BNK *)tao->data;
255   bnk->update_type = BNK_UPDATE_REDUCTION; /* trust region updates based on predicted/actual reduction */
256   PetscFunctionReturn(0);
257 }
258