]> https://gitweb.dealii.org/ - dealii.git/commitdiff
SparseMatrixTools: speed up a function to extract a sub-matrix
authorMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 20 Mar 2025 08:31:45 +0000 (09:31 +0100)
committerMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 27 Mar 2025 07:48:49 +0000 (08:48 +0100)
include/deal.II/lac/sparse_matrix_tools.h

index e361e8ca22bbffb38b32411f1c5cf3a0a6bac658..a1c93cd126edaede605beb44df8e810429591cb5 100644 (file)
@@ -504,12 +504,26 @@ namespace SparseMatrixTools
               if (locally_owned_dofs.is_element(
                     local_dof_indices[i])) // row is local
                 {
-                  cell_matrix(i, j) =
-                    sparsity_pattern.exists(local_dof_indices[i],
-                                            local_dof_indices[j]) ?
-                      system_matrix(local_dof_indices[i],
-                                    local_dof_indices[j]) :
-                      0;
+                  if constexpr (std::is_same_v<SparseMatrixType,
+                                               dealii::SparseMatrix<Number>>)
+                    {
+                      const types::global_dof_index ind =
+                        system_matrix.get_sparsity_pattern()(
+                          local_dof_indices[i], local_dof_indices[j]);
+                      if (ind != numbers::invalid_dof_index)
+                        {
+                          SparseMatrixIterators::Accessor<Number, true>
+                            accessor(&system_matrix, ind);
+                          cell_matrix(i, j) = accessor.value();
+                        }
+                    }
+                  else
+                    cell_matrix(i, j) =
+                      sparsity_pattern.exists(local_dof_indices[i],
+                                              local_dof_indices[j]) ?
+                        system_matrix(local_dof_indices[i],
+                                      local_dof_indices[j]) :
+                        0.0;
                 }
               else // row is ghost
                 {

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.