Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
tensor_traits_cusp.h
Go to the documentation of this file.
1#pragma once
2
3#include <cassert>
4#include <cusp/array1d.h>
5#include <cusp/coo_matrix.h>
6#include <cusp/csr_matrix.h>
7#include <cusp/dia_matrix.h>
8#include <cusp/ell_matrix.h>
9#include <cusp/hyb_matrix.h>
10
11#include "vector_categories.h"
12#include "matrix_categories.h"
13#include "tensor_traits.h"
14#include "predicate.h"
15
16namespace dg
17{
18//makes such a long name in class list
20template<class T>
21struct TensorTraits<cusp::array1d<T,cusp::host_memory>,
22 std::enable_if_t< dg::is_scalar<T>::value>>
23{
24 using value_type = T;
25 using tensor_category = CuspVectorTag;
26 using execution_policy = SerialTag;
27};
28// if cpp cusp::device_memory is the same as cusp::host_memory
29#if THRUST_DEVICE_SYSTEM!=THRUST_DEVICE_SYSTEM_CPP
30template<class T>
31struct TensorTraits<cusp::array1d<T,cusp::device_memory>,
32 std::enable_if_t< dg::is_scalar<T>::value>>
33{
34 using value_type = T;
35 using tensor_category = CuspVectorTag;
36#if THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_CUDA
37 using execution_policy = CudaTag ;
38#elif THRUST_DEVICE_SYSTEM==THRUST_DEVICE_SYSTEM_OMP
39 using execution_policy = OmpTag ;
40#endif
41};
42#endif
46
47template< class I, class V, class M>
48struct TensorTraits< cusp::coo_matrix<I,V,M> >
49{
50 using value_type = V;
52};
53template< class I, class V, class M>
54struct TensorTraits< cusp::csr_matrix<I,V,M> >
55{
56 using value_type = V;
58};
59template< class I, class V, class M>
60struct TensorTraits< cusp::dia_matrix<I,V,M> >
61{
62 using value_type = V;
64};
65template< class I, class V, class M>
66struct TensorTraits< cusp::ell_matrix<I,V,M> >
67{
68 using value_type = V;
70};
71template< class I, class V, class M>
72struct TensorTraits< cusp::hyb_matrix<I,V,M> >
73{
74 using value_type = V;
76};
77
79
80} //namespace dg
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
One of cusp's matrices, for these only the blas2 transfer and the symv( m,x,y) are implemented.
Definition matrix_categories.h:29
V value_type
Definition tensor_traits_cusp.h:50
V value_type
Definition tensor_traits_cusp.h:56
V value_type
Definition tensor_traits_cusp.h:62
V value_type
Definition tensor_traits_cusp.h:68
V value_type
Definition tensor_traits_cusp.h:74
The vector traits.
Definition tensor_traits.h:38
NoPolicyTag execution_policy
Definition tensor_traits.h:41
NotATensorTag tensor_category
Definition tensor_traits.h:40
void value_type
Definition tensor_traits.h:39