1 #include <petsctaolinesearch.h> /*I "petsctaolinesearch.h" I*/ 2 #include <../src/tao/unconstrained/impls/lmvm/lmvm.h> 3 #include <../src/tao/bound/impls/blmvm/blmvm.h> 4 5 /*------------------------------------------------------------*/ 6 static PetscErrorCode TaoSolve_BLMVM(Tao tao) 7 { 8 TAO_BLMVM *blmP = (TAO_BLMVM *)tao->data; 9 TaoLineSearchConvergedReason ls_status = TAOLINESEARCH_CONTINUE_ITERATING; 10 PetscReal f, fold, gdx, gnorm, gnorm2; 11 PetscReal stepsize = 1.0, delta; 12 13 PetscFunctionBegin; 14 /* Project initial point onto bounds */ 15 PetscCall(TaoComputeVariableBounds(tao)); 16 PetscCall(VecMedian(tao->XL, tao->solution, tao->XU, tao->solution)); 17 PetscCall(TaoLineSearchSetVariableBounds(tao->linesearch, tao->XL, tao->XU)); 18 19 /* Check convergence criteria */ 20 PetscCall(TaoComputeObjectiveAndGradient(tao, tao->solution, &f, blmP->unprojected_gradient)); 21 PetscCall(VecBoundGradientProjection(blmP->unprojected_gradient, tao->solution, tao->XL, tao->XU, tao->gradient)); 22 23 PetscCall(TaoGradientNorm(tao, tao->gradient, NORM_2, &gnorm)); 24 PetscCheck(!PetscIsInfOrNanReal(f) && !PetscIsInfOrNanReal(gnorm), PetscObjectComm((PetscObject)tao), PETSC_ERR_USER, "User provided compute function generated Inf or NaN"); 25 26 tao->reason = TAO_CONTINUE_ITERATING; 27 PetscCall(TaoLogConvergenceHistory(tao, f, gnorm, 0.0, tao->ksp_its)); 28 PetscCall(TaoMonitor(tao, tao->niter, f, gnorm, 0.0, stepsize)); 29 PetscUseTypeMethod(tao, convergencetest, tao->cnvP); 30 if (tao->reason != TAO_CONTINUE_ITERATING) PetscFunctionReturn(PETSC_SUCCESS); 31 32 /* Set counter for gradient/reset steps */ 33 if (!blmP->recycle) { 34 blmP->grad = 0; 35 blmP->reset = 0; 36 PetscCall(MatLMVMReset(blmP->M, PETSC_FALSE)); 37 } 38 39 /* Have not converged; continue with Newton method */ 40 while (tao->reason == TAO_CONTINUE_ITERATING) { 41 /* Call general purpose update function */ 42 if (tao->ops->update) { 43 PetscUseTypeMethod(tao, update, tao->niter, tao->user_update); 44 PetscCall(TaoComputeObjectiveAndGradient(tao, tao->solution, &f, tao->gradient)); 45 } 46 /* Compute direction */ 47 gnorm2 = gnorm * gnorm; 48 if (gnorm2 == 0.0) gnorm2 = PETSC_MACHINE_EPSILON; 49 if (f == 0.0) { 50 delta = 2.0 / gnorm2; 51 } else { 52 delta = 2.0 * PetscAbsScalar(f) / gnorm2; 53 } 54 PetscCall(MatLMVMSymBroydenSetDelta(blmP->M, delta)); 55 PetscCall(MatLMVMUpdate(blmP->M, tao->solution, tao->gradient)); 56 PetscCall(MatSolve(blmP->M, blmP->unprojected_gradient, tao->stepdirection)); 57 PetscCall(VecBoundGradientProjection(tao->stepdirection, tao->solution, tao->XL, tao->XU, tao->gradient)); 58 59 /* Check for success (descent direction) */ 60 PetscCall(VecDot(blmP->unprojected_gradient, tao->gradient, &gdx)); 61 if (gdx <= 0) { 62 /* Step is not descent or solve was not successful 63 Use steepest descent direction (scaled) */ 64 ++blmP->grad; 65 66 PetscCall(MatLMVMReset(blmP->M, PETSC_FALSE)); 67 PetscCall(MatLMVMUpdate(blmP->M, tao->solution, blmP->unprojected_gradient)); 68 PetscCall(MatSolve(blmP->M, blmP->unprojected_gradient, tao->stepdirection)); 69 } 70 PetscCall(VecScale(tao->stepdirection, -1.0)); 71 72 /* Perform the linesearch */ 73 fold = f; 74 PetscCall(VecCopy(tao->solution, blmP->Xold)); 75 PetscCall(VecCopy(blmP->unprojected_gradient, blmP->Gold)); 76 PetscCall(TaoLineSearchSetInitialStepLength(tao->linesearch, 1.0)); 77 PetscCall(TaoLineSearchApply(tao->linesearch, tao->solution, &f, blmP->unprojected_gradient, tao->stepdirection, &stepsize, &ls_status)); 78 PetscCall(TaoAddLineSearchCounts(tao)); 79 80 if (ls_status != TAOLINESEARCH_SUCCESS && ls_status != TAOLINESEARCH_SUCCESS_USER) { 81 /* Linesearch failed 82 Reset factors and use scaled (projected) gradient step */ 83 ++blmP->reset; 84 85 f = fold; 86 PetscCall(VecCopy(blmP->Xold, tao->solution)); 87 PetscCall(VecCopy(blmP->Gold, blmP->unprojected_gradient)); 88 89 PetscCall(MatLMVMReset(blmP->M, PETSC_FALSE)); 90 PetscCall(MatLMVMUpdate(blmP->M, tao->solution, blmP->unprojected_gradient)); 91 PetscCall(MatSolve(blmP->M, blmP->unprojected_gradient, tao->stepdirection)); 92 PetscCall(VecScale(tao->stepdirection, -1.0)); 93 94 /* This may be incorrect; linesearch has values for stepmax and stepmin 95 that should be reset. */ 96 PetscCall(TaoLineSearchSetInitialStepLength(tao->linesearch, 1.0)); 97 PetscCall(TaoLineSearchApply(tao->linesearch, tao->solution, &f, blmP->unprojected_gradient, tao->stepdirection, &stepsize, &ls_status)); 98 PetscCall(TaoAddLineSearchCounts(tao)); 99 100 if (ls_status != TAOLINESEARCH_SUCCESS && ls_status != TAOLINESEARCH_SUCCESS_USER) { 101 tao->reason = TAO_DIVERGED_LS_FAILURE; 102 break; 103 } 104 } 105 106 /* Check for converged */ 107 PetscCall(VecBoundGradientProjection(blmP->unprojected_gradient, tao->solution, tao->XL, tao->XU, tao->gradient)); 108 PetscCall(TaoGradientNorm(tao, tao->gradient, NORM_2, &gnorm)); 109 PetscCheck(!PetscIsInfOrNanReal(f) && !PetscIsInfOrNanReal(gnorm), PetscObjectComm((PetscObject)tao), PETSC_ERR_USER, "User provided compute function generated Not-a-Number"); 110 tao->niter++; 111 PetscCall(TaoLogConvergenceHistory(tao, f, gnorm, 0.0, tao->ksp_its)); 112 PetscCall(TaoMonitor(tao, tao->niter, f, gnorm, 0.0, stepsize)); 113 PetscUseTypeMethod(tao, convergencetest, tao->cnvP); 114 } 115 PetscFunctionReturn(PETSC_SUCCESS); 116 } 117 118 static PetscErrorCode TaoSetup_BLMVM(Tao tao) 119 { 120 TAO_BLMVM *blmP = (TAO_BLMVM *)tao->data; 121 122 PetscFunctionBegin; 123 /* Existence of tao->solution checked in TaoSetup() */ 124 PetscCall(VecDuplicate(tao->solution, &blmP->Xold)); 125 PetscCall(VecDuplicate(tao->solution, &blmP->Gold)); 126 PetscCall(VecDuplicate(tao->solution, &blmP->unprojected_gradient)); 127 if (!tao->stepdirection) PetscCall(VecDuplicate(tao->solution, &tao->stepdirection)); 128 if (!tao->gradient) PetscCall(VecDuplicate(tao->solution, &tao->gradient)); 129 /* Allocate matrix for the limited memory approximation */ 130 PetscCall(MatLMVMAllocate(blmP->M, tao->solution, blmP->unprojected_gradient)); 131 132 /* If the user has set a matrix to solve as the initial H0, set the options prefix here, and set up the KSP */ 133 if (blmP->H0) PetscCall(MatLMVMSetJ0(blmP->M, blmP->H0)); 134 PetscFunctionReturn(PETSC_SUCCESS); 135 } 136 137 /* ---------------------------------------------------------- */ 138 static PetscErrorCode TaoDestroy_BLMVM(Tao tao) 139 { 140 TAO_BLMVM *blmP = (TAO_BLMVM *)tao->data; 141 142 PetscFunctionBegin; 143 if (tao->setupcalled) { 144 PetscCall(VecDestroy(&blmP->unprojected_gradient)); 145 PetscCall(VecDestroy(&blmP->Xold)); 146 PetscCall(VecDestroy(&blmP->Gold)); 147 } 148 PetscCall(MatDestroy(&blmP->M)); 149 if (blmP->H0) PetscCall(PetscObjectDereference((PetscObject)blmP->H0)); 150 PetscCall(PetscFree(tao->data)); 151 PetscFunctionReturn(PETSC_SUCCESS); 152 } 153 154 /*------------------------------------------------------------*/ 155 static PetscErrorCode TaoSetFromOptions_BLMVM(Tao tao, PetscOptionItems *PetscOptionsObject) 156 { 157 TAO_BLMVM *blmP = (TAO_BLMVM *)tao->data; 158 PetscBool is_spd, is_set; 159 160 PetscFunctionBegin; 161 PetscOptionsHeadBegin(PetscOptionsObject, "Limited-memory variable-metric method for bound constrained optimization"); 162 PetscCall(PetscOptionsBool("-tao_blmvm_recycle", "enable recycling of the BFGS matrix between subsequent TaoSolve() calls", "", blmP->recycle, &blmP->recycle, NULL)); 163 PetscOptionsHeadEnd(); 164 PetscCall(MatSetOptionsPrefix(blmP->M, ((PetscObject)tao)->prefix)); 165 PetscCall(MatAppendOptionsPrefix(blmP->M, "tao_blmvm_")); 166 PetscCall(MatSetFromOptions(blmP->M)); 167 PetscCall(MatIsSPDKnown(blmP->M, &is_set, &is_spd)); 168 PetscCheck(is_set && is_spd, PetscObjectComm((PetscObject)tao), PETSC_ERR_ARG_INCOMP, "LMVM matrix must be symmetric positive-definite"); 169 PetscFunctionReturn(PETSC_SUCCESS); 170 } 171 172 /*------------------------------------------------------------*/ 173 static PetscErrorCode TaoView_BLMVM(Tao tao, PetscViewer viewer) 174 { 175 TAO_BLMVM *lmP = (TAO_BLMVM *)tao->data; 176 PetscBool isascii; 177 178 PetscFunctionBegin; 179 PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERASCII, &isascii)); 180 if (isascii) { 181 PetscCall(PetscViewerASCIIPrintf(viewer, "Gradient steps: %" PetscInt_FMT "\n", lmP->grad)); 182 PetscCall(PetscViewerPushFormat(viewer, PETSC_VIEWER_ASCII_INFO)); 183 PetscCall(MatView(lmP->M, viewer)); 184 PetscCall(PetscViewerPopFormat(viewer)); 185 } 186 PetscFunctionReturn(PETSC_SUCCESS); 187 } 188 189 static PetscErrorCode TaoComputeDual_BLMVM(Tao tao, Vec DXL, Vec DXU) 190 { 191 TAO_BLMVM *blm = (TAO_BLMVM *)tao->data; 192 193 PetscFunctionBegin; 194 PetscValidHeaderSpecific(tao, TAO_CLASSID, 1); 195 PetscValidHeaderSpecific(DXL, VEC_CLASSID, 2); 196 PetscValidHeaderSpecific(DXU, VEC_CLASSID, 3); 197 PetscCheck(tao->gradient && blm->unprojected_gradient, PETSC_COMM_SELF, PETSC_ERR_ORDER, "Dual variables don't exist yet or no longer exist."); 198 199 PetscCall(VecCopy(tao->gradient, DXL)); 200 PetscCall(VecAXPY(DXL, -1.0, blm->unprojected_gradient)); 201 PetscCall(VecSet(DXU, 0.0)); 202 PetscCall(VecPointwiseMax(DXL, DXL, DXU)); 203 204 PetscCall(VecCopy(blm->unprojected_gradient, DXU)); 205 PetscCall(VecAXPY(DXU, -1.0, tao->gradient)); 206 PetscCall(VecAXPY(DXU, 1.0, DXL)); 207 PetscFunctionReturn(PETSC_SUCCESS); 208 } 209 210 /* ---------------------------------------------------------- */ 211 /*MC 212 TAOBLMVM - Bounded limited memory variable metric is a quasi-Newton method 213 for nonlinear minimization with bound constraints. It is an extension 214 of TAOLMVM 215 216 Options Database Keys: 217 . -tao_lmm_recycle - enable recycling of LMVM information between subsequent TaoSolve calls 218 219 Level: beginner 220 M*/ 221 PETSC_EXTERN PetscErrorCode TaoCreate_BLMVM(Tao tao) 222 { 223 TAO_BLMVM *blmP; 224 const char *morethuente_type = TAOLINESEARCHMT; 225 226 PetscFunctionBegin; 227 tao->ops->setup = TaoSetup_BLMVM; 228 tao->ops->solve = TaoSolve_BLMVM; 229 tao->ops->view = TaoView_BLMVM; 230 tao->ops->setfromoptions = TaoSetFromOptions_BLMVM; 231 tao->ops->destroy = TaoDestroy_BLMVM; 232 tao->ops->computedual = TaoComputeDual_BLMVM; 233 234 PetscCall(PetscNew(&blmP)); 235 blmP->H0 = NULL; 236 blmP->recycle = PETSC_FALSE; 237 tao->data = (void *)blmP; 238 239 /* Override default settings (unless already changed) */ 240 if (!tao->max_it_changed) tao->max_it = 2000; 241 if (!tao->max_funcs_changed) tao->max_funcs = 4000; 242 243 PetscCall(TaoLineSearchCreate(((PetscObject)tao)->comm, &tao->linesearch)); 244 PetscCall(PetscObjectIncrementTabLevel((PetscObject)tao->linesearch, (PetscObject)tao, 1)); 245 PetscCall(TaoLineSearchSetType(tao->linesearch, morethuente_type)); 246 PetscCall(TaoLineSearchUseTaoRoutines(tao->linesearch, tao)); 247 248 PetscCall(KSPInitializePackage()); 249 PetscCall(MatCreate(((PetscObject)tao)->comm, &blmP->M)); 250 PetscCall(MatSetType(blmP->M, MATLMVMBFGS)); 251 PetscCall(PetscObjectIncrementTabLevel((PetscObject)blmP->M, (PetscObject)tao, 1)); 252 PetscFunctionReturn(PETSC_SUCCESS); 253 } 254 255 /*@ 256 TaoLMVMRecycle - Enable/disable recycling of the QN history between subsequent TaoSolve calls. 257 258 Input Parameters: 259 + tao - the Tao solver context 260 - flg - Boolean flag for recycling (PETSC_TRUE or PETSC_FALSE) 261 262 Level: intermediate 263 @*/ 264 PetscErrorCode TaoLMVMRecycle(Tao tao, PetscBool flg) 265 { 266 TAO_LMVM *lmP; 267 TAO_BLMVM *blmP; 268 PetscBool is_lmvm, is_blmvm; 269 270 PetscFunctionBegin; 271 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOLMVM, &is_lmvm)); 272 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOBLMVM, &is_blmvm)); 273 if (is_lmvm) { 274 lmP = (TAO_LMVM *)tao->data; 275 lmP->recycle = flg; 276 } else if (is_blmvm) { 277 blmP = (TAO_BLMVM *)tao->data; 278 blmP->recycle = flg; 279 } 280 PetscFunctionReturn(PETSC_SUCCESS); 281 } 282 283 /*@ 284 TaoLMVMSetH0 - Set the initial Hessian for the QN approximation 285 286 Input Parameters: 287 + tao - the Tao solver context 288 - H0 - Mat object for the initial Hessian 289 290 Level: advanced 291 292 .seealso: `TaoLMVMGetH0()`, `TaoLMVMGetH0KSP()` 293 @*/ 294 PetscErrorCode TaoLMVMSetH0(Tao tao, Mat H0) 295 { 296 TAO_LMVM *lmP; 297 TAO_BLMVM *blmP; 298 PetscBool is_lmvm, is_blmvm; 299 300 PetscFunctionBegin; 301 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOLMVM, &is_lmvm)); 302 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOBLMVM, &is_blmvm)); 303 if (is_lmvm) { 304 lmP = (TAO_LMVM *)tao->data; 305 PetscCall(PetscObjectReference((PetscObject)H0)); 306 lmP->H0 = H0; 307 } else if (is_blmvm) { 308 blmP = (TAO_BLMVM *)tao->data; 309 PetscCall(PetscObjectReference((PetscObject)H0)); 310 blmP->H0 = H0; 311 } 312 PetscFunctionReturn(PETSC_SUCCESS); 313 } 314 315 /*@ 316 TaoLMVMGetH0 - Get the matrix object for the QN initial Hessian 317 318 Input Parameters: 319 . tao - the Tao solver context 320 321 Output Parameters: 322 . H0 - Mat object for the initial Hessian 323 324 Level: advanced 325 326 .seealso: `TaoLMVMSetH0()`, `TaoLMVMGetH0KSP()` 327 @*/ 328 PetscErrorCode TaoLMVMGetH0(Tao tao, Mat *H0) 329 { 330 TAO_LMVM *lmP; 331 TAO_BLMVM *blmP; 332 PetscBool is_lmvm, is_blmvm; 333 Mat M; 334 335 PetscFunctionBegin; 336 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOLMVM, &is_lmvm)); 337 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOBLMVM, &is_blmvm)); 338 if (is_lmvm) { 339 lmP = (TAO_LMVM *)tao->data; 340 M = lmP->M; 341 } else if (is_blmvm) { 342 blmP = (TAO_BLMVM *)tao->data; 343 M = blmP->M; 344 } else SETERRQ(PetscObjectComm((PetscObject)tao), PETSC_ERR_ARG_WRONG, "This routine applies to TAO_LMVM and TAO_BLMVM."); 345 PetscCall(MatLMVMGetJ0(M, H0)); 346 PetscFunctionReturn(PETSC_SUCCESS); 347 } 348 349 /*@ 350 TaoLMVMGetH0KSP - Get the iterative solver for applying the inverse of the QN initial Hessian 351 352 Input Parameters: 353 . tao - the Tao solver context 354 355 Output Parameters: 356 . ksp - KSP solver context for the initial Hessian 357 358 Level: advanced 359 360 .seealso: `TaoLMVMGetH0()`, `TaoLMVMGetH0KSP()` 361 @*/ 362 PetscErrorCode TaoLMVMGetH0KSP(Tao tao, KSP *ksp) 363 { 364 TAO_LMVM *lmP; 365 TAO_BLMVM *blmP; 366 PetscBool is_lmvm, is_blmvm; 367 Mat M; 368 369 PetscFunctionBegin; 370 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOLMVM, &is_lmvm)); 371 PetscCall(PetscObjectTypeCompare((PetscObject)tao, TAOBLMVM, &is_blmvm)); 372 if (is_lmvm) { 373 lmP = (TAO_LMVM *)tao->data; 374 M = lmP->M; 375 } else if (is_blmvm) { 376 blmP = (TAO_BLMVM *)tao->data; 377 M = blmP->M; 378 } else SETERRQ(PetscObjectComm((PetscObject)tao), PETSC_ERR_ARG_WRONG, "This routine applies to TAO_LMVM and TAO_BLMVM."); 379 PetscCall(MatLMVMGetJ0KSP(M, ksp)); 380 PetscFunctionReturn(PETSC_SUCCESS); 381 } 382