Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
mpi_datatype.h
Go to the documentation of this file.
1#pragma once
2
3#include <mpi.h>
4#include <complex.h>
5#include <thrust/complex.h>
6
7namespace dg
8{
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;}
27//template<> inline MPI_Datatype getMPIDataType<std::int8_t>(){ return MPI_INT8_T;}
28//template<> inline MPI_Datatype getMPIDataType<std::int16_t>(){ return MPI_INT16_T;}
29//template<> inline MPI_Datatype getMPIDataType<std::int32_t>(){ return MPI_INT32_T;}
30//template<> inline MPI_Datatype getMPIDataType<std::int64_t>(){ return MPI_INT64_T;}
31//template<> inline MPI_Datatype getMPIDataType<std::uint8_t>(){ return MPI_UINT8_T;}
32//template<> inline MPI_Datatype getMPIDataType<std::uint16_t>(){ return MPI_UINT16_T;}
33//template<> inline MPI_Datatype getMPIDataType<std::uint32_t>(){ return MPI_UINT32_T;}
34//template<> inline MPI_Datatype getMPIDataType<std::uint64_t>(){ return MPI_UINT64_T;}
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;}
43}//namespace dg
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...