]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Adapt a test by Peter Munch. 12022/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Tue, 27 Apr 2021 22:50:52 +0000 (16:50 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Tue, 27 Apr 2021 22:50:52 +0000 (16:50 -0600)
tests/base/aligned_vector_replicate_03.cc [new file with mode: 0644]
tests/base/aligned_vector_replicate_03.mpirun=3.output [new file with mode: 0644]

diff --git a/tests/base/aligned_vector_replicate_03.cc b/tests/base/aligned_vector_replicate_03.cc
new file mode 100644 (file)
index 0000000..d993d66
--- /dev/null
@@ -0,0 +1,69 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2012 - 2018 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE.md at
+// the top level directory of deal.II.
+//
+// ---------------------------------------------------------------------
+
+
+// Test AlignedVector::replicate_across_communicator(). Cycle through all
+// possible root ranks.
+
+#include <deal.II/base/aligned_vector.h>
+
+#include "../tests.h"
+
+
+void
+test(const unsigned int root)
+{
+  if (Utilities::MPI::this_mpi_process(MPI_COMM_WORLD) == root)
+    deallog << root << " of " << Utilities::MPI::n_mpi_processes(MPI_COMM_WORLD)
+            << ": ";
+
+  AlignedVector<int> avec(1000);
+  if (Utilities::MPI::this_mpi_process(MPI_COMM_WORLD) == root)
+    {
+      unsigned int counter = 0;
+      for (auto &i : avec)
+        i = counter++;
+    }
+
+  avec.replicate_across_communicator(MPI_COMM_WORLD, root);
+
+  {
+    unsigned int counter = 0;
+
+    for (auto &i : avec)
+      {
+        AssertDimension(i, counter);
+        ++counter;
+      }
+  }
+
+  MPI_Barrier(MPI_COMM_WORLD);
+
+  if (Utilities::MPI::this_mpi_process(MPI_COMM_WORLD) == root)
+    deallog << "OK!" << std::endl;
+}
+
+
+
+int
+main(int argc, char **argv)
+{
+  Utilities::MPI::MPI_InitFinalize mpi_initialization(argc, argv, 1);
+  MPILogInitAll                    all;
+
+  for (unsigned int i = 0; i < Utilities::MPI::n_mpi_processes(MPI_COMM_WORLD);
+       ++i)
+    test(i);
+}
diff --git a/tests/base/aligned_vector_replicate_03.mpirun=3.output b/tests/base/aligned_vector_replicate_03.mpirun=3.output
new file mode 100644 (file)
index 0000000..db547dd
--- /dev/null
@@ -0,0 +1,8 @@
+
+DEAL:0::0 of 3: OK!
+
+DEAL:1::1 of 3: OK!
+
+
+DEAL:2::2 of 3: OK!
+

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.