MINRES.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2012 Giacomo Po <gpo@ucla.edu>
5 // Copyright (C) 2011-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
6 //
7 // This Source Code Form is subject to the terms of the Mozilla
8 // Public License v. 2.0. If a copy of the MPL was not distributed
9 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 
11 
12 #ifndef EIGEN_MINRES_H_
13 #define EIGEN_MINRES_H_
14 
15 
16 namespace Eigen {
17 
18  namespace internal {
19 
29  template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
31  void minres(const MatrixType& mat, const Rhs& rhs, Dest& x,
32  const Preconditioner& precond, Index& iters,
33  typename Dest::RealScalar& tol_error)
34  {
35  using std::sqrt;
36  typedef typename Dest::RealScalar RealScalar;
37  typedef typename Dest::Scalar Scalar;
38  typedef Matrix<Scalar,Dynamic,1> VectorType;
39 
40  // Check for zero rhs
41  const RealScalar rhsNorm2(rhs.squaredNorm());
42  if(rhsNorm2 == 0)
43  {
44  x.setZero();
45  iters = 0;
46  tol_error = 0;
47  return;
48  }
49 
50  // initialize
51  const Index maxIters(iters); // initialize maxIters to iters
52  const Index N(mat.cols()); // the size of the matrix
53  const RealScalar threshold2(tol_error*tol_error*rhsNorm2); // convergence threshold (compared to residualNorm2)
54 
55  // Initialize preconditioned Lanczos
56  VectorType v_old(N); // will be initialized inside loop
57  VectorType v( VectorType::Zero(N) ); //initialize v
58  VectorType v_new(rhs-mat*x); //initialize v_new
59  RealScalar residualNorm2(v_new.squaredNorm());
60  VectorType w(N); // will be initialized inside loop
61  VectorType w_new(precond.solve(v_new)); // initialize w_new
62 // RealScalar beta; // will be initialized inside loop
63  RealScalar beta_new2(v_new.dot(w_new));
64  eigen_assert(beta_new2 >= 0.0 && "PRECONDITIONER IS NOT POSITIVE DEFINITE");
65  RealScalar beta_new(sqrt(beta_new2));
66  const RealScalar beta_one(beta_new);
67  v_new /= beta_new;
68  w_new /= beta_new;
69  // Initialize other variables
70  RealScalar c(1.0); // the cosine of the Givens rotation
71  RealScalar c_old(1.0);
72  RealScalar s(0.0); // the sine of the Givens rotation
73  RealScalar s_old(0.0); // the sine of the Givens rotation
74  VectorType p_oold(N); // will be initialized in loop
75  VectorType p_old(VectorType::Zero(N)); // initialize p_old=0
76  VectorType p(p_old); // initialize p=0
77  RealScalar eta(1.0);
78 
79  iters = 0; // reset iters
80  while ( iters < maxIters )
81  {
82  // Preconditioned Lanczos
83  /* Note that there are 4 variants on the Lanczos algorithm. These are
84  * described in Paige, C. C. (1972). Computational variants of
85  * the Lanczos method for the eigenproblem. IMA Journal of Applied
86  * Mathematics, 10(3), 373–381. The current implementation corresponds
87  * to the case A(2,7) in the paper. It also corresponds to
88  * algorithm 6.14 in Y. Saad, Iterative Methods for Sparse Linear
89  * Systems, 2003 p.173. For the preconditioned version see
90  * A. Greenbaum, Iterative Methods for Solving Linear Systems, SIAM (1987).
91  */
92  const RealScalar beta(beta_new);
93  v_old = v; // update: at first time step, this makes v_old = 0 so value of beta doesn't matter
94 // const VectorType v_old(v); // NOT SURE IF CREATING v_old EVERY ITERATION IS EFFICIENT
95  v = v_new; // update
96  w = w_new; // update
97 // const VectorType w(w_new); // NOT SURE IF CREATING w EVERY ITERATION IS EFFICIENT
98  v_new.noalias() = mat*w - beta*v_old; // compute v_new
99  const RealScalar alpha = v_new.dot(w);
100  v_new -= alpha*v; // overwrite v_new
101  w_new = precond.solve(v_new); // overwrite w_new
102  beta_new2 = v_new.dot(w_new); // compute beta_new
103  eigen_assert(beta_new2 >= 0.0 && "PRECONDITIONER IS NOT POSITIVE DEFINITE");
104  beta_new = sqrt(beta_new2); // compute beta_new
105  v_new /= beta_new; // overwrite v_new for next iteration
106  w_new /= beta_new; // overwrite w_new for next iteration
107 
108  // Givens rotation
109  const RealScalar r2 =s*alpha+c*c_old*beta; // s, s_old, c and c_old are still from previous iteration
110  const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration
111  const RealScalar r1_hat=c*alpha-c_old*s*beta;
112  const RealScalar r1 =sqrt( std::pow(r1_hat,2) + std::pow(beta_new,2) );
113  c_old = c; // store for next iteration
114  s_old = s; // store for next iteration
115  c=r1_hat/r1; // new cosine
116  s=beta_new/r1; // new sine
117 
118  // Update solution
119  p_oold = p_old;
120 // const VectorType p_oold(p_old); // NOT SURE IF CREATING p_oold EVERY ITERATION IS EFFICIENT
121  p_old = p;
122  p.noalias()=(w-r2*p_old-r3*p_oold) /r1; // IS NOALIAS REQUIRED?
123  x += beta_one*c*eta*p;
124 
125  /* Update the squared residual. Note that this is the estimated residual.
126  The real residual |Ax-b|^2 may be slightly larger */
127  residualNorm2 *= s*s;
128 
129  if ( residualNorm2 < threshold2)
130  {
131  break;
132  }
133 
134  eta=-s*eta; // update eta
135  iters++; // increment iteration number (for output purposes)
136  }
137 
138  /* Compute error. Note that this is the estimated error. The real
139  error |Ax-b|/|b| may be slightly larger */
140  tol_error = std::sqrt(residualNorm2 / rhsNorm2);
141  }
142 
143  }
144 
145  template< typename _MatrixType, int _UpLo=Lower,
146  typename _Preconditioner = IdentityPreconditioner>
147  class MINRES;
148 
149  namespace internal {
150 
151  template< typename _MatrixType, int _UpLo, typename _Preconditioner>
152  struct traits<MINRES<_MatrixType,_UpLo,_Preconditioner> >
153  {
154  typedef _MatrixType MatrixType;
155  typedef _Preconditioner Preconditioner;
156  };
157 
158  }
159 
198  template< typename _MatrixType, int _UpLo, typename _Preconditioner>
199  class MINRES : public IterativeSolverBase<MINRES<_MatrixType,_UpLo,_Preconditioner> >
200  {
201 
203  using Base::matrix;
204  using Base::m_error;
205  using Base::m_iterations;
206  using Base::m_info;
207  using Base::m_isInitialized;
208  public:
209  using Base::_solve_impl;
210  typedef _MatrixType MatrixType;
211  typedef typename MatrixType::Scalar Scalar;
213  typedef _Preconditioner Preconditioner;
214 
215  enum {UpLo = _UpLo};
216 
217  public:
218 
220  MINRES() : Base() {}
221 
232  template<typename MatrixDerived>
233  explicit MINRES(const EigenBase<MatrixDerived>& A) : Base(A.derived()) {}
234 
237 
239  template<typename Rhs,typename Dest>
240  void _solve_with_guess_impl(const Rhs& b, Dest& x) const
241  {
242  typedef typename Base::MatrixWrapper MatrixWrapper;
243  typedef typename Base::ActualMatrixType ActualMatrixType;
244  enum {
245  TransposeInput = (!MatrixWrapper::MatrixFree)
246  && (UpLo==(Lower|Upper))
247  && (!MatrixType::IsRowMajor)
249  };
250  typedef typename internal::conditional<TransposeInput,Transpose<const ActualMatrixType>, ActualMatrixType const&>::type RowMajorWrapper;
251  EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJUGATE_GRADIENT_IS_COMPATIBLE_WITH_UPPER_UNION_LOWER_MODE_ONLY);
252  typedef typename internal::conditional<UpLo==(Lower|Upper),
253  RowMajorWrapper,
254  typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
255  >::type SelfAdjointWrapper;
256 
259  RowMajorWrapper row_mat(matrix());
260  for(int j=0; j<b.cols(); ++j)
261  {
264 
265  typename Dest::ColXpr xj(x,j);
266  internal::minres(SelfAdjointWrapper(row_mat), b.col(j), xj,
268  }
269 
270  m_isInitialized = true;
272  }
273 
275  template<typename Rhs,typename Dest>
276  void _solve_impl(const Rhs& b, MatrixBase<Dest> &x) const
277  {
278  x.setZero();
279  _solve_with_guess_impl(b,x.derived());
280  }
281 
282  protected:
283 
284  };
285 
286 } // end namespace Eigen
287 
288 #endif // EIGEN_MINRES_H
289 
sqrt
const EIGEN_DEVICE_FUNC SqrtReturnType sqrt() const
Definition: ArrayCwiseUnaryOps.h:152
Eigen
Definition: common.h:73
Eigen::MINRES::MINRES
MINRES(const EigenBase< MatrixDerived > &A)
Definition: MINRES.h:233
b
Scalar * b
Definition: cholesky.cpp:56
MatrixType
Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > MatrixType
Definition: common.h:95
Eigen::internal::Rhs
@ Rhs
Definition: TensorContractionMapper.h:18
alpha
RealScalar alpha
Definition: level1_cplx_impl.h:125
s
RealScalar s
Definition: level1_cplx_impl.h:104
Eigen::half_impl::pow
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half pow(const half &a, const half &b)
Definition: Half.h:477
Eigen::internal::traits< MINRES< _MatrixType, _UpLo, _Preconditioner > >::MatrixType
_MatrixType MatrixType
Definition: MINRES.h:154
RealScalar
NumTraits< Scalar >::Real RealScalar
Definition: common.h:85
Eigen::EigenBase
Definition: EigenBase.h:29
eigen_assert
#define eigen_assert(x)
Definition: Macros.h:579
Eigen::MINRES::m_isInitialized
bool m_isInitialized
Definition: SparseSolverBase.h:119
Eigen::Upper
@ Upper
Definition: Constants.h:206
Eigen::Success
@ Success
Definition: Constants.h:432
Eigen::MINRES::_solve_with_guess_impl
void _solve_with_guess_impl(const Rhs &b, Dest &x) const
Definition: MINRES.h:240
Scalar
SCALAR Scalar
Definition: common.h:84
matrix
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
Definition: common.h:102
Eigen::MINRES::UpLo
@ UpLo
Definition: MINRES.h:215
N
static const int N
Definition: TensorIntDiv.h:84
Eigen::NoConvergence
@ NoConvergence
Definition: Constants.h:436
Eigen::MINRES::_solve_impl
void _solve_impl(const Rhs &b, MatrixBase< Dest > &x) const
Definition: MINRES.h:276
Eigen::MINRES
A minimal residual solver for sparse symmetric problems.
Definition: MINRES.h:147
Eigen::MINRES::Preconditioner
_Preconditioner Preconditioner
Definition: MINRES.h:213
Eigen::internal::traits< MINRES< _MatrixType, _UpLo, _Preconditioner > >::Preconditioner
_Preconditioner Preconditioner
Definition: MINRES.h:155
Eigen::Architecture::Type
Type
Definition: Constants.h:461
Eigen::IterativeSolverBase::maxIterations
Index maxIterations() const
Definition: IterativeSolverBase.h:281
x
Scalar * x
Definition: level1_cplx_impl.h:89
Eigen::IterativeSolverBase::m_info
ComputationInfo m_info
Definition: IterativeSolverBase.h:388
Eigen::Lower
@ Lower
Definition: Constants.h:204
ColXpr
Block< Derived, internal::traits< Derived >::RowsAtCompileTime, 1, !IsRowMajor > ColXpr
Definition: BlockMethods.h:14
Eigen::IterativeSolverBase
Base class for linear iterative solvers.
Definition: IterativeSolverBase.h:143
Eigen::MINRES::m_iterations
Index m_iterations
Definition: IterativeSolverBase.h:387
Eigen::IterativeSolverBase::m_tolerance
RealScalar m_tolerance
Definition: IterativeSolverBase.h:384
c
RealScalar c
Definition: level1_cplx_impl.h:103
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
EIGEN_STATIC_ASSERT
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
Definition: StaticAssert.h:124
Eigen::IterativeSolverBase::_solve_impl
void _solve_impl(const Rhs &b, SparseMatrixBase< DestDerived > &aDest) const
Definition: IterativeSolverBase.h:334
Eigen::MINRES::MINRES
MINRES()
Definition: MINRES.h:220
Eigen::MINRES::~MINRES
~MINRES()
Definition: MINRES.h:236
Eigen::MINRES::m_error
RealScalar m_error
Definition: IterativeSolverBase.h:386
Eigen::internal::conditional
Definition: Meta.h:58
Eigen::IterativeSolverBase::m_iterations
Index m_iterations
Definition: IterativeSolverBase.h:387
Eigen::IterativeSolverBase::matrix
const ActualMatrixType & matrix() const
Definition: IterativeSolverBase.h:369
Eigen::internal::minres
EIGEN_DONT_INLINE void minres(const MatrixType &mat, const Rhs &rhs, Dest &x, const Preconditioner &precond, Index &iters, typename Dest::RealScalar &tol_error)
Definition: MINRES.h:31
Eigen::Matrix< Scalar, Dynamic, 1 >
Eigen::MINRES::RealScalar
MatrixType::RealScalar RealScalar
Definition: MINRES.h:212
Eigen::MINRES::Base
IterativeSolverBase< MINRES > Base
Definition: MINRES.h:202
internal
Definition: BandTriangularSolver.h:13
Eigen::MatrixBase
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
EIGEN_IMPLIES
#define EIGEN_IMPLIES(a, b)
Definition: Macros.h:902
A
MatrixType A(a, *n, *n, *lda)
Eigen::MatrixWrapper
Expression of an array as a mathematical vector or matrix.
Definition: ArrayBase.h:15
Eigen::internal::generic_matrix_wrapper< MatrixType >
Eigen::IterativeSolverBase::ActualMatrixType
MatrixWrapper::ActualMatrixType ActualMatrixType
Definition: IterativeSolverBase.h:367
Eigen::IterativeSolverBase::m_preconditioner
Preconditioner m_preconditioner
Definition: IterativeSolverBase.h:381
Eigen::NumTraits
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition: NumTraits.h:150
Eigen::MINRES::Scalar
MatrixType::Scalar Scalar
Definition: MINRES.h:211
Eigen::MINRES::m_info
ComputationInfo m_info
Definition: IterativeSolverBase.h:388
Eigen::IterativeSolverBase::m_error
RealScalar m_error
Definition: IterativeSolverBase.h:386
mat
else mat
Definition: eigenvalues.cpp:43
Eigen::MINRES::MatrixType
_MatrixType MatrixType
Definition: MINRES.h:210
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
EIGEN_DONT_INLINE
#define EIGEN_DONT_INLINE
Definition: Macros.h:517
Eigen::SparseSolverBase::m_isInitialized
bool m_isInitialized
Definition: SparseSolverBase.h:119


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:58