]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Write test for Tvmult of PETSc PreconditionJacobi 9887/head
authorDaniel Garcia-Sanchez <daniel.garcia-sanchez@insp.upmc.fr>
Tue, 14 Apr 2020 17:45:39 +0000 (19:45 +0200)
committerDaniel Garcia-Sanchez <daniel.garcia-sanchez@insp.upmc.fr>
Tue, 14 Apr 2020 17:45:39 +0000 (19:45 +0200)
tests/petsc/preconditioner_tvmult_01.cc [new file with mode: 0644]
tests/petsc/preconditioner_tvmult_01.with_petsc_with_hypre=true.with_petsc_with_complex=false.mpirun=3.output [new file with mode: 0644]

diff --git a/tests/petsc/preconditioner_tvmult_01.cc b/tests/petsc/preconditioner_tvmult_01.cc
new file mode 100644 (file)
index 0000000..d036ee5
--- /dev/null
@@ -0,0 +1,104 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2016 - 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 Tvmult of PreconditionBase
+// This test is based on reinit_preconditioner_01
+
+#include <deal.II/base/index_set.h>
+
+#include <deal.II/lac/dynamic_sparsity_pattern.h>
+#include <deal.II/lac/petsc_precondition.h>
+#include <deal.II/lac/petsc_sparse_matrix.h>
+
+#include <iostream>
+#include <vector>
+
+#include "../tests.h"
+
+template <class PRE>
+void
+test()
+{
+  unsigned int myid    = Utilities::MPI::this_mpi_process(MPI_COMM_WORLD);
+  unsigned int numproc = Utilities::MPI::n_mpi_processes(MPI_COMM_WORLD);
+
+  deallog << numproc << std::endl;
+
+  // each processor owns 2 indices and all
+  // are ghosting Element 1 (the second)
+
+  IndexSet local_active(numproc * 2);
+  local_active.add_range(myid * 2, myid * 2 + 2);
+  IndexSet local_relevant = local_active;
+  local_relevant.add_range(0, 1);
+
+  DynamicSparsityPattern csp(local_relevant);
+
+  for (unsigned int i = 0; i < 2 * numproc; ++i)
+    if (local_relevant.is_element(i))
+      csp.add(i, i);
+
+  csp.add(0, 1);
+
+
+  PETScWrappers::MPI::SparseMatrix mat;
+  mat.reinit(local_active, local_active, csp, MPI_COMM_WORLD);
+
+  Assert(mat.n() == numproc * 2, ExcInternalError());
+  Assert(mat.m() == numproc * 2, ExcInternalError());
+
+  // set local values
+  mat.set(myid * 2, myid * 2, 1.0 + myid * 2.0);
+  mat.set(myid * 2 + 1, myid * 2 + 1, 2.0 + myid * 2.0);
+
+  mat.compress(VectorOperation::insert);
+
+  {
+    PETScWrappers::MPI::Vector src, dst;
+    src.reinit(local_active, MPI_COMM_WORLD);
+    dst.reinit(local_active, MPI_COMM_WORLD);
+    src(myid * 2) = 1.0;
+    src.compress(VectorOperation::insert);
+
+    PRE pre;
+    pre.initialize(mat);
+    pre.Tvmult(dst, src);
+    dst.print(deallog.get_file_stream());
+
+    mat.add(0, 0, 1.0);
+    mat.compress(VectorOperation::add);
+
+    pre.initialize(mat);
+    pre.Tvmult(dst, src);
+    dst.print(deallog.get_file_stream());
+  }
+
+  if (myid == 0)
+    deallog << "OK" << std::endl;
+}
+
+
+int
+main(int argc, char **argv)
+{
+  Utilities::MPI::MPI_InitFinalize mpi_initialization(argc, argv, 1);
+  MPILogInitAll                    log;
+
+  test<PETScWrappers::PreconditionJacobi>();
+  test<PETScWrappers::PreconditionBlockJacobi>();
+  test<PETScWrappers::PreconditionBoomerAMG>();
+  test<PETScWrappers::PreconditionNone>();
+}
diff --git a/tests/petsc/preconditioner_tvmult_01.with_petsc_with_hypre=true.with_petsc_with_complex=false.mpirun=3.output b/tests/petsc/preconditioner_tvmult_01.with_petsc_with_hypre=true.with_petsc_with_complex=false.mpirun=3.output
new file mode 100644 (file)
index 0000000..fdcc3c7
--- /dev/null
@@ -0,0 +1,45 @@
+
+DEAL:0::3
+[Proc0 0-1] 1.000e+00 0.000e+00 
+[Proc0 0-1] 2.500e-01 0.000e+00 
+DEAL:0::OK
+DEAL:0::3
+[Proc0 0-1] 1.000e+00 0.000e+00 
+[Proc0 0-1] 2.500e-01 0.000e+00 
+DEAL:0::OK
+DEAL:0::3
+[Proc0 0-1] 1.000e+00 0.000e+00 
+[Proc0 0-1] 2.500e-01 0.000e+00 
+DEAL:0::OK
+DEAL:0::3
+[Proc0 0-1] 1.000e+00 0.000e+00 
+[Proc0 0-1] 1.000e+00 0.000e+00 
+DEAL:0::OK
+
+DEAL:1::3
+[Proc1 2-3] 3.333e-01 0.000e+00 
+[Proc1 2-3] 3.333e-01 0.000e+00 
+DEAL:1::3
+[Proc1 2-3] 3.333e-01 0.000e+00 
+[Proc1 2-3] 3.333e-01 0.000e+00 
+DEAL:1::3
+[Proc1 2-3] 3.333e-01 0.000e+00 
+[Proc1 2-3] 3.333e-01 0.000e+00 
+DEAL:1::3
+[Proc1 2-3] 1.000e+00 0.000e+00 
+[Proc1 2-3] 1.000e+00 0.000e+00 
+
+
+DEAL:2::3
+[Proc2 4-5] 2.000e-01 0.000e+00 
+[Proc2 4-5] 2.000e-01 0.000e+00 
+DEAL:2::3
+[Proc2 4-5] 2.000e-01 0.000e+00 
+[Proc2 4-5] 2.000e-01 0.000e+00 
+DEAL:2::3
+[Proc2 4-5] 2.000e-01 0.000e+00 
+[Proc2 4-5] 2.000e-01 0.000e+00 
+DEAL:2::3
+[Proc2 4-5] 1.000e+00 0.000e+00 
+[Proc2 4-5] 1.000e+00 0.000e+00 
+

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.