Advertisement
Guest User

ODROID HC1 with 3.10.105

a guest
Aug 21st, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.70 KB | None | 0 0
  1. root@DietPi:~/tinymembench# ./tinymembench
  2. tinymembench v0.4.9 (simple benchmark for memory throughput and latency)
  3.  
  4. ==========================================================================
  5. == Memory bandwidth tests ==
  6. == ==
  7. == Note 1: 1MB = 1000000 bytes ==
  8. == Note 2: Results for 'copy' tests show how many bytes can be ==
  9. == copied per second (adding together read and writen ==
  10. == bytes would have provided twice higher numbers) ==
  11. == Note 3: 2-pass copy means that we are using a small temporary buffer ==
  12. == to first fetch data into it, and only then write it to the ==
  13. == destination (source -> L1 cache, L1 cache -> destination) ==
  14. == Note 4: If sample standard deviation exceeds 0.1%, it is shown in ==
  15. == brackets ==
  16. ==========================================================================
  17.  
  18. C copy backwards : 1174.9 MB/s
  19. C copy backwards (32 byte blocks) : 1156.7 MB/s
  20. C copy backwards (64 byte blocks) : 2357.5 MB/s
  21. C copy : 1206.3 MB/s
  22. C copy prefetched (32 bytes step) : 1445.4 MB/s
  23. C copy prefetched (64 bytes step) : 1444.6 MB/s
  24. C 2-pass copy : 1127.6 MB/s
  25. C 2-pass copy prefetched (32 bytes step) : 1393.6 MB/s
  26. C 2-pass copy prefetched (64 bytes step) : 1392.8 MB/s
  27. C fill : 4911.1 MB/s (0.5%)
  28. C fill (shuffle within 16 byte blocks) : 1843.4 MB/s
  29. C fill (shuffle within 32 byte blocks) : 1842.7 MB/s
  30. C fill (shuffle within 64 byte blocks) : 1948.3 MB/s
  31. ---
  32. standard memcpy : 2294.8 MB/s
  33. standard memset : 4890.4 MB/s (1.0%)
  34. ---
  35. NEON read : 3382.3 MB/s
  36. NEON read prefetched (32 bytes step) : 4271.6 MB/s
  37. NEON read prefetched (64 bytes step) : 4284.7 MB/s
  38. NEON read 2 data streams : 3457.8 MB/s
  39. NEON read 2 data streams prefetched (32 bytes step) : 4434.3 MB/s
  40. NEON read 2 data streams prefetched (64 bytes step) : 4440.4 MB/s
  41. NEON copy : 2623.3 MB/s
  42. NEON copy prefetched (32 bytes step) : 2921.7 MB/s
  43. NEON copy prefetched (64 bytes step) : 2913.1 MB/s
  44. NEON unrolled copy : 2251.2 MB/s
  45. NEON unrolled copy prefetched (32 bytes step) : 3250.0 MB/s
  46. NEON unrolled copy prefetched (64 bytes step) : 3271.0 MB/s
  47. NEON copy backwards : 1218.2 MB/s
  48. NEON copy backwards prefetched (32 bytes step) : 1427.6 MB/s
  49. NEON copy backwards prefetched (64 bytes step) : 1427.4 MB/s
  50. NEON 2-pass copy : 2109.2 MB/s
  51. NEON 2-pass copy prefetched (32 bytes step) : 2174.2 MB/s
  52. NEON 2-pass copy prefetched (64 bytes step) : 2174.1 MB/s
  53. NEON unrolled 2-pass copy : 1398.4 MB/s
  54. NEON unrolled 2-pass copy prefetched (32 bytes step) : 1753.3 MB/s
  55. NEON unrolled 2-pass copy prefetched (64 bytes step) : 1772.1 MB/s
  56. NEON fill : 4885.1 MB/s (0.8%)
  57. NEON fill backwards : 1845.6 MB/s
  58. VFP copy : 2478.7 MB/s
  59. VFP 2-pass copy : 1336.9 MB/s
  60. ARM fill (STRD) : 4894.4 MB/s (0.8%)
  61. ARM fill (STM with 8 registers) : 4903.0 MB/s
  62. ARM fill (STM with 4 registers) : 4913.2 MB/s
  63. ARM copy prefetched (incr pld) : 3061.7 MB/s
  64. ARM copy prefetched (wrap pld) : 2883.5 MB/s
  65. ARM 2-pass copy prefetched (incr pld) : 1709.2 MB/s
  66. ARM 2-pass copy prefetched (wrap pld) : 1665.6 MB/s
  67.  
  68. ==========================================================================
  69. == Memory latency test ==
  70. == ==
  71. == Average time is measured for random memory accesses in the buffers ==
  72. == of different sizes. The larger is the buffer, the more significant ==
  73. == are relative contributions of TLB, L1/L2 cache misses and SDRAM ==
  74. == accesses. For extremely large buffer sizes we are expecting to see ==
  75. == page table walk with several requests to SDRAM for almost every ==
  76. == memory access (though 64MiB is not nearly large enough to experience ==
  77. == this effect to its fullest). ==
  78. == ==
  79. == Note 1: All the numbers are representing extra time, which needs to ==
  80. == be added to L1 cache latency. The cycle timings for L1 cache ==
  81. == latency can be usually found in the processor documentation. ==
  82. == Note 2: Dual random read means that we are simultaneously performing ==
  83. == two independent memory accesses at a time. In the case if ==
  84. == the memory subsystem can't handle multiple outstanding ==
  85. == requests, dual random read has the same timings as two ==
  86. == single reads performed one after another. ==
  87. ==========================================================================
  88.  
  89. block size : single random read / dual random read
  90. 1024 : 0.0 ns / 0.0 ns
  91. 2048 : 0.0 ns / 0.0 ns
  92. 4096 : 0.0 ns / 0.0 ns
  93. 8192 : 0.0 ns / 0.0 ns
  94. 16384 : 0.0 ns / 0.0 ns
  95. 32768 : 0.0 ns / 0.0 ns
  96. 65536 : 4.4 ns / 6.7 ns
  97. 131072 : 6.7 ns / 8.9 ns
  98. 262144 : 9.6 ns / 11.9 ns
  99. 524288 : 11.1 ns / 13.5 ns
  100. 1048576 : 12.0 ns / 14.5 ns
  101. 2097152 : 19.7 ns / 27.1 ns
  102. 4194304 : 95.4 ns / 143.8 ns
  103. 8388608 : 134.2 ns / 183.5 ns
  104. 16777216 : 154.1 ns / 200.2 ns
  105. 33554432 : 169.4 ns / 219.5 ns
  106. 67108864 : 179.0 ns / 232.5 ns
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement