/usr/include/trilinos/BelosLSQRStatusTest.hpp is in libtrilinos-belos-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | /*
//@HEADER
// ************************************************************************
//
// Belos: Block Linear Solvers Package
// Copyright 2004 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#ifndef BELOS_LSQR_STATUS_TEST_HPP
#define BELOS_LSQR_STATUS_TEST_HPP
/*!
\file BelosLSQRStatusTest.hpp
\brief Belos::StatusTest class defining LSQR convergence
*/
#include "BelosStatusTest.hpp"
#include "BelosLSQRIter.hpp"
/*! \class LSQRStatusTest:
\brief A Belos::StatusTest class for specifying convergence of LSQR. The outer status tests passes if an inner
status passes a user specified number of times consecutively. The inner status test depends on information
specific to LSQR iteration.
*/
namespace Belos {
template <class ScalarType, class MV, class OP>
class LSQRStatusTest: public Belos::StatusTest<ScalarType,MV,OP> {
public:
// Convenience typedefs
typedef Teuchos::ScalarTraits<ScalarType> SCT;
typedef typename SCT::magnitudeType MagnitudeType;
typedef Belos::MultiVecTraits<ScalarType,MV> MVT;
//! @name Constructor/Destructor.
//@{
//! Constructor
/*! The constructor has four optional arguments, specifying the maximum observed condition number of Abar,
the number of successive convergent iterations, an estimate of the relative error in the data defining the right-hand
side (b), and an estimate of the relative error in the data defining the coefficinet matrix (A). The default
termIterMax is 1, and the other three parameters default to 0. The defaults specified in LSQRSolMgr are more realistic.
*/
LSQRStatusTest( MagnitudeType condMax = 0.0,
int term_iter_max = 1,
MagnitudeType rel_rhs_err = 0.0,
MagnitudeType rel_mat_err = 0.0 );
//! Destructor
virtual ~LSQRStatusTest();
//@}
//! @name Status method
//@{
//! Check convergence status of the iterative solver: Unconverged, Converged, Failed.
/*! This method checks if the convergence criteria are met using the current information from the iterative solver.
*/
Belos::StatusType checkStatus(Belos::Iteration<ScalarType,MV,OP> *iSolver );
//! Return the result of the most recent CheckStatus call.
Belos::StatusType getStatus() const {return(status_);}
//@}
//! @name Reset methods
//@{
//! Resets the status test to the initial internal state.
void reset();
//! Set the tolerances
int setCondLim(MagnitudeType condMax) {
condMax_ = condMax;
rcondMin_ = (condMax > 0) ? (Teuchos::ScalarTraits< MagnitudeType >::one() / condMax) : Teuchos::ScalarTraits< MagnitudeType >::eps();
return(0);}
int setTermIterMax(int term_iter_max) {
term_iter_max_ = term_iter_max;
if (term_iter_max_ < 1)
term_iter_max_ = 1;
return(0);}
int setRelRhsErr(MagnitudeType rel_rhs_err) {
rel_rhs_err_ = rel_rhs_err;
return(0);}
int setRelMatErr(MagnitudeType rel_mat_err) {
rel_mat_err_ = rel_mat_err;
return(0);}
//@}
//! @name Accessor methods
//@{
//! Returns the value of the upper limit of the condition number of Abar set in the constructor.
MagnitudeType getCondMaxLim() const {return(condMax_);}
//! Returns the number of successful convergent iterations required set in the constructor.
int getTermIterMax() const {return(term_iter_max_);}
//! Returns the value of the estimate of the relative error in the data defining b set in the constructor.
MagnitudeType getRelRhsErr() const {return(rel_rhs_err_);}
//! Returns the value of the estimate of the relative error in the data defining A set in the constructor.
MagnitudeType getMatErr() const {return(rel_mat_err_);}
//! Returns the value of the observed condition number of Abar
MagnitudeType getMatCondNum() const {return(matCondNum_);}
//! Returns the value of the observed (Frobenius) norm of A
MagnitudeType getMatNorm() const {return(matNorm_);}
//! !Returns the current number of successful iterations from the most recent StatusTest call.
int getTermIter() const { return term_iter_; }
//! Returns the value of the observed norm of the residual r = b-Ax
MagnitudeType getResidNorm() const {return(resNorm_);}
//! Returns the value of the observed norm of the Least Squares residual A^T r
MagnitudeType getLSResidNorm() const {return(matResNorm_);}
//@}
//! @name Print methods
//@{
//! Output formatted description of stopping test to output stream.
void print(std::ostream& os, int indent = 0) const;
//! Print message for each status specific to this stopping test.
void printStatus(std::ostream& os, Belos::StatusType type) const;
//@}
/** @name Misc. */
//@{
/// \brief Called in checkStatus exactly once, on the first call to checkStatus.
///
Belos::StatusType firstCallCheckStatusSetup(Belos::Iteration<ScalarType,MV,OP>* iSolver);
//@}
/** \name Overridden from Teuchos::Describable */
//@{
/** \brief Method to return description of the maximum iteration status test */
std::string description() const
{
std::ostringstream oss;
oss << "LSQRStatusTest<>: [ limit of condition number = " << condMax_ << " ]";
return oss.str();
}
//@}
private:
//! @name Private data members.
//@{
//! Upper limit of condition number of Abar
MagnitudeType condMax_;
//! How many iterations in a row a passing test for convergence is required.
int term_iter_max_;
//! Error in data defining b
MagnitudeType rel_rhs_err_;
//! Error in data defining A
MagnitudeType rel_mat_err_;
//! One of the tolerances defining convergence, the reciprocal of condMax_ or, if that is zero, machine epsilon
MagnitudeType rcondMin_;
//! Status
Belos::StatusType status_;
// term_iter_ records the number of consecutive "successful" iterations.
// convergence requires that term_iter_max consecutive iterates satisfy the other convergence tests
int term_iter_;
// condition number of the operator
MagnitudeType matCondNum_;
// Frobenius norm of the operator
MagnitudeType matNorm_;
// residual norm for the linear system
MagnitudeType resNorm_;
// least squares residual, operator^Transpose * residual
MagnitudeType matResNorm_;
//@}
};
template <class ScalarType, class MV, class OP>
LSQRStatusTest<ScalarType,MV,OP>::
LSQRStatusTest (MagnitudeType condMax /* = 0 */,
int term_iter_max /* = 1 */,
MagnitudeType rel_rhs_err /* = 0 */,
MagnitudeType rel_mat_err /* = 0 */)
: condMax_(condMax),
term_iter_max_ (term_iter_max),
rel_rhs_err_ (rel_rhs_err),
rel_mat_err_ (rel_mat_err),
rcondMin_ ( Teuchos::ScalarTraits<MagnitudeType>::zero() ),
status_ (Belos::Undefined),
term_iter_ (0),
matCondNum_ ( Teuchos::ScalarTraits<MagnitudeType>::one() ),
matNorm_ ( Teuchos::ScalarTraits<MagnitudeType>::zero() ),
resNorm_ ( Teuchos::ScalarTraits<MagnitudeType>::zero() ),
matResNorm_ ( Teuchos::ScalarTraits<MagnitudeType>::zero() )
{}
template <class ScalarType, class MV, class OP>
LSQRStatusTest<ScalarType,MV,OP>::~LSQRStatusTest()
{}
template <class ScalarType, class MV, class OP>
void LSQRStatusTest<ScalarType,MV,OP>::reset()
{
status_ = Belos::Undefined;
}
template <class ScalarType, class MV, class OP>
Belos::StatusType LSQRStatusTest<ScalarType,MV,OP>::checkStatus( Belos::Iteration<ScalarType,MV,OP>* iSolver)
{
const MagnitudeType MTzero = Teuchos::ScalarTraits<MagnitudeType>::zero();
const MagnitudeType MTone = Teuchos::ScalarTraits<MagnitudeType>::one();
if (condMax_ > MTzero )
{
rcondMin_ = MTone / condMax_;
}
else
{
rcondMin_ = Teuchos::ScalarTraits< MagnitudeType >::eps();
}
bool termIterFlag = false;
LSQRIter<ScalarType,MV,OP>* solver = dynamic_cast< LSQRIter<ScalarType,MV,OP>* > (iSolver);
TEUCHOS_ASSERT(solver != NULL);
LSQRIterationState< ScalarType, MV > state = solver->getState();
//
// LSQR solves a least squares problem. A converged preconditioned residual norm
// suffices for convergence, but is not necessary. LSQR sometimes returns a larger
// relative residual norm than what would have been returned by a linear solver.
// This section evaluates three stopping criteria. In the Solver Manager, this test
// is combined with a generic number of iteration test.
// If the linear system includes a preconditioner, then the least squares problem
// is solved for the preconditioned linear system. Preconditioning changes the least
// squares problem (in the sense of changing the norms), and the solution depends
// on the preconditioner in this sense.
// In the context of Linear Least Squares problems, preconditioning refers
// to the regularization matrix. Here the regularization matrix is always a scalar
// multiple of the identity (standard form least squres).
// The "loss of accuracy" concept is not yet implemented here, becuase it is unclear
// what this means for linear least squares. LSQR solves an inconsistent system
// in a least-squares sense. "Loss of accuracy" would correspond to
// the difference between the preconditioned residual and the unpreconditioned residual.
//
std::cout << " X " << state.sol_norm
<< " b-AX " << state.resid_norm
<< " Atr " << state.mat_resid_norm
<< " A " << state.frob_mat_norm
<< " cond " << state.mat_cond_num
<< " relResNorm " << state.resid_norm/state.bnorm
<< " LS " << state.mat_resid_norm /( state.resid_norm * state.frob_mat_norm )
<< std::endl;
const MagnitudeType zero = Teuchos::ScalarTraits<MagnitudeType>::zero();
const ScalarType one = Teuchos::ScalarTraits<ScalarType>::one();
ScalarType stop_crit_1 = zero; // b = 0, done
if( state.bnorm > zero )
{
stop_crit_1 = state.resid_norm / state.bnorm;
}
ScalarType stop_crit_2 = zero;
if( state.frob_mat_norm > zero && state.resid_norm > zero )
{
stop_crit_2 = (state.resid_norm > zero) ? state.mat_resid_norm / (state.frob_mat_norm * state.resid_norm) : zero;
}
else
{
if( state.resid_norm == zero )
{
stop_crit_2 = zero;
}
else
{
stop_crit_2 = one; // Initial mat_norm always vanishes
}
}
ScalarType stop_crit_3 = one / state.mat_cond_num;
ScalarType resid_tol = rel_rhs_err_ + rel_mat_err_ * state.frob_mat_norm * state.sol_norm / state.bnorm;
ScalarType resid_tol_mach = Teuchos::ScalarTraits< MagnitudeType >::eps() + Teuchos::ScalarTraits< MagnitudeType >::eps() * state.frob_mat_norm * state.sol_norm / state.bnorm;
// The expected use case for our users is that the linear system will almost
// always be compatible, but occasionally may not be. However, some users
// may use LSQR for more general cases. This is why we include the full
// suite of tests, for both compatible and incompatible systems.
//
// Users will have to be educated that sometimes they will get an answer X
// that does _not_ satisfy the linear system AX=B, but _does_ satisfy the
// corresponding least-squares problem. Perhaps the solution manager should
// provide them with a way to find out.
// stop_crit_1 is for compatible linear systems.
// stop_crit_2 is for incompatible linear systems.
// stop_crit_3 is for either compatible or incompatible linear systems.
// Have we met any of the stopping criteria?
if (stop_crit_1 <= resid_tol || stop_crit_2 <= rel_mat_err_ || stop_crit_3 <= rcondMin_ || stop_crit_1 <= resid_tol_mach || stop_crit_2 <= Teuchos::ScalarTraits< MagnitudeType >::eps() || stop_crit_3 <= Teuchos::ScalarTraits< MagnitudeType >::eps()) {
termIterFlag = true;
if (stop_crit_1 <= resid_tol )
std::cout << "Conv: stop_crit_1 " << stop_crit_1 << " resid_tol " << resid_tol << std::endl;
if (stop_crit_1 <= resid_tol_mach )
std::cout << "Conv: stop_crit_1 " << stop_crit_1 << " resid_tol_mach " << resid_tol_mach << std::endl;
if (stop_crit_2 <= rel_mat_err_ )
std::cout << "Conv: stop_crit_2 " << stop_crit_2 << " rel_mat_err " << rel_mat_err_ << std::endl;
if (stop_crit_2 <= Teuchos::ScalarTraits< MagnitudeType >::eps() )
std::cout << "Conv: stop_crit_2 " << stop_crit_2 << " eps " << Teuchos::ScalarTraits< MagnitudeType >::eps() << std::endl;
if (stop_crit_3 <= rcondMin_ )
std::cout << "Conv: stop_crit_3 " << stop_crit_3 << " rcondMin_ " << rcondMin_ << std::endl;
if (stop_crit_3 <= Teuchos::ScalarTraits< MagnitudeType >::eps() )
std::cout << "Conv: stop_crit_3 " << stop_crit_3 << " eps " << Teuchos::ScalarTraits< MagnitudeType >::eps() << std::endl;
}
// update number of consecutive successful iterations
if (!termIterFlag) {
term_iter_ = 0;
} else {
term_iter_++;
}
status_ = (term_iter_ < term_iter_max_) ? Belos::Failed : Belos::Passed;
matCondNum_ = state.mat_cond_num; // information that defined convergence
matNorm_ = state.frob_mat_norm; // in accessible variables
resNorm_ = state.resid_norm;
matResNorm_ = state.mat_resid_norm;
return status_;
}
template <class ScalarType, class MV, class OP>
void LSQRStatusTest<ScalarType,MV,OP>::print(std::ostream& os, int indent) const
{
for (int j = 0; j < indent; j++)
os << ' ';
printStatus(os, status_);
os << "limit of condition number = " << condMax_ << std::endl;
os << "limit of condition number = " << condMax_ << std::endl;
}
template <class ScalarType, class MV, class OP>
void LSQRStatusTest<ScalarType,MV,OP>::printStatus(std::ostream&os, Belos::StatusType type) const
{
os << std::left << std::setw(13) << std::setfill('.');
switch (type) {
case Belos::Passed:
os << "Passed";
break;
case Belos::Failed:
os << "Failed";
break;
case Belos::Undefined:
default:
os << "Undefined";
break;
}
os << std::left << std::setfill(' ');
return;
}
} // end Belos namespace
#endif /* BELOS_LSQR_STATUS_TEST_HPP */
|