libMesh
eigen_sparse_matrix.C
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2025 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 // Local includes
21 #include "libmesh/libmesh_config.h"
22 
23 #ifdef LIBMESH_HAVE_EIGEN
24 
25 #include "libmesh/eigen_sparse_vector.h"
26 #include "libmesh/eigen_sparse_matrix.h"
27 #include "libmesh/dense_matrix.h"
28 #include "libmesh/dof_map.h"
29 #include "libmesh/sparsity_pattern.h"
30 
31 // C++ Includes
32 #include <memory>
33 
34 
35 namespace libMesh
36 {
37 
38 
39 //-----------------------------------------------------------------------
40 // EigenSparseMatrix members
41 template <typename T>
43  const numeric_index_type n_in,
44  const numeric_index_type libmesh_dbg_var(m_l),
45  const numeric_index_type libmesh_dbg_var(n_l),
46  const numeric_index_type nnz,
47  const numeric_index_type,
48  const numeric_index_type)
49 {
50  // noz ignored... only used for multiple processors!
51  libmesh_assert_equal_to (m_in, m_l);
52  libmesh_assert_equal_to (n_in, n_l);
53  libmesh_assert_greater (nnz, 0);
54 
55  _mat.resize(m_in, n_in);
56  _mat.reserve(Eigen::Matrix<numeric_index_type, Eigen::Dynamic, 1>::Constant(m_in,nnz));
57 
58  this->_is_initialized = true;
59 }
60 
61 
62 
63 template <typename T>
65 {
66  // Ignore calls on initialized objects
67  if (this->initialized())
68  return;
69 
70  // We need the DofMap for this!
71  libmesh_assert(this->_dof_map);
72 
73  // Clear initialized matrices
74  if (this->initialized())
75  this->clear();
76 
77  const numeric_index_type n_rows = this->_dof_map->n_dofs();
78  const numeric_index_type n_cols = n_rows;
79 
80 #ifndef NDEBUG
81  // The following variables are only used for assertions,
82  // so avoid declaring them when asserts are inactive.
83  const numeric_index_type n_l = this->_dof_map->n_dofs_on_processor(0);
84  const numeric_index_type m_l = n_l;
85 #endif
86 
87  // Eigen Matrices only work for uniprocessor cases
88  libmesh_assert_equal_to (m_l, n_rows);
89  libmesh_assert_equal_to (n_l, n_cols);
90 
91  const std::vector<numeric_index_type> & n_nz = this->_sp->get_n_nz();
92 
93 #ifndef NDEBUG
94  // The following variables are only used for assertions,
95  // so avoid declaring them when asserts are inactive.
96  const std::vector<numeric_index_type> & n_oz = this->_sp->get_n_oz();
97 #endif
98 
99  // Make sure the sparsity pattern isn't empty
100  libmesh_assert_equal_to (n_nz.size(), n_l);
101  libmesh_assert_equal_to (n_oz.size(), n_l);
102 
103  if (n_rows==0)
104  {
105  _mat.resize(0,0);
106  return;
107  }
108 
109  _mat.resize(n_rows,n_cols);
110  _mat.reserve(n_nz);
111 
112  this->_is_initialized = true;
113 
114  libmesh_assert_equal_to (n_rows, this->m());
115  libmesh_assert_equal_to (n_cols, this->n());
116 }
117 
118 
119 
120 template <typename T>
122  const std::vector<numeric_index_type> & rows,
123  const std::vector<numeric_index_type> & cols)
124 
125 {
126  libmesh_assert (this->initialized());
127  unsigned int n_rows = cast_int<unsigned int>(rows.size());
128  unsigned int n_cols = cast_int<unsigned int>(cols.size());
129  libmesh_assert_equal_to (dm.m(), n_rows);
130  libmesh_assert_equal_to (dm.n(), n_cols);
131 
132 
133  for (unsigned int i=0; i<n_rows; i++)
134  for (unsigned int j=0; j<n_cols; j++)
135  this->add(rows[i],cols[j],dm(i,j));
136 }
137 
138 
139 
140 template <typename T>
142 {
143  EigenSparseVector<T> & dest = cast_ref<EigenSparseVector<T> &>(dest_in);
144 
145  dest._vec = _mat.diagonal();
146 }
147 
148 
149 
150 template <typename T>
152 {
153  EigenSparseMatrix<T> & dest = cast_ref<EigenSparseMatrix<T> &>(dest_in);
154 
155  dest._mat = _mat.transpose();
156 }
157 
158 
159 
160 template <typename T>
162  SparseMatrix<T>(comm_in),
163  _closed (false)
164 {
165 }
166 
167 
168 
169 template <typename T>
171 {
172  _mat.resize(0,0);
173 
174  _closed = false;
175  this->_is_initialized = false;
176 }
177 
178 
179 
180 template <typename T>
182 {
183  // This doesn't just zero, it clears the entire non-zero structure!
184  _mat.setZero();
185 
186  if (this->_sp)
187  {
188  // Re-reserve our non-zero structure
189  const std::vector<numeric_index_type> & n_nz = this->_sp->get_n_nz();
190  _mat.reserve(n_nz);
191  }
192 }
193 
194 
195 
196 template <typename T>
197 std::unique_ptr<SparseMatrix<T>> EigenSparseMatrix<T>::zero_clone () const
198 {
199  // TODO: If there is a more efficient way to make a zeroed-out copy
200  // of an EigenSM, we should call that instead.
201  auto ret = std::make_unique<EigenSparseMatrix<T>>(*this);
202  ret->zero();
203 
204  return ret;
205 }
206 
207 
208 
209 template <typename T>
210 std::unique_ptr<SparseMatrix<T>> EigenSparseMatrix<T>::clone () const
211 {
212  return std::make_unique<EigenSparseMatrix<T>>(*this);
213 }
214 
215 
216 
217 template <typename T>
219 {
220  libmesh_assert (this->initialized());
221 
222  return cast_int<numeric_index_type>(_mat.rows());
223 }
224 
225 
226 
227 template <typename T>
229 {
230  libmesh_assert (this->initialized());
231 
232  return cast_int<numeric_index_type>(_mat.cols());
233 }
234 
235 
236 
237 template <typename T>
239 {
240  return 0;
241 }
242 
243 
244 
245 template <typename T>
247 {
248  return this->m();
249 }
250 
251 
252 
253 template <typename T>
255 {
256  return 0;
257 }
258 
259 
260 
261 template <typename T>
263 {
264  return this->n();
265 }
266 
267 
268 
269 template <typename T>
271  const numeric_index_type j,
272  const T value)
273 {
274  libmesh_assert (this->initialized());
275  libmesh_assert_less (i, this->m());
276  libmesh_assert_less (j, this->n());
277 
278  _mat.coeffRef(i,j) = value;
279 }
280 
281 
282 
283 template <typename T>
285  const numeric_index_type j,
286  const T value)
287 {
288  libmesh_assert (this->initialized());
289  libmesh_assert_less (i, this->m());
290  libmesh_assert_less (j, this->n());
291 
292  _mat.coeffRef(i,j) += value;
293 }
294 
295 
296 
297 template <typename T>
299  const std::vector<numeric_index_type> & dof_indices)
300 {
301  this->add_matrix (dm, dof_indices, dof_indices);
302 }
303 
304 
305 
306 template <typename T>
307 void EigenSparseMatrix<T>::add (const T a_in, const SparseMatrix<T> & X_in)
308 {
309  libmesh_assert (this->initialized());
310  libmesh_assert_equal_to (this->m(), X_in.m());
311  libmesh_assert_equal_to (this->n(), X_in.n());
312 
313  const EigenSparseMatrix<T> & X =
314  cast_ref<const EigenSparseMatrix<T> &> (X_in);
315 
316  _mat += X._mat*a_in;
317 }
318 
319 
320 
321 
322 template <typename T>
324  const numeric_index_type j) const
325 {
326  libmesh_assert (this->initialized());
327  libmesh_assert_less (i, this->m());
328  libmesh_assert_less (j, this->n());
329 
330  return _mat.coeff(i,j);
331 }
332 
333 
334 
335 template <typename T>
337 {
338  // There does not seem to be a straightforward way to iterate over
339  // the columns of an EigenSparseMatrix. So we use some extra
340  // storage and keep track of the column sums while going over the
341  // row entries...
342  std::vector<Real> abs_col_sums(this->n());
343 
344  // For a row-major Eigen SparseMatrix like we're using, the
345  // InnerIterator iterates over the non-zero entries of rows.
346  for (auto row : make_range(this->m()))
347  {
348  EigenSM::InnerIterator it(_mat, row);
349  for (; it; ++it)
350  abs_col_sums[it.col()] += std::abs(it.value());
351  }
352 
353  return *(std::max_element(abs_col_sums.begin(), abs_col_sums.end()));
354 }
355 
356 
357 
358 template <typename T>
360 {
361  Real max_abs_row_sum = 0.;
362 
363  // For a row-major Eigen SparseMatrix like we're using, the
364  // InnerIterator iterates over the non-zero entries of rows.
365  for (auto row : make_range(this->m()))
366  {
367  Real current_abs_row_sum = 0.;
368  EigenSM::InnerIterator it(_mat, row);
369  for (; it; ++it)
370  current_abs_row_sum += std::abs(it.value());
371 
372  max_abs_row_sum = std::max(max_abs_row_sum, current_abs_row_sum);
373  }
374 
375  return max_abs_row_sum;
376 }
377 
378 
379 
380 template <typename T>
382  std::vector<numeric_index_type> & indices,
383  std::vector<T> & values) const
384 {
385  indices.clear();
386  values.clear();
387 
388  // InnerIterator is over rows in RowMajor ordering
389  static_assert(EigenSM::IsRowMajor);
390 
391  for (EigenSM::InnerIterator it(_mat, i); it; ++it)
392  {
393  indices.push_back(it.col());
394  values.push_back(it.value());
395  }
396 }
397 
398 
399 
400 //------------------------------------------------------------------
401 // Explicit instantiations
402 template class LIBMESH_EXPORT EigenSparseMatrix<Number>;
403 
404 } // namespace libMesh
405 
406 
407 #endif // #ifdef LIBMESH_HAVE_EIGEN
virtual void set(const numeric_index_type i, const numeric_index_type j, const T value) override
Set the element (i,j) to value.
The EigenSparseMatrix class wraps a sparse matrix object from the Eigen library.
virtual void init(const numeric_index_type m, const numeric_index_type n, const numeric_index_type m_l, const numeric_index_type n_l, const numeric_index_type nnz=30, const numeric_index_type noz=10, const numeric_index_type blocksize=1) override
Initialize SparseMatrix with the specified sizes.
virtual void add(const numeric_index_type i, const numeric_index_type j, const T value) override
Add value to the element (i,j).
virtual numeric_index_type m() const override
virtual numeric_index_type row_stop() const override
DataType _vec
Actual Eigen::SparseVector<> we are wrapping.
virtual std::unique_ptr< SparseMatrix< T > > clone() const override
Provides a uniform interface to vector storage schemes for different linear algebra libraries...
Definition: vector_fe_ex5.C:44
unsigned int m() const
The libMesh namespace provides an interface to certain functionality in the library.
DataType _mat
Actual Eigen::SparseMatrix<> we are wrapping.
virtual void get_transpose(SparseMatrix< T > &dest) const override
Copies the transpose of the matrix into dest, which may be *this.
Generic sparse matrix.
Definition: vector_fe_ex5.C:46
virtual void zero() override
Set all entries to 0.
virtual numeric_index_type n() const override
virtual void get_diagonal(NumericVector< T > &dest) const override
Copies the diagonal part of the matrix into dest.
dof_id_type numeric_index_type
Definition: id_types.h:99
bool _is_initialized
Flag that tells if init() has been called.
Definition: libmesh.C:257
EigenSparseMatrix(const Parallel::Communicator &comm)
Constructor; initializes the matrix to be empty, without any structure, i.e.
virtual numeric_index_type m() const =0
libmesh_assert(ctx)
virtual numeric_index_type col_stop() const override
virtual T operator()(const numeric_index_type i, const numeric_index_type j) const override
virtual numeric_index_type row_start() const override
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual Real linfty_norm() const override
virtual numeric_index_type col_start() const override
virtual void clear() override
Restores the SparseMatrix<T> to a pristine state.
static const bool value
Definition: xdr_io.C:54
virtual void get_row(numeric_index_type i, std::vector< numeric_index_type > &indices, std::vector< T > &values) const override
Get a row from the matrix.
IntRange< T > make_range(T beg, T end)
The 2-parameter make_range() helper function returns an IntRange<T> when both input parameters are of...
Definition: int_range.h:140
bool initialized()
Checks that library initialization has been done.
Definition: libmesh.C:276
virtual std::unique_ptr< SparseMatrix< T > > zero_clone() const override
virtual Real l1_norm() const override
unsigned int n() const
Defines a dense matrix for use in Finite Element-type computations.
Definition: dof_map.h:75
This class provides a nice interface to the Eigen C++-based data structures for serial vectors...
virtual numeric_index_type n() const =0
ParallelType
Defines an enum for parallel data structure types.
virtual void add_matrix(const DenseMatrix< T > &dm, const std::vector< numeric_index_type > &rows, const std::vector< numeric_index_type > &cols) override
Add the full matrix dm to the SparseMatrix.