Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
mpi_prolongation.h
Go to the documentation of this file.
1#pragma once
2
3#include "mpi_projection.h"
4#include "prolongation.h"
5
10namespace dg
11{
12namespace create
13{
16template<class MPITopology, size_t Md, typename = std::enable_if_t< dg::is_vector_v<
17 typename MPITopology::host_vector, MPIVectorTag>>>
19 const MPITopology& g_new, std::array<unsigned,Md> axes)
20{
21 using real_type = typename MPITopology::value_type;
23 g_new.local(), axes); // local rows, local cols
24 return dg::MIHMatrix_t<real_type>( mat);
25}
26
29template<class MPITopology, size_t Md, typename = std::enable_if_t< dg::is_vector_v<
30 typename MPITopology::host_vector, MPIVectorTag>>>
32 std::array<unsigned,Md> axes, const MPITopology& g_old)
33{
34 using real_type = typename MPITopology::value_type;
35 std::vector<MPI_Comm> comms(Md);
36 for( unsigned u=0; u<Md; u++)
37 comms[u] = g_old.comm(axes[u]);
38
40 axes, g_old.local()); // local rows, global cols
41 return { mat, dg::mpi_cart_kron( comms) };
42}
43
46template<class MPITopology, size_t Md, typename = std::enable_if_t< dg::is_vector_v<
47 typename MPITopology::host_vector, MPIVectorTag>>>
49 std::array<unsigned,Md> axes, const MPITopology& g_old)
50{
51 using real_type = typename MPITopology::value_type;
52 std::vector<MPI_Comm> comms(Md);
53 for( unsigned u=0; u<Md; u++)
54 comms[u] = g_old.comm(axes[u]);
55 MPI_Comm new_comm = dg::mpi_cart_kron( comms);
57 axes, g_old.local()); // local rows, global cols
58 return { mat, new_comm };
59}
60}//namespace create
61}//namespace dg
constexpr bool is_vector_v
Utility typedef.
Definition predicate.h:75
dg::MIHMatrix_t< typename MPITopology::value_type > projection(const MPITopology &g_new, const MPITopology &g_old, std::string method="dg")
Create a projection between two grids.
Definition mpi_projection.h:272
MPI_Comm mpi_cart_kron(std::vector< MPI_Comm > comms)
Form a Kronecker product among Cartesian communicators.
Definition mpi_kron.h:178
MPIDistMat< thrust::host_vector, IHMatrix_t< real_type > > MIHMatrix_t
Definition typedefs.h:88
Useful MPI typedefs and overloads of interpolation and projection.
dg::MIHMatrix_t< typename MPITopology::value_type > reduction(std::array< unsigned, Md > axes, const MPITopology &g_old)
Reduction matrix along given axes.
Definition mpi_prolongation.h:31
dg::MIHMatrix_t< typename MPITopology::value_type > prolongation(const MPITopology &g_new, std::array< unsigned, Md > axes)
Prolongation matrix along given axes / Transpose of reduction.
Definition mpi_prolongation.h:18
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Prolongation matrix creation functions.
Distributed memory matrix class, asynchronous communication.
Definition mpi_matrix.h:395
A distributed vector contains a data container and a MPI communicator.
Definition vector_categories.h:52
A CSR formatted sparse matrix.
Definition sparsematrix.h:96