Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
mpi_vector.h
Go to the documentation of this file.
1#pragma once
2
3#include <cassert>
4#include <thrust/host_vector.h>
5#include <thrust/gather.h>
6#include "exceptions.h"
7#include "tensor_traits.h"
8#include "blas1_dispatch_shared.h"
9#include "mpi_datatype.h"
10#include "memory.h"
11#include "config.h"
12
13namespace dg
14{
15
35template<class container>
37{
38 using container_type = container;
39
42 : m_comm ( MPI_COMM_NULL)
43 {
44 }
51 MPI_Vector( container data, MPI_Comm comm)
52 : m_data( data), m_comm(comm)
53 {
54 }
55
64 template<class OtherContainer>
66 : m_data( src.data()), m_comm(src.communicator())
67 {
68 }
69
72 const container& data() const {return m_data;}
73
76 container& data() {return m_data;}
77
80 MPI_Comm communicator() const{return m_comm;}
81
87 void set_communicator(MPI_Comm comm)
88 {
89 m_comm = comm;
90 }
91
94 unsigned size() const{return m_data.size();}
95
98 void swap( MPI_Vector& src)
99 {
100 m_data.swap(src.m_data);
101 std::swap( m_comm , src.m_comm);
102 }
105 {
106 //free function as required by the std to be swappable
107 //https://en.cppreference.com/w/cpp/named_req/Swappable
108 //even though with move assignments std::swap also works as fast
109 first.swap(second);
110 }
111 private:
112 container m_data;
113 MPI_Comm m_comm;
114
115};
116
119
121template<class container>
128
129}//namespace dg
Error classes or the dg library.
typename TensorTraits< std::decay_t< Vector > >::execution_policy get_execution_policy
Definition tensor_traits.h:49
typename TensorTraits< std::decay_t< Vector > >::value_type get_value_type
Definition tensor_traits.h:45
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
friend void swap(MPI_Vector< container > &first, MPI_Vector< container > &second)
Definition mpi_vector.h:104
MPI_Vector()
no data is allocated, communicator is MPI_COMM_NULL
Definition mpi_vector.h:41
const container & data() const
Get underlying data.
Definition mpi_vector.h:72
MPI_Vector(const MPI_Vector< OtherContainer > &src)
Conversion operator.
Definition mpi_vector.h:65
container & data()
Set underlying data.
Definition mpi_vector.h:76
MPI_Comm communicator() const
Get the communicator to which this vector belongs.
Definition mpi_vector.h:80
MPI_Vector(container data, MPI_Comm comm)
construct a vector
Definition mpi_vector.h:51
container container_type
typedef to acces underlying container
Definition mpi_vector.h:38
void set_communicator(MPI_Comm comm)
Set the communicator.
Definition mpi_vector.h:87
unsigned size() const
Return the size of the data object.
Definition mpi_vector.h:94
void swap(MPI_Vector &src)
Swap data and communicator.
Definition mpi_vector.h:98
A distributed vector contains a data container and a MPI communicator.
Definition vector_categories.h:52
get_value_type< container > value_type
Definition mpi_vector.h:123
get_execution_policy< container > execution_policy
Definition mpi_vector.h:125
The vector traits.
Definition tensor_traits.h:38