SparseGenMatProd.h
Go to the documentation of this file.
1 // Copyright (C) 2016-2019 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 SPARSE_GEN_MAT_PROD_H
8 #define SPARSE_GEN_MAT_PROD_H
9 
10 #include <Eigen/Core>
11 #include <Eigen/SparseCore>
12 
13 namespace Spectra {
14 
23 template <typename Scalar, int Flags = 0, typename StorageIndex = int>
25 {
26 private:
33 
34  ConstGenericSparseMatrix m_mat;
35 
36 public:
44  SparseGenMatProd(ConstGenericSparseMatrix& mat) :
45  m_mat(mat)
46  {}
47 
51  Index rows() const { return m_mat.rows(); }
55  Index cols() const { return m_mat.cols(); }
56 
63  // y_out = A * x_in
64  void perform_op(const Scalar* x_in, Scalar* y_out) const
65  {
66  MapConstVec x(x_in, m_mat.cols());
67  MapVec y(y_out, m_mat.rows());
68  y.noalias() = m_mat * x;
69  }
70 };
71 
72 } // namespace Spectra
73 
74 #endif // SPARSE_GEN_MAT_PROD_H
SCALAR Scalar
Definition: bench_gemm.cpp:33
Scalar * y
A versatible sparse matrix representation.
Definition: SparseMatrix.h:96
A matrix or vector expression mapping an existing array of data.
Definition: Map.h:94
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::SparseMatrix< Scalar, Flags, StorageIndex > SparseMatrix
const Eigen::Ref< const SparseMatrix > ConstGenericSparseMatrix
ConstGenericSparseMatrix m_mat
SparseGenMatProd(ConstGenericSparseMatrix &mat)
void perform_op(const Scalar *x_in, Scalar *y_out) const
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
Eigen::Map< const Vector > MapConstVec
Eigen::Map< Vector > MapVec


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:44:21