libMesh
eigen_sparse_matrix.C
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2024 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_equal_to (m_in, n_in);
54  libmesh_assert_greater (nnz, 0);
55 
56  _mat.resize(m_in, n_in);
57  _mat.reserve(Eigen::Matrix<numeric_index_type, Eigen::Dynamic, 1>::Constant(m_in,nnz));
58 
59  this->_is_initialized = true;
60 }
61 
62 
63 
64 template <typename T>
66 {
67  // Ignore calls on initialized objects
68  if (this->initialized())
69  return;
70 
71  // We need the DofMap for this!
72  libmesh_assert(this->_dof_map);
73 
74  // Clear initialized matrices
75  if (this->initialized())
76  this->clear();
77 
78  const numeric_index_type n_rows = this->_dof_map->n_dofs();
79  const numeric_index_type n_cols = n_rows;
80 
81 #ifndef NDEBUG
82  // The following variables are only used for assertions,
83  // so avoid declaring them when asserts are inactive.
84  const numeric_index_type n_l = this->_dof_map->n_dofs_on_processor(0);
85  const numeric_index_type m_l = n_l;
86 #endif
87 
88  // Laspack Matrices only work for uniprocessor cases
89  libmesh_assert_equal_to (n_rows, n_cols);
90  libmesh_assert_equal_to (m_l, n_rows);
91  libmesh_assert_equal_to (n_l, n_cols);
92 
93  const std::vector<numeric_index_type> & n_nz = this->_sp->get_n_nz();
94 
95 #ifndef NDEBUG
96  // The following variables are only used for assertions,
97  // so avoid declaring them when asserts are inactive.
98  const std::vector<numeric_index_type> & n_oz = this->_sp->get_n_oz();
99 #endif
100 
101  // Make sure the sparsity pattern isn't empty
102  libmesh_assert_equal_to (n_nz.size(), n_l);
103  libmesh_assert_equal_to (n_oz.size(), n_l);
104 
105  if (n_rows==0)
106  {
107  _mat.resize(0,0);
108  return;
109  }
110 
111  _mat.resize(n_rows,n_cols);
112  _mat.reserve(n_nz);
113 
114  this->_is_initialized = true;
115 
116  libmesh_assert_equal_to (n_rows, this->m());
117  libmesh_assert_equal_to (n_cols, this->n());
118 }
119 
120 
121 
122 template <typename T>
124  const std::vector<numeric_index_type> & rows,
125  const std::vector<numeric_index_type> & cols)
126 
127 {
128  libmesh_assert (this->initialized());
129  unsigned int n_rows = cast_int<unsigned int>(rows.size());
130  unsigned int n_cols = cast_int<unsigned int>(cols.size());
131  libmesh_assert_equal_to (dm.m(), n_rows);
132  libmesh_assert_equal_to (dm.n(), n_cols);
133 
134 
135  for (unsigned int i=0; i<n_rows; i++)
136  for (unsigned int j=0; j<n_cols; j++)
137  this->add(rows[i],cols[j],dm(i,j));
138 }
139 
140 
141 
142 template <typename T>
144 {
145  EigenSparseVector<T> & dest = cast_ref<EigenSparseVector<T> &>(dest_in);
146 
147  dest._vec = _mat.diagonal();
148 }
149 
150 
151 
152 template <typename T>
154 {
155  EigenSparseMatrix<T> & dest = cast_ref<EigenSparseMatrix<T> &>(dest_in);
156 
157  dest._mat = _mat.transpose();
158 }
159 
160 
161 
162 template <typename T>
164  SparseMatrix<T>(comm_in),
165  _closed (false)
166 {
167 }
168 
169 
170 
171 template <typename T>
173 {
174  _mat.resize(0,0);
175 
176  _closed = false;
177  this->_is_initialized = false;
178 }
179 
180 
181 
182 template <typename T>
184 {
185  // This doesn't just zero, it clears the entire non-zero structure!
186  _mat.setZero();
187 
188  if (this->_sp)
189  {
190  // Re-reserve our non-zero structure
191  const std::vector<numeric_index_type> & n_nz = this->_sp->get_n_nz();
192  _mat.reserve(n_nz);
193  }
194 }
195 
196 
197 
198 template <typename T>
199 std::unique_ptr<SparseMatrix<T>> EigenSparseMatrix<T>::zero_clone () const
200 {
201  // TODO: If there is a more efficient way to make a zeroed-out copy
202  // of an EigenSM, we should call that instead.
203  auto ret = std::make_unique<EigenSparseMatrix<T>>(*this);
204  ret->zero();
205 
206  // Work around an issue on older compilers. We are able to simply
207  // "return ret;" on newer compilers
208  return std::unique_ptr<SparseMatrix<T>>(ret.release());
209 }
210 
211 
212 
213 template <typename T>
214 std::unique_ptr<SparseMatrix<T>> EigenSparseMatrix<T>::clone () const
215 {
216  return std::make_unique<EigenSparseMatrix<T>>(*this);
217 }
218 
219 
220 
221 template <typename T>
223 {
224  libmesh_assert (this->initialized());
225 
226  return cast_int<numeric_index_type>(_mat.rows());
227 }
228 
229 
230 
231 template <typename T>
233 {
234  libmesh_assert (this->initialized());
235 
236  return cast_int<numeric_index_type>(_mat.cols());
237 }
238 
239 
240 
241 template <typename T>
243 {
244  return 0;
245 }
246 
247 
248 
249 template <typename T>
251 {
252  return this->m();
253 }
254 
255 
256 
257 template <typename T>
259 {
260  return 0;
261 }
262 
263 
264 
265 template <typename T>
267 {
268  return this->n();
269 }
270 
271 
272 
273 template <typename T>
275  const numeric_index_type j,
276  const T value)
277 {
278  libmesh_assert (this->initialized());
279  libmesh_assert_less (i, this->m());
280  libmesh_assert_less (j, this->n());
281 
282  _mat.coeffRef(i,j) = value;
283 }
284 
285 
286 
287 template <typename T>
289  const numeric_index_type j,
290  const T value)
291 {
292  libmesh_assert (this->initialized());
293  libmesh_assert_less (i, this->m());
294  libmesh_assert_less (j, this->n());
295 
296  _mat.coeffRef(i,j) += value;
297 }
298 
299 
300 
301 template <typename T>
303  const std::vector<numeric_index_type> & dof_indices)
304 {
305  this->add_matrix (dm, dof_indices, dof_indices);
306 }
307 
308 
309 
310 template <typename T>
311 void EigenSparseMatrix<T>::add (const T a_in, const SparseMatrix<T> & X_in)
312 {
313  libmesh_assert (this->initialized());
314  libmesh_assert_equal_to (this->m(), X_in.m());
315  libmesh_assert_equal_to (this->n(), X_in.n());
316 
317  const EigenSparseMatrix<T> & X =
318  cast_ref<const EigenSparseMatrix<T> &> (X_in);
319 
320  _mat += X._mat*a_in;
321 }
322 
323 
324 
325 
326 template <typename T>
328  const numeric_index_type j) const
329 {
330  libmesh_assert (this->initialized());
331  libmesh_assert_less (i, this->m());
332  libmesh_assert_less (j, this->n());
333 
334  return _mat.coeff(i,j);
335 }
336 
337 
338 
339 template <typename T>
341 {
342  // There does not seem to be a straightforward way to iterate over
343  // the columns of an EigenSparseMatrix. So we use some extra
344  // storage and keep track of the column sums while going over the
345  // row entries...
346  std::vector<Real> abs_col_sums(this->n());
347 
348  // For a row-major Eigen SparseMatrix like we're using, the
349  // InnerIterator iterates over the non-zero entries of rows.
350  for (auto row : make_range(this->m()))
351  {
352  EigenSM::InnerIterator it(_mat, row);
353  for (; it; ++it)
354  abs_col_sums[it.col()] += std::abs(it.value());
355  }
356 
357  return *(std::max_element(abs_col_sums.begin(), abs_col_sums.end()));
358 }
359 
360 
361 
362 template <typename T>
364 {
365  Real max_abs_row_sum = 0.;
366 
367  // For a row-major Eigen SparseMatrix like we're using, the
368  // InnerIterator iterates over the non-zero entries of rows.
369  for (auto row : make_range(this->m()))
370  {
371  Real current_abs_row_sum = 0.;
372  EigenSM::InnerIterator it(_mat, row);
373  for (; it; ++it)
374  current_abs_row_sum += std::abs(it.value());
375 
376  max_abs_row_sum = std::max(max_abs_row_sum, current_abs_row_sum);
377  }
378 
379  return max_abs_row_sum;
380 }
381 
382 
383 
384 template <typename T>
386  std::vector<numeric_index_type> & indices,
387  std::vector<T> & values) const
388 {
389  indices.clear();
390  values.clear();
391 
392  // InnerIterator is over rows in RowMajor ordering
393  static_assert(EigenSM::IsRowMajor);
394 
395  for (EigenSM::InnerIterator it(_mat, i); it; ++it)
396  {
397  indices.push_back(it.col());
398  values.push_back(it.value());
399  }
400 }
401 
402 
403 
404 //------------------------------------------------------------------
405 // Explicit instantiations
406 template class LIBMESH_EXPORT EigenSparseMatrix<Number>;
407 
408 } // namespace libMesh
409 
410 
411 #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:43
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.
ADRealEigenVector< T, D, asd > abs(const ADRealEigenVector< T, D, asd > &)
Definition: type_vector.h:57
Generic sparse matrix.
Definition: vector_fe_ex5.C:45
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:247
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:134
bool initialized()
Checks that library initialization has been done.
Definition: libmesh.C:266
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:65
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.