1#ifndef _DG_TYPEDEFS_CUH_
2#define _DG_TYPEDEFS_CUH_
3#include <thrust/host_vector.h>
4#include <thrust/device_vector.h>
18using HVec_t = thrust::host_vector<T>;
19using HVec = thrust::host_vector<double>;
20using cHVec = thrust::host_vector<thrust::complex<double>>;
21using iHVec = thrust::host_vector<int>;
22using fHVec = thrust::host_vector<float>;
24using DVec = thrust::device_vector<double>;
25using iDVec = thrust::device_vector<int>;
26using cDVec = thrust::device_vector<thrust::complex<double>>;
27using fDVec = thrust::device_vector<float>;
38template<
class real_type>
40template<
class real_type>
41#if THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_CUDA
87template<
class real_type>
89template<
class real_type>
146#define DG_RANK0 if(rank==0)
thrust::host_vector< float > fHVec
Host Vector.
Definition typedefs.h:22
dg::MPI_Vector< dg::cHVec > cMHVec
MPI Host Vector s.a. dg::cHVec.
Definition typedefs.h:66
thrust::device_vector< int > iDVec
integer Device Vector
Definition typedefs.h:25
dg::MPI_Vector< dg::DVec > MDVec
MPI Device Vector s.a. dg::DVec.
Definition typedefs.h:68
dg::MPISparseBlockMat< thrust::host_vector, dg::HMatrix, dg::CooMat > MHMatrix
MPI Host Matrix for derivatives.
Definition typedefs.h:82
thrust::device_vector< float > fDVec
Device Vector. The device can be an OpenMP parallelized cpu or a gpu. This depends on the value of th...
Definition typedefs.h:27
dg::MPISparseBlockMat< thrust::host_vector, dg::fHMatrix, dg::fCooMat > fMHMatrix
MPI Host Matrix for derivatives.
Definition typedefs.h:83
thrust::device_vector< thrust::complex< double > > cDVec
complex Device Vector
Definition typedefs.h:26
dg::MPI_Vector< dg::HVec > MHVec
MPI Host Vector s.a. dg::HVec.
Definition typedefs.h:65
thrust::device_vector< double > DVec
Device Vector. The device can be an OpenMP parallelized cpu or a gpu. This depends on the value of th...
Definition typedefs.h:24
dg::MPI_Vector< dg::fDVec > fMDVec
MPI Device Vector s.a. dg::fDVec.
Definition typedefs.h:70
thrust::host_vector< int > iHVec
integer Host Vector
Definition typedefs.h:21
dg::MPISparseBlockMat< thrust::device_vector, dg::DMatrix, dg::DCooMat > MDMatrix
MPI Device Matrix for derivatives.
Definition typedefs.h:84
MIHMatrix_t< double > MIHMatrix
Definition typedefs.h:91
thrust::host_vector< thrust::complex< double > > cHVec
complex Host Vector
Definition typedefs.h:20
dg::MPI_Vector< dg::fHVec > fMHVec
MPI Host Vector s.a. dg::fHVec.
Definition typedefs.h:67
thrust::host_vector< T > HVec_t
Host Vector.
Definition typedefs.h:18
dg::MPISparseBlockMat< thrust::device_vector, dg::fDMatrix, dg::fDCooMat > fMDMatrix
MPI Device Matrix for derivatives.
Definition typedefs.h:85
thrust::host_vector< double > HVec
Host Vector.
Definition typedefs.h:19
dg::MPI_Vector< dg::cDVec > cMDVec
MPI Device Vector s.a. dg::cDVec.
Definition typedefs.h:69
MIDMatrix_t< double > MIDMatrix
Definition typedefs.h:92
fMDMatrix fDMatrix
Definition typedefs.h:118
MIDMatrix IDMatrix
Definition typedefs.h:121
MHVec HVec
Definition typedefs.h:106
MIHMatrix IHMatrix
Definition typedefs.h:120
fMHVec fHVec
Definition typedefs.h:108
fMDVec fDVec
Definition typedefs.h:112
fMHMatrix fHMatrix
Definition typedefs.h:116
cMDVec cDVec
Definition typedefs.h:111
MHMatrix HMatrix
Definition typedefs.h:115
cMHVec cHVec
Definition typedefs.h:107
MDVec DVec
Definition typedefs.h:110
MDMatrix DMatrix
Definition typedefs.h:117
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Coo Sparse Block Matrix format.
Definition sparseblockmat.h:228
Ell Sparse Block Matrix format.
Definition sparseblockmat.h:46
A simple wrapper around a container object and an MPI_Comm.
Definition mpi_vector.h:37
Distributed memory matrix class, asynchronous communication.
Definition mpi_matrix.h:395
Distributed memory Sparse block matrix class, asynchronous communication.
Definition mpi_matrix.h:143
A CSR formatted sparse matrix.
Definition sparsematrix.h:96