summaryrefslogtreecommitdiff
path: root/boost/numeric/odeint/external/thrust/thrust_resize.hpp
blob: 8f1b181e25b8abc502a14b198301995e5b92dc03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 [auto_generated]
 boost/numeric/odeint/external/thrust/thrust_resize.hpp

 [begin_description]
 Enable resizing for thrusts device and host_vector.
 [end_description]

 Copyright 2010-2012 Mario Mulansky
 Copyright 2010-2011 Karsten Ahnert

 Distributed under the Boost Software License, Version 1.0.
 (See accompanying file LICENSE_1_0.txt or
 copy at http://www.boost.org/LICENSE_1_0.txt)
 */


#ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_THRUST_THRUST_RESIZE_HPP_INCLUDED
#define BOOST_NUMERIC_ODEINT_EXTERNAL_THRUST_THRUST_RESIZE_HPP_INCLUDED


#include <thrust/device_vector.h>
#include <thrust/host_vector.h>

#include <boost/numeric/odeint/util/copy.hpp>

namespace boost {
namespace numeric {
namespace odeint {

template< class T >
struct is_resizeable< thrust::device_vector< T > >
{
    struct type : public boost::true_type { };
    const static bool value = type::value;
};

template< class T >
struct same_size_impl< thrust::device_vector< T > , thrust::device_vector< T > >
{
    static bool same_size( const thrust::device_vector< T > &x , const thrust::device_vector< T > &y )
    {
        return x.size() == y.size();
    }
};

template< class T >
struct resize_impl< thrust::device_vector< T > , thrust::device_vector< T > >
{
    static void resize( thrust::device_vector< T > &x , const thrust::device_vector< T > &y )
    {
        x.resize( y.size() );
    }
};


template< class T >
struct is_resizeable< thrust::host_vector< T > >
{
    struct type : public boost::true_type { };
    const static bool value = type::value;
};

template< class T >
struct same_size_impl< thrust::host_vector< T > , thrust::host_vector< T > >
{
    static bool same_size( const thrust::host_vector< T > &x , const thrust::host_vector< T > &y )
    {
        return x.size() == y.size();
    }
};

template< class T >
struct resize_impl< thrust::host_vector< T > , thrust::host_vector< T > >
{
    static void resize( thrust::host_vector< T > &x , const thrust::host_vector< T > &y )
    {
        x.resize( y.size() );
    }
};



template< class Container1, class Value >
struct copy_impl< Container1 , thrust::device_vector< Value > >
{
    static void copy( const Container1 &from , thrust::device_vector< Value > &to )
    {
        thrust::copy( boost::begin( from ) , boost::end( from ) , boost::begin( to ) );
    }
};

template< class Value , class Container2 >
struct copy_impl< thrust::device_vector< Value > , Container2 >
{
    static void copy( const thrust::device_vector< Value > &from , Container2 &to )
    {
        thrust::copy( boost::begin( from ) , boost::end( from ) , boost::begin( to ) );
    }
};

template< class Value >
struct copy_impl< thrust::device_vector< Value > , thrust::device_vector< Value > >
{
    static void copy( const thrust::device_vector< Value > &from , thrust::device_vector< Value > &to )
    {
        thrust::copy( boost::begin( from ) , boost::end( from ) , boost::begin( to ) );
    }
};




} // odeint
} // numeric
} // boost


#endif // BOOST_NUMERIC_ODEINT_EXTERNAL_THRUST_THRUST_RESIZE_HPP_INCLUDED