Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
typedefs.h
Go to the documentation of this file.
1#ifndef _DG_TYPEDEFS_CUH_
2#define _DG_TYPEDEFS_CUH_
3#include <thrust/host_vector.h>
4#include <thrust/device_vector.h>
5#include "sparseblockmat.h"
6#include "sparsematrix.h"
7
12namespace dg{
13
16//vectors
17template<class T>
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>;
23
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>;
28
29//derivative matrices
30template<class T>
36
37// Interpolation matrices
38template<class real_type>
40template<class real_type>
41#if THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_CUDA
42//Ell matrix can be almost 3x faster than csr for GPU
43//However, sometimes matrices contain outlier rows that do not fit in ell
45#else
46// csr matrix can be much faster than ell for CPU (we have our own symv implementation!)
48#endif
51
53}//namespace dg
54
55#ifdef MPI_VERSION
56#include "mpi_vector.h"
57#include "mpi_matrix.h"
58
59namespace dg{
62//using MPI_Vector<thrust::device_vector<double> > MDVec; //!< MPI Device Vector s.a. dg::DVec
63template<class T>
71
72// TODO These may be private
73template< class T>
79
80template<class T>
86
87template<class real_type>
89template<class real_type>
93
94
96}//namespace dg
97#endif //MPI_VERSION
98
99//MPI-independent definitions
100namespace dg{
103//vectors
104namespace x{
105#ifdef MPI_VERSION
106using HVec = MHVec;
107using cHVec = cMHVec;
108using fHVec = fMHVec;
109
110using DVec = MDVec;
111using cDVec = cMDVec;
112using fDVec = fMDVec;
113
114//derivative matrices
119//interpolation matrices
122#else
123using HVec = HVec;
124using cHVec = cHVec;
125using fHVec = fHVec;
126
127using DVec = DVec;
128using cDVec = cDVec;
129using fDVec = fDVec;
130
131//derivative matrices
132using HMatrix = HMatrix;
133using fHMatrix = fHMatrix;
134using DMatrix = DMatrix;
135using fDMatrix = fDMatrix;
136//interpolation matrices
137using IHMatrix = IHMatrix;
138using IDMatrix = IDMatrix;
139#endif //MPI_VERSION
140}//namespace x
142}//namespace dg
143
145#ifdef MPI_VERSION
146#define DG_RANK0 if(rank==0)
147#else //MPI_VERSION
148#define DG_RANK0
149#endif //MPI_VERSION
150
151#endif//_DG_TYPEDEFS_CUH_
@ x
x direction
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
MPI matrix classes.
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