111 lines
3.6 KiB
C++
111 lines
3.6 KiB
C++
// Copyright (C) 2016-2022 Yixuan Qiu <yixuan.qiu@cos.name>
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
// with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
#ifndef SPECTRA_DENSE_SYM_SHIFT_SOLVE_H
|
|
#define SPECTRA_DENSE_SYM_SHIFT_SOLVE_H
|
|
|
|
#include <Eigen/Core>
|
|
#include <stdexcept>
|
|
|
|
#include "../LinAlg/BKLDLT.h"
|
|
#include "../Util/CompInfo.h"
|
|
|
|
namespace Spectra {
|
|
|
|
///
|
|
/// \ingroup MatOp
|
|
///
|
|
/// This class defines the shift-solve operation on a real symmetric matrix \f$A\f$,
|
|
/// i.e., calculating \f$y=(A-\sigma I)^{-1}x\f$ for any real \f$\sigma\f$ and
|
|
/// vector \f$x\f$. It is mainly used in the SymEigsShiftSolver eigen solver.
|
|
///
|
|
/// \tparam Scalar_ The element type of the matrix, for example,
|
|
/// `float`, `double`, and `long double`.
|
|
/// \tparam Uplo Either `Eigen::Lower` or `Eigen::Upper`, indicating which
|
|
/// triangular part of the matrix is used.
|
|
/// \tparam Flags Either `Eigen::ColMajor` or `Eigen::RowMajor`, indicating
|
|
/// the storage format of the input matrix.
|
|
///
|
|
template <typename Scalar_, int Uplo = Eigen::Lower, int Flags = Eigen::ColMajor>
|
|
class DenseSymShiftSolve
|
|
{
|
|
public:
|
|
///
|
|
/// Element type of the matrix.
|
|
///
|
|
using Scalar = Scalar_;
|
|
|
|
private:
|
|
using Index = Eigen::Index;
|
|
using Matrix = Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Flags>;
|
|
using Vector = Eigen::Matrix<Scalar, Eigen::Dynamic, 1>;
|
|
using MapConstVec = Eigen::Map<const Vector>;
|
|
using MapVec = Eigen::Map<Vector>;
|
|
using ConstGenericMatrix = const Eigen::Ref<const Matrix>;
|
|
|
|
ConstGenericMatrix m_mat;
|
|
const Index m_n;
|
|
BKLDLT<Scalar> m_solver;
|
|
|
|
public:
|
|
///
|
|
/// Constructor to create the matrix operation object.
|
|
///
|
|
/// \param mat An **Eigen** matrix object, whose type can be
|
|
/// `Eigen::Matrix<Scalar, ...>` (e.g. `Eigen::MatrixXd` and
|
|
/// `Eigen::MatrixXf`), or its mapped version
|
|
/// (e.g. `Eigen::Map<Eigen::MatrixXd>`).
|
|
///
|
|
template <typename Derived>
|
|
DenseSymShiftSolve(const Eigen::MatrixBase<Derived>& mat) :
|
|
m_mat(mat), m_n(mat.rows())
|
|
{
|
|
static_assert(
|
|
static_cast<int>(Derived::PlainObject::IsRowMajor) == static_cast<int>(Matrix::IsRowMajor),
|
|
"DenseSymShiftSolve: the \"Flags\" template parameter does not match the input matrix (Eigen::ColMajor/Eigen::RowMajor)");
|
|
|
|
if (m_n != mat.cols())
|
|
throw std::invalid_argument("DenseSymShiftSolve: matrix must be square");
|
|
}
|
|
|
|
///
|
|
/// Return the number of rows of the underlying matrix.
|
|
///
|
|
Index rows() const { return m_n; }
|
|
///
|
|
/// Return the number of columns of the underlying matrix.
|
|
///
|
|
Index cols() const { return m_n; }
|
|
|
|
///
|
|
/// Set the real shift \f$\sigma\f$.
|
|
///
|
|
void set_shift(const Scalar& sigma)
|
|
{
|
|
m_solver.compute(m_mat, Uplo, sigma);
|
|
if (m_solver.info() != CompInfo::Successful)
|
|
throw std::invalid_argument("DenseSymShiftSolve: factorization failed with the given shift");
|
|
}
|
|
|
|
///
|
|
/// Perform the shift-solve operation \f$y=(A-\sigma I)^{-1}x\f$.
|
|
///
|
|
/// \param x_in Pointer to the \f$x\f$ vector.
|
|
/// \param y_out Pointer to the \f$y\f$ vector.
|
|
///
|
|
// y_out = inv(A - sigma * I) * x_in
|
|
void perform_op(const Scalar* x_in, Scalar* y_out) const
|
|
{
|
|
MapConstVec x(x_in, m_n);
|
|
MapVec y(y_out, m_n);
|
|
y.noalias() = m_solver.solve(x);
|
|
}
|
|
};
|
|
|
|
} // namespace Spectra
|
|
|
|
#endif // SPECTRA_DENSE_SYM_SHIFT_SOLVE_H
|