]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Portable::MatrixFree BlockVector test update 18292/head
authorTimo Heister <timo.heister@gmail.com>
Thu, 27 Mar 2025 01:39:06 +0000 (21:39 -0400)
committerTimo Heister <timo.heister@gmail.com>
Thu, 27 Mar 2025 01:39:21 +0000 (21:39 -0400)
tests/matrix_free_kokkos/cell_loop_block_01.cc
tests/matrix_free_kokkos/cell_loop_block_02.cc [new file with mode: 0644]
tests/matrix_free_kokkos/cell_loop_block_02.output [new file with mode: 0644]

index ba1e413723e7209a6ff42d3bb78122f519386c11..b2fbc394d76474f08e08edcc15d636ee5f031d2e 100644 (file)
 // ------------------------------------------------------------------------
 
 
-// check that Portable::FEEvaluation::submit_dof_value/get_dof_value
-// works correctly.
-
-#include "deal.II/base/memory_space.h"
+// check that Portable::MatrixFree::cell_loop works with BlockVector
 
 #include <deal.II/grid/grid_generator.h>
 #include <deal.II/grid/manifold_lib.h>
 
-#include "deal.II/lac/la_parallel_block_vector.h"
+#include <deal.II/lac/la_parallel_block_vector.h>
 
 #include <deal.II/matrix_free/portable_fe_evaluation.h>
 #include <deal.II/matrix_free/portable_matrix_free.h>
 
-#include "../tests.h"
+#include <Kokkos_Core.hpp>
 
-#include "Kokkos_Core.hpp"
+#include "../tests.h"
 
 template <int dim,
           int fe_degree,
