5#include <thrust/complex.h>
10template<
class value_type>
11inline MPI_Datatype getMPIDataType(){ assert(
false &&
"Type not supported!\n" );
return MPI_DATATYPE_NULL; }
12template<>
inline MPI_Datatype getMPIDataType<char>(){
return MPI_CHAR;}
13template<>
inline MPI_Datatype getMPIDataType<signed char>(){
return MPI_SIGNED_CHAR;}
14template<>
inline MPI_Datatype getMPIDataType<unsigned char>(){
return MPI_UNSIGNED_CHAR;}
15template<>
inline MPI_Datatype getMPIDataType<wchar_t>(){
return MPI_WCHAR;}
16template<>
inline MPI_Datatype getMPIDataType<signed short>(){
return MPI_SHORT;}
17template<>
inline MPI_Datatype getMPIDataType<unsigned short>(){
return MPI_UNSIGNED_SHORT;}
18template<>
inline MPI_Datatype getMPIDataType<int>(){
return MPI_INT;}
19template<>
inline MPI_Datatype getMPIDataType<unsigned int>(){
return MPI_UNSIGNED;}
20template<>
inline MPI_Datatype getMPIDataType<signed long int>(){
return MPI_LONG;}
21template<>
inline MPI_Datatype getMPIDataType<unsigned long int>(){
return MPI_UNSIGNED_LONG;}
22template<>
inline MPI_Datatype getMPIDataType<signed long long int>(){
return MPI_LONG_LONG;}
23template<>
inline MPI_Datatype getMPIDataType<unsigned long long int>(){
return MPI_UNSIGNED_LONG_LONG;}
24template<>
inline MPI_Datatype getMPIDataType<float>(){
return MPI_FLOAT;}
25template<>
inline MPI_Datatype getMPIDataType<double>(){
return MPI_DOUBLE;}
26template<>
inline MPI_Datatype getMPIDataType<long double>(){
return MPI_LONG_DOUBLE;}
35template<>
inline MPI_Datatype getMPIDataType<bool>(){
return MPI_C_BOOL;}
36template<>
inline MPI_Datatype getMPIDataType<std::complex<float>>(){
return MPI_C_COMPLEX;}
37template<>
inline MPI_Datatype getMPIDataType<std::complex<double>>(){
return MPI_C_DOUBLE_COMPLEX;}
38template<>
inline MPI_Datatype getMPIDataType<std::complex<long double>>(){
return MPI_C_LONG_DOUBLE_COMPLEX;}
39template<>
inline MPI_Datatype getMPIDataType<thrust::complex<float>>(){
return MPI_C_COMPLEX;}
40template<>
inline MPI_Datatype getMPIDataType<thrust::complex<double>>(){
return MPI_C_DOUBLE_COMPLEX;}
41template<>
inline MPI_Datatype getMPIDataType<thrust::complex<long double>>(){
return MPI_C_LONG_DOUBLE_COMPLEX;}
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...