SymGEigsSolver.h
Go to the documentation of this file.
1 // Copyright (C) 2016-2025 Yixuan Qiu <yixuan.qiu@cos.name>
2 //
3 // This Source Code Form is subject to the terms of the Mozilla
4 // Public License v. 2.0. If a copy of the MPL was not distributed
5 // with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
6 
7 #ifndef SPECTRA_SYM_GEIGS_SOLVER_H
8 #define SPECTRA_SYM_GEIGS_SOLVER_H
9 
10 #include "HermEigsBase.h"
11 #include "Util/GEigsMode.h"
14 
15 namespace Spectra {
16 
22 
42 
43 // Empty class template
44 template <typename OpType, typename BOpType, GEigsMode Mode>
46 {};
47 
146 
147 // Partial specialization for mode = GEigsMode::Cholesky
148 template <typename OpType, typename BOpType>
149 class SymGEigsSolver<OpType, BOpType, GEigsMode::Cholesky> :
150  public HermEigsBase<SymGEigsCholeskyOp<OpType, BOpType>, IdentityBOp>
151 {
152 private:
153  using Scalar = typename OpType::Scalar;
157 
160 
161  const BOpType& m_Bop;
162 
163 public:
188  SymGEigsSolver(OpType& op, BOpType& Bop, Index nev, Index ncv) :
189  Base(ModeMatOp(op, Bop), IdentityBOp(), nev, ncv),
190  m_Bop(Bop)
191  {}
192 
194 
195  Matrix eigenvectors(Index nvec) const override
196  {
197  Matrix res = Base::eigenvectors(nvec);
198  Vector tmp(res.rows());
199  const Index nconv = res.cols();
200  for (Index i = 0; i < nconv; i++)
201  {
202  m_Bop.upper_triangular_solve(&res(0, i), tmp.data());
203  res.col(i).noalias() = tmp;
204  }
205 
206  return res;
207  }
208 
209  Matrix eigenvectors() const override
210  {
212  }
213 
215 };
216 
248 
249 // Partial specialization for mode = GEigsMode::RegularInverse
250 template <typename OpType, typename BOpType>
251 class SymGEigsSolver<OpType, BOpType, GEigsMode::RegularInverse> :
252  public HermEigsBase<SymGEigsRegInvOp<OpType, BOpType>, BOpType>
253 {
254 private:
256 
259 
260 public:
283  SymGEigsSolver(OpType& op, BOpType& Bop, Index nev, Index ncv) :
284  Base(ModeMatOp(op, Bop), Bop, nev, ncv)
285  {}
286 };
287 
288 } // namespace Spectra
289 
290 #endif // SPECTRA_SYM_GEIGS_SOLVER_H
Spectra::GEigsMode::RegularInverse
@ RegularInverse
Regular inverse mode for generalized eigenvalue solver.
Spectra::SymGEigsSolver< OpType, BOpType, GEigsMode::RegularInverse >::Index
Eigen::Index Index
Definition: SymGEigsSolver.h:255
Spectra::SymGEigsSolver< OpType, BOpType, GEigsMode::Cholesky >::m_Bop
const BOpType & m_Bop
Definition: SymGEigsSolver.h:161
Spectra::SymGEigsSolver< OpType, BOpType, GEigsMode::Cholesky >::Scalar
typename OpType::Scalar Scalar
Definition: SymGEigsSolver.h:153
Spectra::SymGEigsSolver< OpType, BOpType, GEigsMode::Cholesky >::SymGEigsSolver
SymGEigsSolver(OpType &op, BOpType &Bop, Index nev, Index ncv)
Definition: SymGEigsSolver.h:188
res
cout<< "Here is the matrix m:"<< endl<< m<< endl;Matrix< ptrdiff_t, 3, 1 > res
Definition: PartialRedux_count.cpp:3
Spectra::SymGEigsSolver< OpType, BOpType, GEigsMode::Cholesky >::Index
Eigen::Index Index
Definition: SymGEigsSolver.h:154
Spectra::SymGEigsSolver
Definition: SymGEigsSolver.h:45
GEigsMode.h
HermEigsBase.h
Spectra::IdentityBOp
Definition: ArnoldiOp.h:102
ceres::Matrix
Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > Matrix
Definition: gtsam/3rdparty/ceres/eigen.h:42
Spectra::SymGEigsSolver< OpType, BOpType, GEigsMode::RegularInverse >::SymGEigsSolver
SymGEigsSolver(OpType &op, BOpType &Bop, Index nev, Index ncv)
Definition: SymGEigsSolver.h:283
SymGEigsRegInvOp.h
Spectra::SymGEigsCholeskyOp
Definition: SymGEigsCholeskyOp.h:27
Spectra::GEigsMode::Cholesky
@ Cholesky
Using Cholesky decomposition to solve generalized eigenvalues.
Spectra::SymGEigsRegInvOp
Definition: SymGEigsRegInvOp.h:25
Spectra
Definition: LOBPCGSolver.h:19
Spectra::GEigsMode
GEigsMode
Definition: GEigsMode.h:17
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic >
Spectra::HermEigsBase< SymGEigsCholeskyOp< OpType, BOpType >, IdentityBOp >::eigenvectors
virtual Matrix eigenvectors() const
Definition: HermEigsBase.h:469
Spectra::HermEigsBase
Definition: HermEigsBase.h:44
ceres::Vector
Eigen::Matrix< double, Eigen::Dynamic, 1 > Vector
Definition: gtsam/3rdparty/ceres/eigen.h:38
SymGEigsCholeskyOp.h
i
int i
Definition: BiCGSTAB_step_by_step.cpp:9
Scalar
SCALAR Scalar
Definition: bench_gemm.cpp:46
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:74


gtsam
Author(s):
autogenerated on Fri Apr 4 2025 03:04:27