]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix matrix-free Kokkos performance test 18297/head
authorMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 27 Mar 2025 14:46:48 +0000 (15:46 +0100)
committerMartin Kronbichler <martin.kronbichler@rub.de>
Thu, 27 Mar 2025 14:46:48 +0000 (15:46 +0100)
tests/performance/timing_matrix_free_kokkos.cc

index 079c9cee126eada461ac34b016b8623b9816f9da..743d67cb0213be73437e94610fecb3640d7d528e 100644 (file)
@@ -131,16 +131,12 @@ class LaplaceOperatorLocal
 {
 public:
   DEAL_II_HOST_DEVICE void
-  operator()(const unsigned int                                      cell,
-             const typename Portable::MatrixFree<dim, Number>::Data *gpu_data,
-             Portable::SharedData<dim, Number> *shared_data,
-             const Number                      *src,
-             Number                            *dst) const
+  operator()(const typename Portable::MatrixFree<dim, Number>::Data *gpu_data,
+             const Portable::DeviceVector<double>                   &src,
+             Portable::DeviceVector<double>                         &dst) const
   {
-    (void)cell; // TODO?
-
     Portable::FEEvaluation<dim, fe_degree, fe_degree + 1, 1, Number> fe_eval(
-      /*cell,*/ gpu_data, shared_data);
+      gpu_data);
     fe_eval.read_dof_values(src);
     fe_eval.evaluate(EvaluationFlags::gradients);
     fe_eval.apply_for_each_quad_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.