-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtimings_block_128_array_2_20.txt
More file actions
56 lines (55 loc) · 2.01 KB
/
timings_block_128_array_2_20.txt
File metadata and controls
56 lines (55 loc) · 2.01 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
****************
** SCAN TESTS **
****************
ARRAY SIZE : 1048576
[ 19 13 6 30 41 42 22 0 1 11 49 39 47 ... 6 0 ]
==== cpu scan, power-of-two ====
elapsed time: 3.98564ms (std::chrono Measured)
==== cpu scan, non-power-of-two ====
elapsed time: 1.41794ms (std::chrono Measured)
passed
==== naive scan, power-of-two ====
elapsed time: 0.867328ms (CUDA Measured)
passed
==== naive scan, non-power-of-two ====
elapsed time: 0.89088ms (CUDA Measured)
passed
==== work-efficient scan, power-of-two ====
elapsed time: 1.60768ms (CUDA Measured)
passed
==== work-efficient scan, non-power-of-two ====
elapsed time: 0.842752ms (CUDA Measured)
passed
==== thrust scan, power-of-two ====
elapsed time: 0.200704ms (CUDA Measured)
passed
==== thrust scan, power-of-two ====
elapsed time: 0.234496ms (CUDA Measured)
passed
==== thrust scan, non-power-of-two ====
elapsed time: 0.224256ms (CUDA Measured)
passed
*****************************
** STREAM COMPACTION TESTS **
*****************************
[ 3 3 2 2 3 2 0 0 1 1 1 1 1 ... 0 0 ]
==== cpu compact without scan, power-of-two ====
elapsed time: 2.41114ms (std::chrono Measured)
[ 3 3 2 2 3 2 1 1 1 1 1 3 3 ... 3 2 ]
passed
==== cpu compact without scan, non-power-of-two ====
elapsed time: 2.57571ms (std::chrono Measured)
[ 3 3 2 2 3 2 1 1 1 1 1 3 3 ... 3 2 ]
passed
==== cpu compact with scan ====
elapsed time: 8.84481ms (std::chrono Measured)
[ 3 3 2 2 3 2 1 1 1 1 1 3 3 ... 3 2 ]
passed
==== work-efficient compact, power-of-two ====
3 3 2 2 3 2 0 0 1 1 1 1 1 ... 0 0 ]
elapsed time: 4.02432ms (CUDA Measured)
passed
==== work-efficient compact, non-power-of-two ====
3 3 2 2 3 2 0 0 1 1 1 1 1 ... 3 2 ]
elapsed time: 3.2215ms (CUDA Measured)
passed