#include <thrust/host_vector.h>
#include <thrust/device_vector.h>
#include "dg/backend/blas1_dispatch_shared.h"
#include "dg/backend/view.h"
#include "dg/blas1.h"
#include "grid.h"
#include "dg/backend/mpi_vector.h"
#include "mpi_grid.h"
#include "mpi_evaluation.h"
Go to the source code of this file.
|
namespace | dg |
| This is the namespace for all functions and classes defined and used by the discontinuous Galerkin library.
|
|
|
template<class SharedContainer , class real_type > |
void | dg::split (SharedContainer &in, std::vector< View< SharedContainer > > &out, const aRealTopology3d< real_type > &grid) |
| Split a vector into planes along the last dimension (fast version)
|
|
template<class SharedContainer , class real_type > |
std::vector< View< SharedContainer > > | dg::split (SharedContainer &in, const aRealTopology3d< real_type > &grid) |
| Split a vector into planes along the last dimension (construct version)
|
|
template<class Container , class host_vector , class Topology > |
void | dg::assign3dfrom2d (const host_vector &in2d, Container &out, const Topology &grid) |
| Construct a 3d vector given a 2d host vector.
|
|
template<class MPIContainer , class real_type > |
void | dg::split (MPIContainer &in, std::vector< get_mpi_view_type< MPIContainer > > &out, const aRealMPITopology3d< real_type > &grid) |
| MPI Version of split (fast version)
|
|
template<class MPIContainer , class real_type > |
std::vector< get_mpi_view_type< MPIContainer > > | dg::split (MPIContainer &in, const aRealMPITopology3d< real_type > &grid) |
| MPI Version of split (construct version)
|
|