-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray1d.h
273 lines (222 loc) · 7.32 KB
/
array1d.h
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*
* Copyright 2008-2009 NVIDIA Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*! \file array1d.h
* \brief One-dimensional array
*/
#pragma once
#include <cusp/detail/config.h>
#include <cusp/memory.h>
#include <cusp/format.h>
#include <cusp/exception.h>
#include <thrust/host_vector.h>
#include <thrust/device_vector.h>
#include <thrust/detail/vector_base.h>
namespace cusp
{
// forward definitions
template <typename RandomAccessIterator> class array1d_view;
/*! \addtogroup arrays Arrays
*/
/*! \addtogroup array_containers Array Containers
* \ingroup arrays
* \{
*/
/*! \p array1d : One-dimensional array container
*
* \tparam T value_type of the array
* \tparam MemorySpace memory space of the array (cusp::host_memory or cusp::device_memory)
*
* \TODO example
*/
template <typename T, typename MemorySpace>
class array1d : public thrust::detail::vector_base<T, typename cusp::default_memory_allocator<T, MemorySpace>::type>
{
private:
typedef typename cusp::default_memory_allocator<T, MemorySpace>::type Alloc;
typedef typename thrust::detail::vector_base<T,Alloc> Parent;
public:
typedef MemorySpace memory_space;
typedef cusp::array1d_format format;
template<typename MemorySpace2>
struct rebind { typedef cusp::array1d<T, MemorySpace2> type; };
/*! equivalent container type
*/
typedef typename cusp::array1d<T,MemorySpace> container;
/*! equivalent view type
*/
typedef typename cusp::array1d_view<typename Parent::iterator> view;
/*! equivalent const_view type
*/
typedef typename cusp::array1d_view<typename Parent::const_iterator> const_view;
typedef typename Parent::size_type size_type;
typedef typename Parent::value_type value_type;
array1d(void) : Parent() {}
explicit array1d(size_type n)
: Parent()
{
if(n > 0)
{
Parent::m_storage.allocate(n);
Parent::m_size = n;
}
}
array1d(size_type n, const value_type &value)
: Parent(n, value) {}
template<typename Array>
array1d(const Array& a, typename thrust::detail::enable_if<!thrust::detail::is_convertible<Array,size_type>::value>::type * = 0)
: Parent(a.begin(), a.end()) {}
template<typename InputIterator>
array1d(InputIterator first, InputIterator last)
: Parent(first, last) {}
template<typename Array>
array1d &operator=(const Array& a)
{ Parent::assign(a.begin(), a.end()); return *this; }
// TODO specialize resize()
}; // class array1d
/*! \}
*/
/*! \addtogroup array_views Array Views
* \ingroup arrays
* \{
*/
/*! \p array1d_view : One-dimensional array view
*
* \tparam RandomAccessIterator Underlying iterator type
*
* \TODO example
*/
template <typename RandomAccessIterator>
class array1d_view
{
public:
// what about const_iterator and const_reference?
typedef RandomAccessIterator iterator;
typedef cusp::array1d_format format;
typedef typename thrust::iterator_reference<RandomAccessIterator>::type reference;
typedef typename thrust::iterator_difference<RandomAccessIterator>::type difference_type;
typedef typename thrust::iterator_value<RandomAccessIterator>::type value_type;
#if THRUST_VERSION >= 100600
typedef typename thrust::iterator_system<RandomAccessIterator>::type memory_space;
#else
typedef typename thrust::iterator_space<RandomAccessIterator>::type memory_space;
#endif
typedef typename thrust::iterator_pointer<RandomAccessIterator>::type pointer;
/*! equivalent container type
*/
typedef typename cusp::array1d<value_type,memory_space> container;
/*! equivalent view type
*/
typedef typename cusp::array1d_view<RandomAccessIterator> view;
// is this right?
typedef size_t size_type;
array1d_view(void)
: m_begin(), m_size(0), m_capacity(0) {}
template <typename Array>
explicit array1d_view(Array& a)
: m_begin(a.begin()), m_size(a.size()), m_capacity(a.capacity()) {}
template <typename Array>
explicit array1d_view(const Array& a)
: m_begin(a.begin()), m_size(a.size()), m_capacity(a.capacity()) {}
// should these be templated?
array1d_view(RandomAccessIterator first, RandomAccessIterator last)
: m_begin(first), m_size(last - first), m_capacity(last - first) {}
array1d_view& operator=(const array1d_view& a)
{
m_begin = a.begin();
m_size = a.size();
m_capacity = a.capacity();
return *this;
}
//template <typename Array>
//array1d_view &operator=(Array &a)
//{
// m_begin = a.begin();
// m_size = a.size();
// m_capacity = a.capacity();
// return *this;
//}
reference front(void) const
{
return m_begin[0];
}
reference back(void) const
{
return m_begin[size() - 1];
}
reference operator[](difference_type n) const
{
return m_begin[n];
}
iterator begin(void) const
{
return m_begin;
}
iterator end(void) const
{
return m_begin + m_size;
}
size_type size(void) const
{
return m_size;
}
size_type capacity(void) const
{
return m_capacity;
}
pointer data(void)
{
return &front();
}
// TODO is there any value in supporting the two-argument form?
// i.e. void resize(size_type new_size, value_type x = value_type())
void resize(size_type new_size)
{
if (new_size <= m_capacity)
m_size = new_size;
else
// XXX is not_implemented_exception the right choice?
throw cusp::not_implemented_exception("array1d_view cannot resize() larger than capacity()");
}
protected:
iterator m_begin;
size_type m_size;
size_type m_capacity;
};
/* Convenience functions */
template <typename Iterator>
array1d_view<Iterator> make_array1d_view(Iterator first, Iterator last)
{
return array1d_view<Iterator>(first, last);
}
template <typename Iterator>
array1d_view<Iterator> make_array1d_view(const array1d_view<Iterator>& a)
{
return make_array1d_view(a.begin(), a.end());
}
template <typename T, typename MemorySpace>
typename array1d<T,MemorySpace>::view make_array1d_view(array1d<T,MemorySpace>& a)
{
return make_array1d_view(a.begin(), a.end());
}
template <typename T, typename MemorySpace>
typename array1d<T,MemorySpace>::const_view make_array1d_view(const array1d<T,MemorySpace>& a)
{
return make_array1d_view(a.begin(), a.end());
}
/*! \}
*/
} // end namespace cusp
#include <cusp/detail/array1d.inl>