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)
21 using real_type =
typename MPITopology::value_type;
29template<
class MPITopology,
size_t Md,
typename = std::enable_if_t<
dg::is_vector_v<
32 std::array<unsigned,Md> axes,
const MPITopology& g_old)
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]);
46template<
class MPITopology,
size_t Md,
typename = std::enable_if_t<
dg::is_vector_v<
49 std::array<unsigned,Md> axes,
const MPITopology& g_old)
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]);
58 return { mat, new_comm };
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