From dba1d97c51d511e5432f270c63df8834d4028ecb Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Mon, 10 Dec 2018 20:30:08 +0000 Subject: [PATCH] Add tests using varying coefficients --- tests/cuda/matrix_free_matrix_vector_06b.cu | 77 ++++++ .../cuda/matrix_free_matrix_vector_06b.output | 7 + tests/cuda/matrix_free_matrix_vector_10a.cu | 255 ++++++++++++++++++ ...h_mpi=true.with_p4est=true.mpirun=1.output | 10 + ...h_mpi=true.with_p4est=true.mpirun=2.output | 10 + 5 files changed, 359 insertions(+) create mode 100644 tests/cuda/matrix_free_matrix_vector_06b.cu create mode 100644 tests/cuda/matrix_free_matrix_vector_06b.output create mode 100644 tests/cuda/matrix_free_matrix_vector_10a.cu create mode 100644 tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=1.output create mode 100644 tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=2.output diff --git a/tests/cuda/matrix_free_matrix_vector_06b.cu b/tests/cuda/matrix_free_matrix_vector_06b.cu new file mode 100644 index 0000000000..30a8465be4 --- /dev/null +++ b/tests/cuda/matrix_free_matrix_vector_06b.cu @@ -0,0 +1,77 @@ +// --------------------------------------------------------------------- +// +// Copyright (C) 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. +// +// --------------------------------------------------------------------- + + +// Same as matrix_free_matrix_vector_06b but uses varying coefficients + +#include + +#include "../tests.h" +#include "create_mesh.h" + +std::ofstream logfile("output"); + +#include "matrix_vector_common.h" + +template +void +test() +{ + if (fe_degree > 1) + return; + Triangulation tria; + create_mesh(tria); + tria.begin_active()->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + typename Triangulation::active_cell_iterator cell, endc; + cell = tria.begin_active(); + endc = tria.end(); + for (; cell != endc; ++cell) + if (cell->center().norm() < 0.5) + cell->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + tria.begin(tria.n_levels() - 1)->set_refine_flag(); + tria.last()->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + tria.refine_global(1); + cell = tria.begin_active(); + for (unsigned int i = 0; i < 10 - 3 * dim; ++i) + { + cell = tria.begin_active(); + endc = tria.end(); + unsigned int counter = 0; + for (; cell != endc; ++cell, ++counter) + if (counter % (7 - i) == 0) + cell->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + } + + FE_Q fe(fe_degree); + DoFHandler dof(tria); + dof.distribute_dofs(fe); + AffineConstraints constraints; + DoFTools::make_hanging_node_constraints(dof, constraints); + VectorTools::interpolate_boundary_values(dof, + 0, + Functions::ZeroFunction(), + constraints); + constraints.close(); + + do_test, + fe_degree + 1>(dof, constraints, tria.n_active_cells(), false); +} diff --git a/tests/cuda/matrix_free_matrix_vector_06b.output b/tests/cuda/matrix_free_matrix_vector_06b.output new file mode 100644 index 0000000000..e9e176a4c1 --- /dev/null +++ b/tests/cuda/matrix_free_matrix_vector_06b.output @@ -0,0 +1,7 @@ + +DEAL:2d::Testing FE_Q<2>(1) +DEAL:2d::Norm of difference: 0 +DEAL:2d:: +DEAL:3d::Testing FE_Q<3>(1) +DEAL:3d::Norm of difference: 0 +DEAL:3d:: diff --git a/tests/cuda/matrix_free_matrix_vector_10a.cu b/tests/cuda/matrix_free_matrix_vector_10a.cu new file mode 100644 index 0000000000..5e4b2c4d5e --- /dev/null +++ b/tests/cuda/matrix_free_matrix_vector_10a.cu @@ -0,0 +1,255 @@ +// --------------------------------------------------------------------- +// +// Copyright (C) 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. +// +// --------------------------------------------------------------------- + + + +// Same test as matrix_free_matrix_vector_10 but using varying coefficient + +#include +#include + +#include + +#include +#include + +#include +#include + +#include +#include + +#include +#include +#include + +#include + +#include + +#include "../tests.h" +#include "matrix_vector_mf.h" + + +template +double +VaryingCoefficient(const Point &p) +{ + return 10. / (0.05 + 2. * p.square()); +} + + +template +void +test() +{ + typedef double Number; + + parallel::distributed::Triangulation tria(MPI_COMM_WORLD); + GridGenerator::hyper_cube(tria); + tria.refine_global(1); + typename Triangulation::active_cell_iterator cell = tria.begin_active(), + endc = tria.end(); + for (; cell != endc; ++cell) + if (cell->is_locally_owned()) + if (cell->center().norm() < 0.2) + cell->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + if (dim < 3 && fe_degree < 2) + tria.refine_global(2); + else + tria.refine_global(1); + if (tria.begin(tria.n_levels() - 1)->is_locally_owned()) + tria.begin(tria.n_levels() - 1)->set_refine_flag(); + if (tria.last()->is_locally_owned()) + tria.last()->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + cell = tria.begin_active(); + for (unsigned int i = 0; i < 10 - 3 * dim; ++i) + { + cell = tria.begin_active(); + unsigned int counter = 0; + for (; cell != endc; ++cell, ++counter) + if (cell->is_locally_owned()) + if (counter % (7 - i) == 0) + cell->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + } + + FE_Q fe(fe_degree); + DoFHandler dof(tria); + dof.distribute_dofs(fe); + + IndexSet owned_set = dof.locally_owned_dofs(); + IndexSet relevant_set; + DoFTools::extract_locally_relevant_dofs(dof, relevant_set); + + AffineConstraints constraints(relevant_set); + DoFTools::make_hanging_node_constraints(dof, constraints); + VectorTools::interpolate_boundary_values(dof, + 0, + Functions::ZeroFunction(), + constraints); + constraints.close(); + + deallog << "Testing " << dof.get_fe().get_name() << std::endl; + + MappingQGeneric mapping(fe_degree); + CUDAWrappers::MatrixFree mf_data; + const QGauss<1> quad(fe_degree + 1); + typename CUDAWrappers::MatrixFree::AdditionalData + additional_data; + additional_data.mapping_update_flags = update_values | update_gradients | + update_JxW_values | + update_quadrature_points; + mf_data.reinit( + mapping, dof, constraints, quad, MPI_COMM_WORLD, additional_data); + + const unsigned int coef_size = + tria.n_locally_owned_active_cells() * std::pow(fe_degree + 1, dim); + MatrixFreeTest> + mf(mf_data, coef_size, false); + LinearAlgebra::distributed::Vector in_dev( + owned_set, MPI_COMM_WORLD); + LinearAlgebra::distributed::Vector out_dev( + owned_set, MPI_COMM_WORLD); + + LinearAlgebra::ReadWriteVector rw_in(owned_set); + for (unsigned int i = 0; i < in_dev.local_size(); ++i) + { + const unsigned int glob_index = owned_set.nth_index_in_set(i); + if (constraints.is_constrained(glob_index)) + continue; + rw_in.local_element(i) = random_value(); + } + in_dev.import(rw_in, VectorOperation::insert); + mf.vmult(out_dev, in_dev); + + LinearAlgebra::distributed::Vector out_host( + owned_set, MPI_COMM_WORLD); + LinearAlgebra::ReadWriteVector rw_out(owned_set); + rw_out.import(out_dev, VectorOperation::insert); + out_host.import(rw_out, VectorOperation::insert); + + // assemble trilinos sparse matrix with + // (\nabla v, \nabla u) + (v, coef * u) for + // reference + LinearAlgebra::distributed::Vector in_host( + owned_set, MPI_COMM_WORLD); + in_host.import(rw_in, VectorOperation::insert); + LinearAlgebra::distributed::Vector ref( + owned_set, MPI_COMM_WORLD); + TrilinosWrappers::SparseMatrix sparse_matrix; + { + TrilinosWrappers::SparsityPattern csp(owned_set, MPI_COMM_WORLD); + DoFTools::make_sparsity_pattern(dof, + csp, + constraints, + true, + Utilities::MPI::this_mpi_process( + MPI_COMM_WORLD)); + csp.compress(); + sparse_matrix.reinit(csp); + } + { + QGauss quadrature_formula(fe_degree + 1); + + FEValues fe_values(dof.get_fe(), + quadrature_formula, + update_values | update_gradients | + update_quadrature_points | update_JxW_values); + + const unsigned int dofs_per_cell = dof.get_fe().dofs_per_cell; + const unsigned int n_q_points = quadrature_formula.size(); + + FullMatrix cell_matrix(dofs_per_cell, dofs_per_cell); + std::vector local_dof_indices(dofs_per_cell); + + typename DoFHandler::active_cell_iterator cell = dof.begin_active(), + endc = dof.end(); + for (; cell != endc; ++cell) + if (cell->is_locally_owned()) + { + cell_matrix = 0; + fe_values.reinit(cell); + + for (unsigned int q_point = 0; q_point < n_q_points; ++q_point) + { + const auto coef = + VaryingCoefficient(fe_values.quadrature_point(q_point)); + for (unsigned int i = 0; i < dofs_per_cell; ++i) + { + for (unsigned int j = 0; j < dofs_per_cell; ++j) + cell_matrix(i, j) += + ((fe_values.shape_grad(i, q_point) * + fe_values.shape_grad(j, q_point) + + coef * fe_values.shape_value(i, q_point) * + fe_values.shape_value(j, q_point)) * + fe_values.JxW(q_point)); + } + } + + cell->get_dof_indices(local_dof_indices); + constraints.distribute_local_to_global(cell_matrix, + local_dof_indices, + sparse_matrix); + } + } + sparse_matrix.compress(VectorOperation::add); + + sparse_matrix.vmult(ref, in_host); + out_host -= ref; + + const double diff_norm = out_host.linfty_norm(); + + deallog << "Norm of difference: " << diff_norm << std::endl << std::endl; +} + + +int +main(int argc, char **argv) +{ + Utilities::MPI::MPI_InitFinalize mpi_initialization( + argc, argv, testing_max_num_threads()); + + unsigned int myid = Utilities::MPI::this_mpi_process(MPI_COMM_WORLD); + deallog.push(Utilities::int_to_string(myid)); + + init_cuda(true); + + if (myid == 0) + { + initlog(); + deallog << std::setprecision(4); + + deallog.push("2d"); + test<2, 1>(); + deallog.pop(); + + deallog.push("3d"); + test<3, 1>(); + test<3, 2>(); + deallog.pop(); + } + else + { + test<2, 1>(); + test<3, 1>(); + test<3, 2>(); + } +} diff --git a/tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=1.output b/tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=1.output new file mode 100644 index 0000000000..3b90478aad --- /dev/null +++ b/tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=1.output @@ -0,0 +1,10 @@ + +DEAL:0:2d::Testing FE_Q<2>(1) +DEAL:0:2d::Norm of difference: 0 +DEAL:0:2d:: +DEAL:0:3d::Testing FE_Q<3>(1) +DEAL:0:3d::Norm of difference: 0 +DEAL:0:3d:: +DEAL:0:3d::Testing FE_Q<3>(2) +DEAL:0:3d::Norm of difference: 0 +DEAL:0:3d:: diff --git a/tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=2.output b/tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=2.output new file mode 100644 index 0000000000..3b90478aad --- /dev/null +++ b/tests/cuda/matrix_free_matrix_vector_10a.with_trilinos=true.with_mpi=true.with_p4est=true.mpirun=2.output @@ -0,0 +1,10 @@ + +DEAL:0:2d::Testing FE_Q<2>(1) +DEAL:0:2d::Norm of difference: 0 +DEAL:0:2d:: +DEAL:0:3d::Testing FE_Q<3>(1) +DEAL:0:3d::Norm of difference: 0 +DEAL:0:3d:: +DEAL:0:3d::Testing FE_Q<3>(2) +DEAL:0:3d::Norm of difference: 0 +DEAL:0:3d:: -- 2.39.5