diff --git a/tests/matrix_free_kokkos/cell_loop_block_02.cc b/tests/matrix_free_kokkos/cell_loop_block_02.cc
new file mode 100644 (file)
index 0000000..7d3dd6a
--- /dev/null
@@ -0,0 +1,207 @@
+// ------------------------------------------------------------------------
+//
+// SPDX-License-Identifier: LGPL-2.1-or-later
+// Copyright (C) 2019 - 2024 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// Part of the source code is dual licensed under Apache-2.0 WITH
+// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
+// governing the source code and code contributions can be found in
+// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
+//
+// ------------------------------------------------------------------------
+
+
+// check that Portable::MatrixFree::cell_loop works with BlockVector
+
+#include <deal.II/grid/grid_generator.h>
+#include <deal.II/grid/manifold_lib.h>
+
+#include <deal.II/lac/la_parallel_block_vector.h>
+
+#include <deal.II/matrix_free/portable_fe_evaluation.h>
+#include <deal.II/matrix_free/portable_matrix_free.h>
+
+#include <Kokkos_Core.hpp>
+
+#include "../tests.h"
+
+template <int dim,
+          int fe_degree,
+          int n_q_points_1d = fe_degree + 1,
+          typename Number   = double>
+class MatrixFreeTest
+{
+public:
+  static const unsigned int n_local_dofs = Utilities::pow(fe_degree + 1, dim);
+  static const unsigned int n_q_points   = Utilities::pow(n_q_points_1d, dim);
+
+  MatrixFreeTest(const Portable::MatrixFree<dim, Number> &data_in)
+    : data(data_in){};
+
+  DEAL_II_HOST_DEVICE void
+  operator()(const typename Portable::MatrixFree<dim, Number>::Data *data,
+             const Portable::DeviceVector<Number>                   &src,
+             Portable::DeviceVector<Number>                         &dst) const
+  {
+    Portable::FEEvaluation<dim, fe_degree, n_q_points_1d, 1, Number> fe_eval(
+      data);
+
+    fe_eval.read_dof_values(src);
+    fe_eval.distribute_local_to_global(dst);
+  }
+
+  void
+  test() const
+  {
+    LinearAlgebra::distributed::Vector<Number, MemorySpace::Default> dst;
+    LinearAlgebra::distributed::Vector<Number, MemorySpace::Default> src;
+
+    data.initialize_dof_vector(dst);
+    data.initialize_dof_vector(src);
+    src.add(1.0);
+
+    data.cell_loop(*this, src, dst);
+
+    Kokkos::fence();
+
+    deallog << "OK:" << dst.linfty_norm() << std::endl;
+  }
+
+protected:
+  const Portable::MatrixFree<dim, Number> &data;
+};
+
+
+template <int dim,
+          int fe_degree,
+          int n_q_points_1d = fe_degree + 1,
+          typename Number   = double>
+class MatrixFreeTestBlock
+{
+public:
+  static const unsigned int n_local_dofs = Utilities::pow(fe_degree + 1, dim);
+  static const unsigned int n_q_points   = Utilities::pow(n_q_points_1d, dim);
+
+  MatrixFreeTestBlock(const Portable::MatrixFree<dim, Number> &data_in)
+    : data(data_in){};
+
+  DEAL_II_HOST_DEVICE void
+  operator()(const typename Portable::MatrixFree<dim, Number>::Data *data,
+             const Portable::DeviceBlockVector<Number>              &src,
+             Portable::DeviceBlockVector<Number>                    &dst) const
+  {
+    Portable::FEEvaluation<dim, fe_degree, n_q_points_1d, 1, Number> fe_eval(
+      data);
+
+    fe_eval.read_dof_values(src.block(0));
+    fe_eval.distribute_local_to_global(dst.block(0));
+    fe_eval.read_dof_values(src.block(1));
+    fe_eval.distribute_local_to_global(dst.block(1));
+  }
+
+  void
+  test() const
+  {
+    LinearAlgebra::distributed::BlockVector<Number, MemorySpace::Default> dst(
+      2);
+    LinearAlgebra::distributed::BlockVector<Number, MemorySpace::Default> src(
+      2);
+
+    data.initialize_dof_vector(dst.block(0));
+    data.initialize_dof_vector(dst.block(1));
+    data.initialize_dof_vector(src.block(0));
+    data.initialize_dof_vector(src.block(1));
+    src.block(0).add(1.0);
+    src.block(1).add(2.0);
+
+    data.cell_loop(*this, src, dst);
+
+    Kokkos::fence();
+
+    deallog << "OK:" << dst.block(0).linfty_norm() << " "
+            << dst.block(1).linfty_norm() << std::endl;
+  }
+
+protected:
+  const Portable::MatrixFree<dim, Number> &data;
+};
+
+template <int dim, int fe_degree, int n_q_points_1d, typename Number>
+const unsigned int
+  MatrixFreeTest<dim, fe_degree, n_q_points_1d, Number>::n_local_dofs;
+
+template <int dim, int fe_degree, int n_q_points_1d, typename Number>
+const unsigned int
+  MatrixFreeTest<dim, fe_degree, n_q_points_1d, Number>::n_q_points;
+
+template <int dim, int fe_degree, int n_q_points_1d, typename Number>
+const unsigned int
+  MatrixFreeTestBlock<dim, fe_degree, n_q_points_1d, Number>::n_local_dofs;
+
+template <int dim, int fe_degree, int n_q_points_1d, typename Number>
+const unsigned int
+  MatrixFreeTestBlock<dim, fe_degree, n_q_points_1d, Number>::n_q_points;
+
+
+template <int dim, int fe_degree, typename number>
+void
+do_test(const DoFHandler<dim>           &dof,
+        const AffineConstraints<double> &constraints)
+{
+  Portable::MatrixFree<dim, number> mf_data;
+  {
+    const QGauss<1> quad(fe_degree + 1);
+    typename Portable::MatrixFree<dim, number>::AdditionalData data;
+    data.mapping_update_flags = update_values | update_gradients |
+                                update_JxW_values | update_quadrature_points;
+    mf_data.reinit(dof, constraints, quad, data);
+  }
+
+  deallog << "Testing " << dof.get_fe().get_name() << std::endl;
+  MatrixFreeTest<dim, fe_degree, fe_degree + 1, number> mf(mf_data);
+  mf.test();
+  MatrixFreeTestBlock<dim, fe_degree, fe_degree + 1, number> mfb(mf_data);
+  mfb.test();
+}
+
+
+template <int dim, int fe_degree>
+void
+test()
+{
+  Triangulation<dim> tria;
+  GridGenerator::hyper_cube(tria);
+
+  // refine first and last cell
+  tria.begin(tria.n_levels() - 1)->set_refine_flag();
+  tria.last()->set_refine_flag();
+  tria.execute_coarsening_and_refinement();
+
+  FE_Q<dim>       fe(fe_degree);
+  DoFHandler<dim> dof(tria);
+  dof.distribute_dofs(fe);
+
+  AffineConstraints<double> constraints;
+  DoFTools::make_hanging_node_constraints(dof, constraints);
+  constraints.close();
+
+  do_test<dim, fe_degree, double>(dof, constraints);
+}
+
+
+
+int
+main()
+{
+  initlog();
+
+  Kokkos::initialize();
+
+  test<2, 1>();
+
+  Kokkos::finalize();
+
+  return 0;
+}
diff --git a/tests/matrix_free_kokkos/cell_loop_block_02.output b/tests/matrix_free_kokkos/cell_loop_block_02.output
new file mode 100644 (file)
index 0000000..e771e3a
--- /dev/null
@@ -0,0 +1,4 @@
+
+DEAL::Testing FE_Q<2>(1)
+DEAL::OK:4.00000
+DEAL::OK:4.00000 8.00000

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.