3#include <thrust/host_vector.h>
4#include <thrust/device_vector.h>
5#include <thrust/complex.h>
40#if THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_CUDA
42#elif THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_OMP
64struct ThrustTag<SerialTag>
66 using thrust_tag = thrust::cpp::tag;
68#if THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_CUDA
70struct ThrustTag<CudaTag>
72 using thrust_tag = thrust::cuda::tag;
74#elif THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_OMP
76struct ThrustTag<OmpTag>
78 using thrust_tag = thrust::omp::tag;
82using get_thrust_tag =
typename ThrustTag<get_execution_policy<Vector>>::thrust_tag;
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