Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
tensor_traits_thrust.h
Go to the documentation of this file.
1#pragma once
2
3#include <thrust/host_vector.h>
4#include <thrust/device_vector.h>
5#include <thrust/complex.h>
6#include "vector_categories.h"
7#include "tensor_traits.h"
9
10namespace dg
11{
14
16template<class T>
17struct TensorTraits<thrust::host_vector<T>> //, std::enable_if_t< dg::is_scalar<T>::value>>
18{
19 using value_type = T;
22};
25//template<class T>
26//struct TensorTraits<thrust::host_vector<T>,
27// std::enable_if_t< !dg::is_scalar<T>::value>>
28//{
29// using value_type = get_value_type<T>;
30// using tensor_category = RecursiveVectorTag;
31// using execution_policy = get_execution_policy<T>;
32//};
33
35template<class T>
36struct TensorTraits<thrust::device_vector<T> >
37{
38 using value_type = T;
40#if THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_CUDA
42#elif THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_OMP
43 using execution_policy = OmpTag ;
44#else
46#endif
47};
48
49template<class T>
50struct TensorTraits<thrust::complex<T>>
51{
52 using value_type = thrust::complex<T>;
55};
58//thrust::cpp is an alias for thrust::system::cpp
59//tag is a class deriving from thrust::execution_policy<tag>
60//raw pointers have the std::random_access_iterator_tag as iterator_category in thrust
61template<class Tag>
62struct ThrustTag { };
63template <>
64struct ThrustTag<SerialTag>
65{
66 using thrust_tag = thrust::cpp::tag;
67};
68#if THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_CUDA
69template <>
70struct ThrustTag<CudaTag>
71{
72 using thrust_tag = thrust::cuda::tag;
73};
74#elif THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_OMP
75template <>
76struct ThrustTag<OmpTag>
77{
78 using thrust_tag = thrust::omp::tag;
79};
80#endif
81template<class Vector>
82using get_thrust_tag = typename ThrustTag<get_execution_policy<Vector>>::thrust_tag;
83
85} //namespace dg
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Execution Policy base class.
Definition execution_policy.h:18
complex number type
Definition scalar_categories.h:21
CUDA implementation.
Definition execution_policy.h:27
OpenMP parallel execution.
Definition execution_policy.h:28
Indicate sequential execution.
Definition execution_policy.h:26
thrust::complex< T > value_type
Definition tensor_traits_thrust.h:52
T value_type
Definition tensor_traits_thrust.h:38
T value_type
Definition tensor_traits_thrust.h:19
The vector traits.
Definition tensor_traits.h:38
Indicate thrust/std - like behaviour.
Definition vector_categories.h:88