forked from taskflow/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerge.hpp
More file actions
585 lines (484 loc) · 17.2 KB
/
Copy pathmerge.hpp
File metadata and controls
585 lines (484 loc) · 17.2 KB
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
#pragma once
#include "../cudaflow.hpp"
/**
@file taskflow/cuda/algorithm/merge.hpp
@brief CUDA merge algorithm include file
*/
namespace tf::detail {
/**
@private
@brief merge bound type
*/
enum class cudaMergeBoundType {
LOWER,
UPPER
};
/** @private */
template<typename T, unsigned N>
struct cudaMergePair {
cudaArray<T, N> keys;
cudaArray<unsigned, N> indices;
};
/** @private */
struct cudaMergeRange {
unsigned a_begin, a_end, b_begin, b_end;
__device__ unsigned a_count() const { return a_end - a_begin; }
__device__ unsigned b_count() const { return b_end - b_begin; }
__device__ unsigned total() const { return a_count() + b_count(); }
__device__ cudaRange a_range() const {
return cudaRange { a_begin, a_end };
}
__device__ cudaRange b_range() const {
return cudaRange { b_begin, b_end };
}
__device__ cudaMergeRange to_local() const {
return cudaMergeRange { 0, a_count(), a_count(), total() };
}
// Partition from mp to the end.
__device__ cudaMergeRange partition(unsigned mp0, unsigned diag) const {
return cudaMergeRange { a_begin + mp0, a_end, b_begin + diag - mp0, b_end };
}
// Partition from mp0 to mp1.
__device__ cudaMergeRange partition(unsigned mp0, unsigned diag0,
unsigned mp1, unsigned diag1) const {
return cudaMergeRange {
a_begin + mp0,
a_begin + mp1,
b_begin + diag0 - mp0,
b_begin + diag1 - mp1
};
}
__device__ bool a_valid() const {
return a_begin < a_end;
}
__device__ bool b_valid() const {
return b_begin < b_end;
}
};
/** @private */
template<
cudaMergeBoundType bounds = cudaMergeBoundType::LOWER,
typename a_keys_it, typename b_keys_it, typename comp_t
>
__device__ auto cuda_merge_path(
a_keys_it a_keys, unsigned a_count,
b_keys_it b_keys, unsigned b_count,
unsigned diag, comp_t comp
) {
unsigned beg = (diag > b_count) ? diag - b_count : 0;
unsigned end = diag < a_count ? diag : a_count;
while(beg < end) {
auto mid = (beg + end) / 2;
auto a_key = a_keys[mid];
auto b_key = b_keys[diag - 1 - mid];
bool pred = (cudaMergeBoundType::UPPER == bounds) ?
comp(a_key, b_key) :
!comp(b_key, a_key);
if(pred) beg = mid + 1;
else end = mid;
}
return beg;
}
/** @private */
template<cudaMergeBoundType bounds, typename keys_it, typename comp_t>
__device__ auto cuda_merge_path(
keys_it keys, cudaMergeRange range, unsigned diag, comp_t comp
) {
return cuda_merge_path<bounds>(
keys + range.a_begin, range.a_count(),
keys + range.b_begin, range.b_count(),
diag, comp);
}
/** @private */
template<cudaMergeBoundType bounds, bool range_check, typename T, typename comp_t>
__device__ bool cuda_merge_predicate(
T a_key, T b_key, cudaMergeRange range, comp_t comp
) {
bool p;
if(range_check && !range.a_valid()) {
p = false;
}
else if(range_check && !range.b_valid()) {
p = true;
}
else {
p = (cudaMergeBoundType::UPPER == bounds) ? comp(a_key, b_key) :
!comp(b_key, a_key);
}
return p;
}
/** @private */
inline __device__ auto cuda_compute_merge_range(
unsigned a_count, unsigned b_count,
unsigned partition, unsigned spacing,
unsigned mp0, unsigned mp1
) {
auto diag0 = spacing * partition;
auto diag1 = min(a_count + b_count, diag0 + spacing);
return cudaMergeRange { mp0, mp1, diag0 - mp0, diag1 - mp1 };
}
/**
@private
Specialization that emits just one LD instruction. Can only reliably used
with raw pointer types. Fixed not to use pointer arithmetic so that
we don't get undefined behaviors with unaligned types.
*/
template<unsigned nt, unsigned vt, typename T>
__device__ auto cuda_load_two_streams_reg(
const T* a, unsigned a_count, const T* b, unsigned b_count, unsigned tid
) {
b -= a_count;
cudaArray<T, vt> x;
cuda_strided_iterate<nt, vt>([&](auto i, auto index) {
const T* p = (index >= a_count) ? b : a;
x[i] = p[index];
}, tid, a_count + b_count);
return x;
}
/** @private */
template<unsigned nt, unsigned vt, typename T, typename a_it, typename b_it>
__device__
std::enable_if_t<
!(std::is_pointer<a_it>::value && std::is_pointer<b_it>::value),
cudaArray<T, vt>
> load_two_streams_reg(a_it a, unsigned a_count, b_it b, unsigned b_count, unsigned tid) {
b -= a_count;
cudaArray<T, vt> x;
cuda_strided_iterate<nt, vt>([&](auto i, auto index) {
x[i] = (index < a_count) ? a[index] : b[index];
}, tid, a_count + b_count);
return x;
}
/** @private */
template<unsigned nt, unsigned vt, typename A, typename B, typename T, unsigned S>
__device__ void cuda_load_two_streams_shared(A a, unsigned a_count,
B b, unsigned b_count, unsigned tid, T (&shared)[S], bool sync = true
) {
// Load into register then make an unconditional strided store into memory.
auto x = cuda_load_two_streams_reg<nt, vt, T>(a, a_count, b, b_count, tid);
cuda_reg_to_shared_strided<nt>(x, tid, shared, sync);
}
/** @private */
template<unsigned nt, unsigned vt, typename T>
__device__ auto cuda_gather_two_streams_strided(const T* a,
unsigned a_count, const T* b, unsigned b_count, cudaArray<unsigned, vt> indices,
unsigned tid) {
ptrdiff_t b_offset = b - a - a_count;
auto count = a_count + b_count;
cudaArray<T, vt> x;
cuda_strided_iterate<nt, vt>([&](auto i, auto j) {
ptrdiff_t gather = indices[i];
if(gather >= a_count) gather += b_offset;
x[i] = a[gather];
}, tid, count);
return x;
}
/** @private */
template<unsigned nt, unsigned vt, typename T, typename a_it, typename b_it>
__device__
std::enable_if_t<
!(std::is_pointer<a_it>::value && std::is_pointer<b_it>::value),
cudaArray<T, vt>
> cuda_gather_two_streams_strided(a_it a,
unsigned a_count, b_it b, unsigned b_count, cudaArray<unsigned, vt> indices, unsigned tid) {
b -= a_count;
cudaArray<T, vt> x;
cuda_strided_iterate<nt, vt>([&](auto i, auto j) {
x[i] = (indices[i] < a_count) ? a[indices[i]] : b[indices[i]];
}, tid, a_count + b_count);
return x;
}
/** @private */
template<unsigned nt, unsigned vt, typename a_it, typename b_it, typename c_it>
__device__ void cuda_transfer_two_streams_strided(
a_it a, unsigned a_count, b_it b, unsigned b_count,
cudaArray<unsigned, vt> indices, unsigned tid, c_it c
) {
using T = typename std::iterator_traits<a_it>::value_type;
auto x = cuda_gather_two_streams_strided<nt, vt, T>(
a, a_count, b, b_count, indices, tid
);
cuda_reg_to_mem_strided<nt>(x, tid, a_count + b_count, c);
}
/**
@private
This function must be able to dereference keys[a_begin] and keys[b_begin],
no matter the indices for each. The caller should allocate at least
nt * vt + 1 elements for
*/
template<cudaMergeBoundType bounds, unsigned vt, typename T, typename comp_t>
__device__ auto cuda_serial_merge(
const T* keys_shared, cudaMergeRange range, comp_t comp, bool sync = true
) {
auto a_key = keys_shared[range.a_begin];
auto b_key = keys_shared[range.b_begin];
cudaMergePair<T, vt> merge_pair;
cuda_iterate<vt>([&](auto i) {
bool p = cuda_merge_predicate<bounds, true>(a_key, b_key, range, comp);
auto index = p ? range.a_begin : range.b_begin;
merge_pair.keys[i] = p ? a_key : b_key;
merge_pair.indices[i] = index;
T c_key = keys_shared[++index];
if(p) a_key = c_key, range.a_begin = index;
else b_key = c_key, range.b_begin = index;
});
if(sync) __syncthreads();
return merge_pair;
}
/**
@private
Load arrays a and b from global memory and merge unsignedo register.
*/
template<cudaMergeBoundType bounds,
unsigned nt, unsigned vt,
typename a_it, typename b_it, typename T, typename comp_t, unsigned S
>
__device__ auto block_merge_from_mem(
a_it a, b_it b, cudaMergeRange range_mem, unsigned tid, comp_t comp, T (&keys_shared)[S]
) {
static_assert(S >= nt * vt + 1,
"block_merge_from_mem requires temporary storage of at "
"least nt * vt + 1 items");
// Load the data into shared memory.
cuda_load_two_streams_shared<nt, vt>(
a + range_mem.a_begin, range_mem.a_count(),
b + range_mem.b_begin, range_mem.b_count(),
tid, keys_shared, true
);
// Run a merge path to find the start of the serial merge for each thread.
auto range_local = range_mem.to_local();
auto diag = vt * tid;
auto mp = cuda_merge_path<bounds>(keys_shared, range_local, diag, comp);
// Compute the ranges of the sources in shared memory. The end iterators
// of the range are inaccurate, but still facilitate exact merging, because
// only vt elements will be merged.
auto merged = cuda_serial_merge<bounds, vt>(
keys_shared, range_local.partition(mp, diag), comp
);
return merged;
};
/** @private */
template<cudaMergeBoundType bounds,
typename P, typename a_keys_it, typename b_keys_it, typename comp_t
>
void cuda_merge_path_partitions(
P&& p,
a_keys_it a, unsigned a_count,
b_keys_it b, unsigned b_count,
unsigned spacing,
comp_t comp,
unsigned* buf
) {
//int num_partitions = (int)div_up(a_count + b_count, spacing) + 1;
unsigned num_partitions = (a_count + b_count + spacing - 1) / spacing + 1;
const unsigned nt = 128;
const unsigned vt = 1;
const unsigned nv = nt * vt;
unsigned B = (num_partitions + nv - 1) / nv; // nt = 128, vt = 1
cuda_kernel<<<B, nt, 0, p.stream()>>>([=]__device__(auto tid, auto bid) {
auto range = cuda_get_tile(bid, nt * vt, num_partitions);
cuda_strided_iterate<nt, vt>([=](auto, auto j) {
auto index = range.begin + j;
auto diag = min(spacing * index, a_count + b_count);
buf[index] = cuda_merge_path<bounds>(a, a_count, b, b_count, diag, comp);
}, tid, range.count());
});
}
//template<typename segments_it>
//auto load_balance_partitions(int64_t dest_count, segments_it segments,
// int num_segments, int spacing, context_t& context) ->
// mem_t<typename std::iterator_traits<segments_it>::value_type> {
//
// typedef typename std::iterator_traits<segments_it>::value_type int_t;
// return merge_path_partitions<bounds_upper>(counting_iterator_t<int_t>(0),
// dest_count, segments, num_segments, spacing, less_t<int_t>(), context);
//}
//template<bounds_t bounds, typename keys_it>
//mem_t<int> binary_search_partitions(keys_it keys, int count, int num_items,
// int spacing, context_t& context) {
//
// int num_partitions = div_up(count, spacing) + 1;
// mem_t<int> mem(num_partitions, context);
// int* p = mem.data();
// transform([=]MGPU_DEVICE(int index) {
// int key = min(spacing * index, count);
// p[index] = binary_search<bounds>(keys, num_items, key, less_t<int>());
// }, num_partitions, context);
// return mem;
//}
/** @private */
template<
typename P,
typename a_keys_it, typename a_vals_it,
typename b_keys_it, typename b_vals_it,
typename c_keys_it, typename c_vals_it,
typename comp_t
>
void cuda_merge_loop(
P&& p,
a_keys_it a_keys, a_vals_it a_vals, unsigned a_count,
b_keys_it b_keys, b_vals_it b_vals, unsigned b_count,
c_keys_it c_keys, c_vals_it c_vals,
comp_t comp,
void* ptr
) {
using E = std::decay_t<P>;
using T = typename std::iterator_traits<a_keys_it>::value_type;
using V = typename std::iterator_traits<a_vals_it>::value_type;
auto buf = static_cast<unsigned*>(ptr);
auto has_values = !std::is_same<V, cudaEmpty>::value;
cuda_merge_path_partitions<cudaMergeBoundType::LOWER>(
p, a_keys, a_count, b_keys, b_count, E::nv, comp, buf
);
unsigned B = p.num_blocks(a_count + b_count);
// we use small kernel
cuda_kernel<<<B, E::nt, 0, p.stream()>>>([=] __device__ (auto tid, auto bid) {
__shared__ union {
T keys[E::nv + 1];
unsigned indices[E::nv];
} shared;
// Load the range for this CTA and merge the values into register.
auto mp0 = buf[bid + 0];
auto mp1 = buf[bid + 1];
auto range = cuda_compute_merge_range(a_count, b_count, bid, E::nv, mp0, mp1);
auto merge = block_merge_from_mem<cudaMergeBoundType::LOWER, E::nt, E::vt>(
a_keys, b_keys, range, tid, comp, shared.keys
);
auto dest_offset = E::nv * bid;
cuda_reg_to_mem_thread<E::nt>(
merge.keys, tid, range.total(), c_keys + dest_offset, shared.keys
);
if(has_values) {
// Transpose the indices from thread order to strided order.
auto indices = cuda_reg_thread_to_strided<E::nt>(
merge.indices, tid, shared.indices
);
// Gather the input values and merge into the output values.
cuda_transfer_two_streams_strided<E::nt>(
a_vals + range.a_begin, range.a_count(),
b_vals + range.b_begin, range.b_count(), indices, tid,
c_vals + dest_offset
);
}
});
}
} // end of namespace tf::detail ---------------------------------------------
namespace tf {
// ----------------------------------------------------------------------------
// standalone merge algorithms
// ----------------------------------------------------------------------------
// Function: merge_bufsz
template <unsigned NT, unsigned VT>
unsigned cudaExecutionPolicy<NT, VT>::merge_bufsz(unsigned a_count, unsigned b_count) {
return sizeof(unsigned) * (num_blocks(a_count + b_count + nv) + 1);
}
// ----------------------------------------------------------------------------
// key-value merge
// ----------------------------------------------------------------------------
/**
@brief performs asynchronous key-value merge over a range of keys and values
@tparam P execution policy type
@tparam a_keys_it first key iterator type
@tparam a_vals_it first value iterator type
@tparam b_keys_it second key iterator type
@tparam b_vals_it second value iterator type
@tparam c_keys_it output key iterator type
@tparam c_vals_it output value iterator type
@tparam C comparator type
@param p execution policy
@param a_keys_first iterator to the beginning of the first key range
@param a_keys_last iterator to the end of the first key range
@param a_vals_first iterator to the beginning of the first value range
@param b_keys_first iterator to the beginning of the second key range
@param b_keys_last iterator to the end of the second key range
@param b_vals_first iterator to the beginning of the second value range
@param c_keys_first iterator to the beginning of the output key range
@param c_vals_first iterator to the beginning of the output value range
@param comp comparator
@param buf pointer to the temporary buffer
Performs a key-value merge that copies elements from
<tt>[a_keys_first, a_keys_last)</tt> and <tt>[b_keys_first, b_keys_last)</tt>
into a single range, <tt>[c_keys_first, c_keys_last + (a_keys_last - a_keys_first) + (b_keys_last - b_keys_first))</tt>
such that the resulting range is in ascending key order.
At the same time, the merge copies elements from the two associated ranges
<tt>[a_vals_first + (a_keys_last - a_keys_first))</tt> and
<tt>[b_vals_first + (b_keys_last - b_keys_first))</tt> into a single range,
<tt>[c_vals_first, c_vals_first + (a_keys_last - a_keys_first) + (b_keys_last - b_keys_first))</tt>
such that the resulting range is in ascending order
implied by each input element's associated key.
For example, assume:
+ @c a_keys = {1, 8};
+ @c a_vals = {2, 1};
+ @c b_keys = {3, 7};
+ @c b_vals = {3, 4};
After the merge, we have:
+ @c c_keys = {1, 3, 7, 8}
+ @c c_vals = {2, 3, 4, 1}
*/
template<
typename P,
typename a_keys_it, typename a_vals_it,
typename b_keys_it, typename b_vals_it,
typename c_keys_it, typename c_vals_it,
typename C
>
void cuda_merge_by_key(
P&& p,
a_keys_it a_keys_first, a_keys_it a_keys_last, a_vals_it a_vals_first,
b_keys_it b_keys_first, b_keys_it b_keys_last, b_vals_it b_vals_first,
c_keys_it c_keys_first, c_vals_it c_vals_first,
C comp,
void* buf
) {
unsigned a_count = std::distance(a_keys_first, a_keys_last);
unsigned b_count = std::distance(b_keys_first, b_keys_last);
if(a_count + b_count == 0) {
return;
}
detail::cuda_merge_loop(p,
a_keys_first, a_vals_first, a_count,
b_keys_first, b_vals_first, b_count,
c_keys_first, c_vals_first, comp,
buf
);
}
// ----------------------------------------------------------------------------
// key-only merge
// ----------------------------------------------------------------------------
/**
@brief performs asynchronous key-only merge over a range of keys
@tparam P execution policy type
@tparam a_keys_it first key iterator type
@tparam b_keys_it second key iterator type
@tparam c_keys_it output key iterator type
@tparam C comparator type
@param p execution policy
@param a_keys_first iterator to the beginning of the first key range
@param a_keys_last iterator to the end of the first key range
@param b_keys_first iterator to the beginning of the second key range
@param b_keys_last iterator to the end of the second key range
@param c_keys_first iterator to the beginning of the output key range
@param comp comparator
@param buf pointer to the temporary buffer
This function is equivalent to tf::cuda_merge_by_key without values.
*/
template<typename P,
typename a_keys_it, typename b_keys_it, typename c_keys_it, typename C
>
void cuda_merge(
P&& p,
a_keys_it a_keys_first, a_keys_it a_keys_last,
b_keys_it b_keys_first, b_keys_it b_keys_last,
c_keys_it c_keys_first,
C comp,
void* buf
) {
cuda_merge_by_key(
p,
a_keys_first, a_keys_last, (const cudaEmpty*)nullptr,
b_keys_first, b_keys_last, (const cudaEmpty*)nullptr,
c_keys_first, (cudaEmpty*)nullptr, comp,
buf
);
}
} // end of namespace tf -----------------------------------------------------