/usr/include/trilinos/AztecOO_StatusTestResNorm.h is in libtrilinos-aztecoo-dev 12.12.1-5.
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 | /*
//@HEADER
// ***********************************************************************
//
// AztecOO: An Object-Oriented Aztec Linear Solver Package
// Copyright (2002) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// 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 AZTECOO_STATUSTESTRESNORM_H
#define AZTECOO_STATUSTESTRESNORM_H
#include "AztecOO_StatusTest.h"
#include <vector>
class Epetra_MultiVector;
class Epetra_Vector;
class Epetra_Operator;
//! AztecOO_StatusTestResNorm: An implementation of AztecOO_StatusTest using a family of residual norms.
/*! AztecOO_StatusTestResNorm is an implementation of AztecOO_StatusTest that allows a user to construct
one of a family of residual tests for use as a status/convergence test for AztecOO. The form of the
test is
\f[
\frac{\|r\|}{\sigma} \le \tau
\f]
where
<ul>
<li> \f$r\f$ is the residual vector, implicitly or explicitly computed (determined by enum ResType),
<li> \f$\|r\|\f$ is the residual norm determined by the enum NormType (1-norm, 2-norm or inf-norm),
<li> \f$\sigma\f$ is the scale factor that can be passed in as a precomputed double precision number,
or can be selected from by the enum ScaleType (norm of RHS, norm of initial residual).
<li> \f$\tau\f$ is the tolerance that is passed in as a double precision number to the constructor.
The value of \f$\tau\f$ can be reset using the ResetTolerance() method.
</ul>
\warning Presently it is not valid to associate one status test instance with two different AztecOO objects.
*/
class AztecOO_StatusTestResNorm: public AztecOO_StatusTest {
public:
//@{ \name Enums.
/*!
\brief Select how the residual vector is produced.
*/
enum ResType {Implicit, /*!< Use the residual vector produced by the iterative solver. */
Explicit /*!< Explicitly compute the residual vector r = b - A*x using the linear problem.
NOTE: If if the ResType is set to Explicit, if the SolutionUpdated argument
to CheckStatus() is false, we will not be able to compute an explicit result and we
will proceed with the residual implicitly defined. */
};
/*!
\brief Select the norm type, where \f$ x\f$ is the norm argument and \f$ w \f$ is an optionally defined
weighting vector.
*/
enum NormType {OneNorm, /*!< Use the one-norm \f$\sum_{i=1}^{n}(|x_i w_i|)\f$. */
TwoNorm, /*!< Use the two-norm \f$\sqrt(\sum_{i=1}^{n}((x_i w_i)^2)\f$. */
InfNorm /*!< Use the inf-norm \f$(\max_{i=1}^{n}\{|x_i w_i|\})\f$. */
};
/*!
\brief Select the scale type.
*/
enum ScaleType {NormOfRHS, /*!< Use the norm of the right-hand-side. */
NormOfInitRes, /*!< Use the initial residual vector (exlicitly computed). */
None, /*!< Use unscaled residual. */
UserProvided /*!< User provides an explicit value that the norm of the residual will be divided by. */
};
//@}
//@{ \name Constructors/destructors.
//! Constructor
/*! The constructor takes a single argument specifying the tolerance (\f$\tau\f$).
If none of the form definition methods are called, we use \f$\|r\|_2/\|r^{(0)}\|_2 \le \tau\f$ as the
stopping criterion, where \f$\|r\|_2\f$ uses the least costly form of the 2-norm of
residual available from the iterative method and \f$\|r^{(0)}\|_2\f$ is the corresponding norm of the
initial residual. The least costly form of the 2-norm depends on the chosen iterative method. Most Krylov
methods produce the preconditioned residual vector in a form that would be exact in infinite precision arithmetic.
This vector may be different from the true residual either because left scaling or preconditioning was used, or
because round-off error has introduced significant error, or both.
\param Operator (In) The original linear operator that was passed in to the AztecOO solver object.
\param LHS (In) The original left hand side vector that was passed in to the AztecOO solver object. NOTE: AztecOO accepts
multivector objects, but AztecOO_StatusTestResNorm does not handle residual tests for multiple vectors. Most AztecOO users
tend to have Epetra_Vectors, even though they are passing them in as Epetra_MultiVectors, so this should not be an issue. If
you are truly using Epetra_MultiVector objects, remember that for a multivector object mv, the ith vector can be extracted as
mv(i).
\param RHS (In) The original right hand side vector that was passed in to the AztecOO solver object. See note for LHS.
\param Tolerance (In) A double value that is used to test the convergence criterion. Can be reset using ResetTolerance().
*/
AztecOO_StatusTestResNorm(const Epetra_Operator & Operator,
const Epetra_Vector & LHS, const Epetra_Vector & RHS,double Tolerance);
//! Destructor
virtual ~AztecOO_StatusTestResNorm();
//@}
//@{ \name Form and parameter definition methods.
//! Define form of the residual, its norm and optional weighting vector.
/*! This method defines the form of \f$\|r\|\f$. We specify:
<ul>
<li> Whether the residual vector should be explicitly computed, or taken from the iterative method.
<li> The norm to be used on the residual (this may be different than the norm used in DefineScaleForm()).
<li> A weighting vector that will be multiplied, element by element, with the residual vector prior to
computing the norm. This argument defaults to a zero vector and no weighting will be done.
</ul>
*/
int DefineResForm( ResType TypeOfResidual, NormType TypeOfNorm, Epetra_Vector * Weights = 0);
//! Define form of the scaling, its norm, its optional weighting vector, or, alternatively, define an explicit value.
/*! This method defines the form of how the residual is scaled (if at all). It operates in two modes:
<ol>
<li> User-provided scaling value:
<ul>
<li> Set argument TypeOfScaling to UserProvided.
<li> Set ScaleValue to a non-zero value that the residual norm will be divided by.
<li> TypeOfNorm and Weights arguments will be ignored.
<li> Sample use: Define ScaleValue = \f$\|A\|_{\infty}\f$ where \f$ A \f$ is the matrix of the linear problem.
</ul>
<li> Use a supported Scaling Form:
<ul>
<li> Define TypeOfScaling to be the norm of the right hand side, the initial residual vector, or to none.
<li> Define norm to be used on the scaling vector (this may be different than the norm used in DefineResForm()).
<li> Define a weighting vector that will be multiplied, element by element, with the residual vector prior to
computing the norm. This argument defaults to a zero vector and no weighting will be done.
</ul>
</ol>
*/
int DefineScaleForm( ScaleType TypeOfScaling, NormType TypeOfNorm, Epetra_Vector * Weights = 0,
double ScaleValue = 1.0);
//! Reset the value of the tolerance
/*! We allow the tolerance to be reset for cases where, in the process of testing the residual, we find that
the initial tolerance was too tight or too lax.
*/
int ResetTolerance(double Tolerance) {tolerance_ = Tolerance; return(0);};
//! Set the maximum number of extra iterations that will be performed in case the implicit residual succeeds that the true residual fails (default is 0).
/*! In some instance,especially with GMRES, the implicitly computed residual is an optimistic estimate of the true residual. In these cases,
especially when the tolerance is set very small, the iterative solver can never satisfy the tolerance with the explicit residual, so
we allow the user to limit the number of extra iterations that will be performed. If the implicit residual is satisfied, then the value
set here will determine exactly how many extra iterations will be allowed to try and converge the explicit residual. This value has no impact
status tests that are based on explicit residuals.
\param maxNumExtraIterations (In) Maximum number of extra iterations that will be performed in case the implicit residual succeeds that the true residual fails.
*/
int SetMaxNumExtraIterations(int maxNumExtraIterations) {maxNumExtraIterations_ = maxNumExtraIterations; return(0);};
/** Return the maximum number of extra iterations that are performed if
the implicit residual succeeds while the true residual fails.
*/
int GetMaxNumExtraIterations() {return(maxNumExtraIterations_);}
//@}
//@{ \name Methods that implement the AztecOO_StatusTest interface.
//! Indicates if residual vector is required by this convergence test.
/*! The value returned by this method will depend on several factors. Once an AztecOO_StatusTestResNorm object
is constructed and the DefineResForm and DefineScaleForm methods are optionally called, this method can tested.
For most Krylov solvers, there is no extra cost to providing the residual vector. However, GMRES and Transpose-free
QMR will need to explicitly compute this vector if ResidualVectorRequired() returns true, so this is an extra cost for
these two iterative methods.
*/
bool ResidualVectorRequired() const;
//! Check convergence status: Unconverged, Converged, Failed.
/*! This method checks to see if the convergence criteria are met. Depending on how the residual test
is constructed this method will return the appropriate status type.
\param CurrentIter (In) Current iteration of iterative method.
\param CurrentResVector (In) The current residuals of the iterative process.
\param CurrentResNormEst (In) Estimate of the two-norm of the residual. The value will be
set to -1.0 if no estimate is available.
\param SolutionUpdated (In) If this argument is true, then the solution vector that is part
of the Epetra_LinearProblem
object being solved is consistent with the residual.
\return AztecOO_StatusType: Unconverged, Converged or Failed.
*/
AztecOO_StatusType CheckStatus(int CurrentIter, Epetra_MultiVector * CurrentResVector,
double CurrentResNormEst,
bool SolutionUpdated);
AztecOO_StatusType GetStatus() const {return(status_);};
std::ostream& Print(std::ostream& stream, int indent = 0) const;
//@}
//@{ \name Method to reset status so that this status test object can be used with another AztecOO instance.
//! Reset state of status test object.
void ResetStatus() {convergedOnce_ = false; status_ = Unchecked;};
//@}
//@{ \name Methods to access data members.
//! Returns the value of the tolerance, \f$ \tau \f$, set in the constructor.
double GetTolerance() const {return(tolerance_);};
//! Returns the test value, \f$ \frac{\|r\|}{\sigma} \f$, computed in most recent call to CheckStatus.
double GetTestValue() const {return(testvalue_);};
//! Returns the residual norm value, \f$ \|r\| \f$, computed in most recent call to CheckStatus.
double GetResNormValue() const {return(resvalue_);};
//! Returns the scaled norm value, \f$ \sigma \f$.
double GetScaledNormValue() const {return(scalevalue_);};
//@}
protected:
//@{ \name Internal Methods.
double ComputeNorm(const Epetra_Vector & vec, NormType typeofnorm);
//@}
private:
//@{ \name Private data members.
//! User's linear operator
const Epetra_Operator & operator_;
//! User's initial guess and solution vector
const Epetra_Vector & lhs_;
//! User's right hand side vector
const Epetra_Vector & rhs_;
//! Tolerance used to determine convergence
double tolerance_;
//! Maximum number of extra iterations to be performed in case the implicit residual succeeds but the implicit one fails.
int maxNumExtraIterations_;
//! Number of extra iterations already performed in case the implicit residual succeeds but the implicit one fails.
int numExtraIterations_;
//! Type of residual to use (explicit or implicit)
ResType restype_;
//! Type of norm to use on residual (one, two or infinity)
NormType resnormtype_;
//! Type of scaling to use (Norm of RHS, Norm of Initial Residual, None or User provided)
ScaleType scaletype_;
//! Type of norm to use on scaling vector (one, two or infinity)
NormType scalenormtype_;
//! Vector of weights that will be applied the residual vector
Epetra_Vector * resweights_;
//! Vector of weights that will be applied the scale vector
Epetra_Vector * scaleweights_;
//! Scale value.
double scalevalue_;
//! Residual norm value.
double resvalue_;
//! Test value = resvalue_ / scalevalue_
double testvalue_;
//! See if we have converged once before (used for implicit convergence)
bool convergedOnce_;
//! Status
AztecOO_StatusType status_;
//! Is residual vector required?
bool resvecrequired_;
//! Is this the first time CheckStatus is called?
bool firstcallCheckStatus_;
//! Is this the first time DefineResForm is called?
bool firstcallDefineResForm_;
//! Is this the first time DefineScaleForm is called?
bool firstcallDefineScaleForm_;
Epetra_Vector * localresvector_;
//! Is this the current residual vector explicitly computed?
bool curresvecexplicit_;
//@}
};
#endif /* AZTECOO_STATUSTESTRESNORM_H */
|