]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Portable::MatrixFree: add dof_handler index 18293/head
authorTimo Heister <timo.heister@gmail.com>
Thu, 27 Mar 2025 01:47:43 +0000 (21:47 -0400)
committerTimo Heister <timo.heister@gmail.com>
Thu, 27 Mar 2025 16:24:34 +0000 (12:24 -0400)
include/deal.II/matrix_free/portable_fe_evaluation.h
include/deal.II/matrix_free/portable_matrix_free.h
include/deal.II/matrix_free/portable_matrix_free.templates.h

index afbc9a7db6a6a90ae826488bb09ac42ccbeeff3f..607cef6bb521dac1e2043ee88004b4e5890e744d 100644 (file)
@@ -121,10 +121,16 @@ namespace Portable
       tensor_dofs_per_component * n_components;
 
     /**
-     * Constructor.
+     * Constructor. You will need to provide a pointer to the
+     * Portable::MatrixFree::Data object, which is typically provided to the
+     * functor inside the
+     * Portable::MatrixFree::cell_loop() and the index @p dof_index of the DoFHandler
+     * if more than one was provided when the Portable::MatrixFree object was
+     * initialized.
      */
     DEAL_II_HOST_DEVICE
-    explicit FEEvaluation(const data_type *data);
+    explicit FEEvaluation(const data_type   *data,
+                          const unsigned int dof_index = 0);
 
     /**
      * Return the index of the current cell.
@@ -255,12 +261,15 @@ namespace Portable
             typename Number>
   DEAL_II_HOST_DEVICE
   FEEvaluation<dim, fe_degree, n_q_points_1d, n_components_, Number>::
-    FEEvaluation(const data_type *data)
+    FEEvaluation(const data_type *data, const unsigned int dof_index)
     : data(data)
     , precomputed_data(data->precomputed_data)
     , shared_data(data->shared_data)
     , cell_id(data->team_member.league_rank())
-  {}
+  {
+    (void)dof_index;
+    AssertIndexRange(dof_index, data->n_dofhandler);
+  }
 
 
 
index 713e6c707bf6624b27f16c23e5baa50dd70c1193..5884d75abb89a38dbf462e0e62a779844d446951 100644 (file)
@@ -375,6 +375,7 @@ namespace Portable
        */
       TeamHandle team_member;
 
+      const unsigned int       n_dofhandler;
       const int                cell_index;
       const PrecomputedData   *precomputed_data;
       SharedData<dim, Number> *shared_data;
index 0070ff58761366f807aad1ad998f373344a1c195..17c8710964a4defba5f94d3eb711a72151cd03c8 100644 (file)
@@ -418,8 +418,11 @@ namespace Portable
 
         SharedData<dim, Number> shared_data(values, gradients, scratch_pad);
 
+        const unsigned int cell_index = team_member.league_rank();
+
         typename MatrixFree<dim, Number>::Data data{team_member,
-                                                    team_member.league_rank(),
+                                                    /* n_dofhandler */ 1,
+                                                    cell_index,
                                                     &gpu_data,
                                                     &shared_data};
 
@@ -675,14 +678,16 @@ namespace Portable
               Kokkos::parallel_for(Kokkos::TeamVectorRange(team_member,
                                                            n_q_points),
                                    [&](const int q_point) {
-                                     const int cell = team_member.league_rank();
+                                     const int cell_index =
+                                       team_member.league_rank();
 
                                      Data data{team_member,
-                                               cell,
+                                               /* n_dofhandler */ 1,
+                                               cell_index,
                                                &color_data,
-                                               /*shared_data*/ nullptr};
+                                               /* shared_data */ nullptr};
 
-                                     func(&data, cell, q_point);
+                                     func(&data, cell_index, q_point);
                                    });
             });
         }

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.