Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
split_and_join.h
Go to the documentation of this file.
1#pragma once
2#include <thrust/host_vector.h>
3#include <thrust/device_vector.h>
4#include "dg/backend/blas1_dispatch_shared.h"
5#include "dg/backend/view.h"
6#include "dg/blas1.h"
7#include "grid.h"
8#ifdef MPI_VERSION
10#include "mpi_grid.h"
11#include "mpi_evaluation.h"
12#endif //MPI_VERSION
13
14namespace dg
15{
16 // TODO The only place this is tested implicitly is in fieldaligned and mpi_fieldaligned ?!
17 // And in elliptic_mpib
18
21
31template<class SharedContainer, class real_type>
32void split( SharedContainer& in, std::vector<View<SharedContainer>>& out, const aRealTopology3d<real_type>& grid)
33{
34 assert( out.size() == grid.shape(2));
35 unsigned size2d=grid.shape(0)*grid.shape(1);
36 for(unsigned i=0; i<grid.shape(2); i++)
37 out[i].construct( thrust::raw_pointer_cast(in.data()) + i*size2d, size2d);
38}
39
48template<class SharedContainer, class real_type>
49std::vector<View<SharedContainer>> split( SharedContainer& in, const aRealTopology3d<real_type>& grid)
50{
51 std::vector<View<SharedContainer>> out;
52 unsigned size2d=grid.shape(0)*grid.shape(1);
53 out.resize( grid.shape(2));
54 for(unsigned i=0; i<grid.shape(2); i++)
55 out[i].construct( thrust::raw_pointer_cast(in.data()) + i*size2d, size2d);
56 return out;
57}
58
70template<class Container, class host_vector, class Topology>
71void assign3dfrom2d( const host_vector& in2d, Container&
72 out, const Topology& grid)
73{
74 out = dg::construct<Container>(dg::kronecker ( dg::cooX2d, in2d, grid.abscissas(2)));
75}
76
77
78#ifdef MPI_VERSION
79
80template<class MPIContainer>
82 std::conditional_t< std::is_const<MPIContainer>::value,
85
98template<class MPIContainer, class real_type>
99void split( MPIContainer& in, std::vector<get_mpi_view_type<MPIContainer> >&
100 out, const aRealMPITopology3d<real_type>& grid)
101{
102 //local size2d
103 RealGrid3d<real_type> l = grid.local();
104 unsigned size2d=l.shape(0)*l.shape(1);
105 for(unsigned i=0; i<l.shape(2); i++)
106 {
107 out[i].data().construct( thrust::raw_pointer_cast(in.data().data()) +
108 i*size2d, size2d);
109 }
110}
120template< class MPIContainer, class real_type>
121std::vector<get_mpi_view_type<MPIContainer> > split(
122 MPIContainer& in, const aRealMPITopology3d<real_type>& grid)
123{
124 std::vector<get_mpi_view_type<MPIContainer>> out;
125 int result;
126 MPI_Comm_compare( in.communicator(), grid.communicator(), &result);
127 assert( result == MPI_CONGRUENT || result == MPI_IDENT);
128 MPI_Comm planeComm = grid.get_perp_comm();
129 //local size2d
130 RealGrid3d<real_type> l = grid.local();
131 unsigned size2d=l.shape(0)*l.shape(1);
132 out.resize( l.shape(2));
133 for(unsigned i=0; i<l.shape(2); i++)
134 {
135 out[i].data().construct( thrust::raw_pointer_cast(in.data().data())
136 + i*size2d, size2d);
137 out[i].set_communicator( planeComm);
138 }
139 return out;
140}
141
142#endif //MPI_VERSION
143
145}//namespace dg
base topology classes
DG_DEVICE double cooX2d(double x, double y)
Definition functions.h:62
auto kronecker(Functor &&f, const ContainerType &x0, const ContainerTypes &... xs)
Memory allocating version of dg::blas1::kronecker
Definition blas1.h:857
ContainerType construct(const from_ContainerType &from, Params &&... ps)
Generic way to construct an object of ContainerType given a from_ContainerType object and optional ad...
Definition blas1.h:792
void assign3dfrom2d(const host_vector &in2d, Container &out, const Topology &grid)
Construct a 3d vector given a 2d host vector.
Definition split_and_join.h:71
void split(SharedContainer &in, std::vector< View< SharedContainer > > &out, const aRealTopology3d< real_type > &grid)
Split a vector into planes along the last dimension (fast version)
Definition split_and_join.h:32
std::conditional_t< std::is_const< MPIContainer >::value, MPI_Vector< View< const typename MPIContainer::container_type > >, MPI_Vector< View< typename MPIContainer::container_type > > > get_mpi_view_type
Definition split_and_join.h:81
Function discretization routines for mpi vectors.
MPI Grid objects.
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
A simple wrapper around a container object and an MPI_Comm.
Definition mpi_vector.h:37
The simplest implementation of aRealTopology.
Definition grid.h:710
A vector view class, usable in dg functions.
Definition view.h:45
An abstract base class for MPI distributed Nd-dimensional dG grids.
Definition mpi_grid.h:91
MPI_Comm communicator() const
Return Nd dimensional MPI cartesian communicator that is used in this grid.
Definition mpi_grid.h:248
std::enable_if_t<(Md >=2), MPI_Comm > get_perp_comm() const
MPI Cartesian communicator in the first two dimensions (x and y)
Definition mpi_grid.h:255
const RealGrid< real_type, Nd > & local() const
The local grid as a shared memory grid.
Definition mpi_grid.h:274
An abstract base class for Nd-dimensional dG grids.
Definition grid.h:95
unsigned shape(unsigned u=0) const
the total number of points of an axis
Definition grid.h:114