This repository was archived by the owner on Mar 21, 2024. It is now read-only.
File tree
38 files changed
+640
-609
lines changed- cmake
- dependencies
- testing
- cuda
- unittest
- cuda
- thrust
- cmake
- detail
- allocator
- config
- mr
- system
- cuda
- detail
- core
- detail/sequential
38 files changed
+640
-609
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
| 4 | + | |
| 5 | + | |
| 6 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 |
| - | |
28 |
| - | |
29 |
| - | |
30 |
| - | |
31 |
| - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
32 | 32 |
| |
33 |
| - | |
34 |
| - | |
35 |
| - | |
36 |
| - | |
37 |
| - | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
38 | 42 |
| |
39 |
| - | |
40 |
| - | |
41 |
| - | |
42 |
| - | |
43 |
| - | |
44 |
| - | |
45 |
| - | |
46 |
| - | |
47 |
| - | |
48 |
| - | |
49 |
| - | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
50 | 58 |
|
- cub/agent/agent_histogram.cuh+1-6
- cub/agent/agent_rle.cuh+1-1
- cub/agent/agent_segment_fixup.cuh+1-2
- cub/agent/agent_spmv_orig.cuh+1-1
- cub/agent/agent_sub_warp_merge_sort.cuh+24-9
- cub/agent/single_pass_scan_operators.cuh+2-2
- cub/block/block_adjacent_difference.cuh+3-4
- cub/block/block_discontinuity.cuh+2-2
- cub/block/block_exchange.cuh+4-5
- cub/block/block_histogram.cuh+4-16
- cub/block/block_load.cuh+7-7
- cub/block/block_radix_rank.cuh+8-10
- cub/block/block_radix_sort.cuh+7-9
- cub/block/block_raking_layout.cuh+5-5
- cub/block/block_reduce.cuh+5-5
- cub/block/block_scan.cuh+5-5
- cub/block/block_shuffle.cuh+3-3
- cub/block/block_store.cuh+7-7
- cub/block/specializations/block_histogram_sort.cuh+4-6
- cub/block/specializations/block_reduce_raking.cuh+3-3
- cub/block/specializations/block_reduce_raking_commutative_only.cuh+5-5
- cub/block/specializations/block_reduce_warp_reductions.cuh+3-3
- cub/block/specializations/block_scan_raking.cuh+3-3
- cub/block/specializations/block_scan_warp_scans.cuh+4-4
- cub/block/specializations/block_scan_warp_scans2.cuh+4-4
- cub/block/specializations/block_scan_warp_scans3.cuh+4-4
- cub/cmake/cub-config.cmake+59-8
- cub/detail/device_synchronize.cuh+15-16
- cub/device/dispatch/dispatch_histogram.cuh+36-35
- cub/device/dispatch/dispatch_radix_sort.cuh+35-18
- cub/device/dispatch/dispatch_reduce.cuh+1-1
- cub/device/dispatch/dispatch_reduce_by_key.cuh+22-29
- cub/device/dispatch/dispatch_rle.cuh+23-28
- cub/device/dispatch/dispatch_segmented_sort.cuh+88-84
- cub/device/dispatch/dispatch_select_if.cuh+24-28
- cub/device/dispatch/dispatch_spmv_orig.cuh+42-47
- cub/device/dispatch/dispatch_three_way_partition.cuh+14-19
- cub/grid/grid_queue.cuh+48-50
- cub/iterator/tex_obj_input_iterator.cuh+31-37
- cub/thread/thread_load.cuh+5-18
- cub/thread/thread_store.cuh+4-12
- cub/util_arch.cuh+41-49
- cub/util_debug.cuh+96-67
- cub/util_device.cuh+109-138
- cub/util_ptx.cuh+4-6
- cub/util_type.cuh-15
- cub/warp/specializations/warp_reduce_shfl.cuh+5-5
- cub/warp/specializations/warp_reduce_smem.cuh+4-5
- cub/warp/specializations/warp_scan_shfl.cuh+4-4
- cub/warp/specializations/warp_scan_smem.cuh+3-4
- cub/warp/warp_exchange.cuh+5-6
- cub/warp/warp_load.cuh+5-6
- cub/warp/warp_merge_sort.cuh+7-7
- cub/warp/warp_reduce.cuh+6-6
- cub/warp/warp_scan.cuh+5-5
- cub/warp/warp_store.cuh+5-6
- examples/block/example_block_reduce_dyn_smem.cu+3-23
- test/test_device_merge_sort.cu+24-6
- test/test_device_segmented_sort.cu+53-55
- test/test_iterator.cu+4-8
- test/test_util.h+126-140
- test/test_warp_mask.cu+1-2
- test/test_warp_reduce.cu+6-6
Submodule libcudacxx added at 05d48aa
+14-11
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| 5 | + | |
| 6 | + | |
| 7 | + | |
5 | 8 |
| |
6 | 9 |
| |
7 | 10 |
| |
| |||
60 | 63 |
| |
61 | 64 |
| |
62 | 65 |
| |
63 |
| - | |
64 |
| - | |
65 |
| - | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
66 | 72 |
| |
67 | 73 |
| |
68 | 74 |
| |
| |||
80 | 86 |
| |
81 | 87 |
| |
82 | 88 |
| |
83 |
| - | |
84 |
| - | |
85 |
| - | |
| 89 | + | |
86 | 90 |
| |
87 | 91 |
| |
88 | 92 |
| |
| |||
119 | 123 |
| |
120 | 124 |
| |
121 | 125 |
| |
| 126 | + | |
| 127 | + | |
122 | 128 |
| |
123 | 129 |
| |
124 | 130 |
| |
125 | 131 |
| |
126 |
| - | |
127 |
| - | |
| 132 | + | |
| 133 | + | |
128 | 134 |
| |
129 | 135 |
| |
130 | 136 |
| |
| |||
203 | 209 |
| |
204 | 210 |
| |
205 | 211 |
| |
206 |
| - | |
207 | 212 |
| |
208 | 213 |
| |
209 | 214 |
| |
| |||
251 | 256 |
| |
252 | 257 |
| |
253 | 258 |
| |
254 |
| - | |
255 |
| - | |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 |
| - | |
| 7 | + | |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 |
| - | |
12 |
| - | |
13 | 11 |
| |
14 |
| - | |
15 |
| - | |
16 |
| - | |
17 | 12 |
| |
18 | 13 |
| |
19 | 14 |
| |
| |||
43 | 38 |
| |
44 | 39 |
| |
45 | 40 |
| |
46 |
| - | |
47 |
| - | |
48 |
| - | |
| 41 | + | |
49 | 42 |
| |
50 | 43 |
| |
51 | 44 |
| |
52 |
| - | |
53 |
| - | |
54 |
| - | |
55 |
| - | |
| 45 | + | |
| 46 | + | |
56 | 47 |
| |
57 |
| - | |
58 |
| - | |
| 48 | + | |
59 | 49 |
| |
60 | 50 |
| |
61 | 51 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 |
| - | |
14 |
| - | |
15 | 13 |
| |
16 |
| - | |
17 |
| - | |
18 |
| - | |
19 | 14 |
| |
20 | 15 |
| |
21 | 16 |
| |
| |||
51 | 46 |
| |
52 | 47 |
| |
53 | 48 |
| |
54 |
| - | |
55 |
| - | |
56 | 49 |
| |
57 |
| - | |
| 50 | + | |
58 | 51 |
| |
59 | 52 |
| |
60 | 53 |
| |
61 |
| - | |
62 |
| - | |
63 |
| - | |
64 |
| - | |
| 54 | + | |
| 55 | + | |
65 | 56 |
| |
66 |
| - | |
67 |
| - | |
68 |
| - | |
| 57 | + | |
| 58 | + | |
69 | 59 |
| |
70 | 60 |
| |
71 | 61 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
286 | 286 |
| |
287 | 287 |
| |
288 | 288 |
| |
289 |
| - | |
| 289 | + | |
290 | 290 |
| |
291 |
| - | |
| 291 | + | |
292 | 292 |
| |
293 |
| - | |
294 |
| - | |
295 | 293 |
| |
296 |
| - | |
297 |
| - | |
298 |
| - | |
299 | 294 |
| |
300 | 295 |
| |
301 | 296 |
| |
| |||
313 | 308 |
| |
314 | 309 |
| |
315 | 310 |
| |
316 |
| - | |
317 |
| - | |
318 |
| - | |
| 311 | + | |
| 312 | + | |
319 | 313 |
| |
320 | 314 |
| |
321 | 315 |
| |
322 |
| - | |
323 |
| - | |
324 |
| - | |
325 |
| - | |
326 |
| - | |
327 |
| - | |
328 |
| - | |
329 |
| - | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
330 | 322 |
| |
331 |
| - | |
332 |
| - | |
333 |
| - | |
| 323 | + | |
| 324 | + | |
334 | 325 |
| |
335 | 326 |
| |
336 | 327 |
| |
| |||
355 | 346 |
| |
356 | 347 |
| |
357 | 348 |
| |
358 |
| - | |
| 349 | + | |
359 | 350 |
| |
360 |
| - | |
| 351 | + | |
361 | 352 |
| |
362 |
| - | |
363 |
| - | |
364 | 353 |
| |
365 |
| - | |
366 |
| - | |
367 |
| - | |
368 | 354 |
| |
369 | 355 |
| |
370 | 356 |
| |
| |||
389 | 375 |
| |
390 | 376 |
| |
391 | 377 |
| |
392 |
| - | |
393 |
| - | |
394 |
| - | |
| 378 | + | |
| 379 | + | |
395 | 380 |
| |
396 | 381 |
| |
397 | 382 |
| |
398 |
| - | |
399 |
| - | |
400 |
| - | |
401 |
| - | |
402 |
| - | |
403 |
| - | |
404 |
| - | |
405 |
| - | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
406 | 389 |
| |
407 |
| - | |
408 |
| - | |
409 |
| - | |
| 390 | + | |
| 391 | + | |
410 | 392 |
| |
411 | 393 |
| |
412 | 394 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 |
| - | |
| 7 | + | |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 |
| - | |
12 |
| - | |
13 | 11 |
| |
14 |
| - | |
15 |
| - | |
16 |
| - | |
17 | 12 |
| |
18 | 13 |
| |
19 | 14 |
| |
| |||
34 | 29 |
| |
35 | 30 |
| |
36 | 31 |
| |
37 |
| - | |
38 |
| - | |
39 |
| - | |
| 32 | + | |
40 | 33 |
| |
41 | 34 |
| |
42 | 35 |
| |
43 | 36 |
| |
44 |
| - | |
45 |
| - | |
46 |
| - | |
47 |
| - | |
48 |
| - | |
49 |
| - | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
50 | 40 |
| |
51 | 41 |
| |
52 | 42 |
| |
| |||
163 | 153 |
| |
164 | 154 |
| |
165 | 155 |
| |
166 |
| - | |
| 156 | + | |
167 | 157 |
| |
168 | 158 |
| |
169 | 159 |
| |
|
0 commit comments