-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathp3a_memory.hpp
500 lines (450 loc) · 12.7 KB
/
p3a_memory.hpp
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
#pragma once
#include <iterator>
#include "p3a_macros.hpp"
#include "p3a_execution.hpp"
#include "p3a_for_each.hpp"
namespace p3a {
namespace details {
template <class InputIt, class ForwardIt>
class uninitialized_move_functor {
InputIt m_first;
ForwardIt m_d_first;
public:
using difference_type = typename std::iterator_traits<InputIt>::difference_type;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
uninitialized_move_functor(
InputIt first_arg,
ForwardIt d_first_arg)
:m_first(first_arg)
,m_d_first(d_first_arg)
{
}
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(difference_type i) const
{
auto addr = &(m_d_first[i]);
::new (static_cast<void*>(addr)) value_type(std::move(m_first[i]));
}
};
template <class InputIt, class ForwardIt>
class uninitialized_copy_functor {
InputIt m_first;
ForwardIt m_d_first;
public:
using difference_type = typename std::iterator_traits<InputIt>::difference_type;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
uninitialized_copy_functor(
InputIt first_arg,
ForwardIt d_first_arg)
:m_first(first_arg)
,m_d_first(d_first_arg)
{
}
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(difference_type i) const
{
auto addr = &(m_d_first[i]);
::new (static_cast<void*>(addr)) value_type(m_first[i]);
}
};
template <class ForwardIt>
class destroy_functor {
public:
using reference = typename std::iterator_traits<ForwardIt>::reference;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(reference r) const
{
r.~value_type();
}
};
template <class ForwardIt>
class uninitialized_default_construct_functor {
public:
using reference = typename std::iterator_traits<ForwardIt>::reference;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(reference r) const
{
::new (static_cast<void*>(&r)) value_type;
}
};
template <class ForwardIt, class T>
class uninitialized_fill_functor {
T m_value;
public:
uninitialized_fill_functor(T const& value_arg)
:m_value(value_arg)
{
}
using reference = typename std::iterator_traits<ForwardIt>::reference;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(reference r) const
{
::new (static_cast<void*>(&r)) value_type(m_value);
}
};
template <class InputIt, class ForwardIt>
class copy_functor {
InputIt m_first;
ForwardIt m_d_first;
public:
using difference_type = typename std::iterator_traits<InputIt>::difference_type;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
copy_functor(
InputIt first_arg,
ForwardIt d_first_arg)
:m_first(first_arg)
,m_d_first(d_first_arg)
{
}
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(difference_type i) const
{
m_d_first[i] = m_first[i];
}
};
template <class InputIt, class ForwardIt>
class move_functor {
InputIt m_first;
ForwardIt m_d_first;
public:
using difference_type = typename std::iterator_traits<InputIt>::difference_type;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
move_functor(
InputIt first_arg,
ForwardIt d_first_arg)
:m_first(first_arg)
,m_d_first(d_first_arg)
{
}
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(difference_type i) const
{
m_d_first[i] = std::move(m_first[i]);
}
};
template <class ForwardIt, class T>
class fill_functor {
T m_value;
public:
fill_functor(T const& value_arg)
:m_value(value_arg)
{
}
using reference = typename std::iterator_traits<ForwardIt>::reference;
using value_type = typename std::iterator_traits<ForwardIt>::value_type;
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline
void operator()(reference r) const
{
r = m_value;
}
};
}
template <class ExecutionPolicy, class InputIt, class ForwardIt>
P3A_NEVER_INLINE void uninitialized_move(
ExecutionPolicy policy,
InputIt first,
InputIt last,
ForwardIt d_first)
{
using difference_type = typename std::iterator_traits<InputIt>::difference_type;
using functor = details::uninitialized_move_functor<InputIt, ForwardIt>;
p3a::for_each(policy,
counting_iterator<difference_type>(0),
counting_iterator<difference_type>(last - first),
functor(first, d_first));
}
template <class InputIt, class ForwardIt>
P3A_ALWAYS_INLINE inline
void uninitialized_move(
execution::sequenced_policy,
InputIt first,
InputIt const& last,
ForwardIt d_first)
{
for (; first != last; ++first, ++d_first) {
::new (static_cast<void*>(std::addressof(*d_first)))
typename std::iterator_traits<ForwardIt>::value_type(std::move(*first));
}
}
template <class ExecutionPolicy, class InputIt, class ForwardIt>
P3A_NEVER_INLINE void uninitialized_copy(
ExecutionPolicy policy,
InputIt first,
InputIt last,
ForwardIt d_first)
{
using difference_type = typename std::iterator_traits<InputIt>::difference_type;
using functor = details::uninitialized_copy_functor<InputIt, ForwardIt>;
p3a::for_each(policy,
counting_iterator<difference_type>(0),
counting_iterator<difference_type>(last - first),
functor(first, d_first));
}
template <class InputIt, class ForwardIt>
P3A_ALWAYS_INLINE inline
void uninitialized_copy(
execution::sequenced_policy,
InputIt first,
InputIt const& last,
ForwardIt d_first)
{
for (; first != last; ++first, ++d_first) {
::new (static_cast<void*>(std::addressof(*d_first)))
typename std::iterator_traits<ForwardIt>::value_type(*first);
}
}
template <class ExecutionPolicy, class ForwardIt>
P3A_NEVER_INLINE void destroy(
ExecutionPolicy policy,
ForwardIt first,
ForwardIt last)
{
using T = typename std::iterator_traits<ForwardIt>::value_type;
if constexpr (!std::is_trivially_destructible_v<T>) {
p3a::for_each(policy, first, last, details::destroy_functor<ForwardIt>());
}
}
template <class ForwardIt>
P3A_ALWAYS_INLINE inline
void destroy(
execution::sequenced_policy,
ForwardIt first,
ForwardIt const& last)
{
using T = typename std::iterator_traits<ForwardIt>::value_type;
if constexpr (!std::is_trivially_destructible_v<T>) {
for (; first != last; ++first) {
first->~T();
}
}
}
template <class ExecutionPolicy, class ForwardIt>
P3A_NEVER_INLINE void uninitialized_default_construct(
ExecutionPolicy policy,
ForwardIt first,
ForwardIt last)
{
using T = typename std::iterator_traits<ForwardIt>::value_type;
if constexpr (!std::is_trivially_default_constructible_v<T>) {
p3a::for_each(policy, first, last, details::uninitialized_default_construct_functor<ForwardIt>());
}
}
template <class ForwardIt>
P3A_ALWAYS_INLINE inline
void uninitialized_default_construct(
execution::sequenced_policy,
ForwardIt first,
ForwardIt const& last)
{
using T = typename std::iterator_traits<ForwardIt>::value_type;
if constexpr (!std::is_trivially_default_constructible_v<T>) {
for (; first != last; ++first) {
::new (static_cast<void*>(std::addressof(*first))) T;
}
}
}
template <class ExecutionPolicy, class ForwardIt, class T>
P3A_NEVER_INLINE void uninitialized_fill(
ExecutionPolicy policy,
ForwardIt first,
ForwardIt last,
T const& value)
{
p3a::for_each(policy, first, last, details::uninitialized_fill_functor<ForwardIt, T>(value));
}
template <class ForwardIt, class T>
P3A_ALWAYS_INLINE inline
void uninitialized_fill(
execution::sequenced_policy,
ForwardIt first,
ForwardIt const& last,
T const& value)
{
for (; first != last; ++first) {
::new (static_cast<void*>(std::addressof(*first)))
typename std::iterator_traits<ForwardIt>::value_type(value);
}
}
namespace details {
template <class Iterator1, class Iterator2>
bool are_in_same_space(Iterator1, Iterator2) { return true; }
template <class Iterator1, class Iterator2>
void copy_between_spaces(Iterator1, Iterator2, std::size_t)
{
throw std::logic_error("copying between spaces with something other than pointers to the same type");
}
}
#ifdef __CUDACC__
namespace details {
template <class T, class U>
bool are_in_same_space(T* from, U* to)
{
cudaPointerAttributes from_attributes;
cudaPointerAttributes to_attributes;
details::handle_cuda_error(cudaPointerGetAttributes(&from_attributes, from));
details::handle_cuda_error(cudaPointerGetAttributes(&to_attributes, to));
return from_attributes.type == to_attributes.type;
}
template <class T>
void copy_between_spaces(T const* from, T* to, std::size_t n)
{
details::handle_cuda_error(
cudaMemcpy(
to,
from,
sizeof(T) * n,
cudaMemcpyDefault));
}
template <class T>
void copy_between_spaces(T* from, T* to, std::size_t n)
{
copy_between_spaces(static_cast<T const*>(from), to, n);
}
}
#endif
#ifdef __HIPCC__
namespace details {
template <class T, class U>
bool are_in_same_space(T* from, U* to)
{
hipPointerAttribute_t from_attributes;
hipPointerAttribute_t to_attributes;
details::handle_hip_error(hipPointerGetAttributes(&from_attributes, from));
details::handle_hip_error(hipPointerGetAttributes(&to_attributes, to));
return from_attributes.memoryType == to_attributes.memoryType;
}
template <class T>
void copy_between_spaces(T const* from, T* to, std::size_t n)
{
details::handle_hip_error(
hipMemcpy(
to,
from,
sizeof(T) * n,
hipMemcpyDefault));
}
}
#endif
template <class ExecutionPolicy, class ForwardIt1, class ForwardIt2>
P3A_NEVER_INLINE void copy(
ExecutionPolicy policy,
ForwardIt1 first,
ForwardIt1 last,
ForwardIt2 d_first)
{
using value_type = typename std::iterator_traits<ForwardIt2>::value_type;
using difference_type = typename std::iterator_traits<ForwardIt1>::difference_type;
using functor = details::copy_functor<ForwardIt1, ForwardIt2>;
if (details::are_in_same_space(first, d_first)) {
p3a::for_each(policy,
counting_iterator<difference_type>(0),
counting_iterator<difference_type>(last - first),
functor(first, d_first));
} else {
if constexpr (std::is_trivially_copyable_v<value_type>) {
details::copy_between_spaces(first, d_first, std::size_t(last - first));
} else {
throw std::runtime_error("p3a::copy will not copy non-trivially-copyable objects between host and device");
}
}
}
template <class ForwardIt1, class ForwardIt2>
P3A_ALWAYS_INLINE inline constexpr
void copy(
execution::sequenced_policy,
ForwardIt1 first,
ForwardIt1 const& last,
ForwardIt2 d_first)
{
while (first != last) {
*d_first++ = *first++;
}
}
template <class ForwardIt1, class ForwardIt2>
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline constexpr
void copy(
execution::hot_policy,
ForwardIt1 first,
ForwardIt1 const& last,
ForwardIt2 d_first)
{
while (first != last) {
*d_first++ = *first++;
}
}
template <class ExecutionPolicy, class ForwardIt1, class ForwardIt2>
P3A_NEVER_INLINE void move(
ExecutionPolicy policy,
ForwardIt1 first,
ForwardIt1 last,
ForwardIt2 d_first)
{
using difference_type = typename std::iterator_traits<ForwardIt1>::difference_type;
using functor = details::move_functor<ForwardIt1, ForwardIt2>;
p3a::for_each(policy,
counting_iterator<difference_type>(0),
counting_iterator<difference_type>(last - first),
functor(first, d_first));
}
template <class ForwardIt1, class ForwardIt2>
P3A_ALWAYS_INLINE inline constexpr
void move(
execution::sequenced_policy,
ForwardIt1 first,
ForwardIt1 last,
ForwardIt2 d_first)
{
while (first != last) {
*d_first++ = std::move(*first++);
}
}
template <class BidirIt1, class BidirIt2>
P3A_ALWAYS_INLINE inline constexpr
void move_backward(
execution::sequenced_policy,
BidirIt1 const& first,
BidirIt1 last,
BidirIt2 d_last)
{
while (first != last) {
*(--d_last) = std::move(*(--last));
}
}
template <class ExecutionPolicy, class ForwardIt, class T>
P3A_NEVER_INLINE void fill(
ExecutionPolicy policy,
ForwardIt first,
ForwardIt last,
T const& value)
{
using functor = details::fill_functor<ForwardIt, T>;
p3a::for_each(policy, first, last, functor(value));
}
template <class ForwardIt, class T>
P3A_ALWAYS_INLINE inline constexpr
void fill(
execution::sequenced_policy,
ForwardIt first,
ForwardIt const& last,
T const& value)
{
for (; first != last; ++first) {
*first = value;
}
}
template <class ForwardIt, class T>
P3A_ALWAYS_INLINE P3A_HOST_DEVICE inline constexpr
void fill(
execution::hot_policy,
ForwardIt first,
ForwardIt const& last,
T const& value)
{
for (; first != last; ++first) {
*first = value;
}
}
}