Advertisement
teknoraver

apu vs macchiatobin

Dec 3rd, 2020 (edited)
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. matteo@apu:~/benchs$ make run
  2. ./dry 2>/dev/null
  3. Dhrystone Benchmark, Version C, Version 2.3
  4. Program compiled without 'register' attribute
  5. Using clock_gettime(), HZ=1000
  6.  
  7. Running 1 thread(s)
  8.  
  9. Microseconds for one run through Dhrystone: 0.2
  10. Dhrystones per Second: 4555394
  11. ./flops
  12.  
  13. FLOPS C Program (Double Precision), V2.0 18 Dec 1992
  14.  
  15. Module Error RunTime MFLOPS
  16. (usec)
  17. 1 4.0146e-13 0.0311 450.0079
  18. 2 -1.4166e-13 0.0150 465.9566
  19. 3 4.7184e-14 0.0286 594.0002
  20. 4 -1.2557e-13 0.0352 426.6526
  21. 5 -1.3800e-13 0.0673 430.8670
  22. 6 3.2380e-13 0.0531 545.6429
  23. 7 -8.4583e-11 0.0612 196.2192
  24. 8 3.4867e-13 0.0532 563.6808
  25.  
  26. Iterations = 512000000
  27. NullTime (usec) = 0.0000
  28. MFLOPS(1) = 501.2830
  29. MFLOPS(2) = 330.4590
  30. MFLOPS(3) = 442.8004
  31. MFLOPS(4) = 534.8321
  32.  
  33.  
  34. matteo@macchiatobin:~/benchs$ make run
  35. ./dry 2>/dev/null
  36. Dhrystone Benchmark, Version C, Version 2.3
  37. Program compiled without 'register' attribute
  38. Using clock_gettime(), HZ=1000
  39.  
  40. Running 1 thread(s)
  41.  
  42. Microseconds for one run through Dhrystone: 0.1
  43. Dhrystones per Second: 20193860
  44. ./flops
  45.  
  46. FLOPS C Program (Double Precision), V2.0 18 Dec 1992
  47.  
  48. Module Error RunTime MFLOPS
  49. (usec)
  50. 1 4.0146e-13 0.0080 1749.6233
  51. 2 -1.4166e-13 0.0061 1142.5937
  52. 3 4.7184e-14 0.0074 2287.2820
  53. 4 -1.2546e-13 0.0079 1894.2127
  54. 5 -1.3800e-13 0.0147 1968.4418
  55. 6 3.2374e-13 0.0128 2270.7655
  56. 7 -8.4583e-11 0.0240 499.8931
  57. 8 3.4855e-13 0.0143 2102.0712
  58.  
  59. Iterations = 512000000
  60. NullTime (usec) = 0.0000
  61. MFLOPS(1) = 1366.1036
  62. MFLOPS(2) = 1034.8795
  63. MFLOPS(3) = 1637.9972
  64. MFLOPS(4) = 2146.5341
  65.  
  66.  
  67. matteo@apu:~$ time { dd if=/dev/zero bs=1G count=1 status=none | sha1sum ; }
  68. 2a492f15396a6768bcbca016993f4b4c8b0b5307 -
  69.  
  70. real 0m16.611s
  71. user 0m12.438s
  72. sys 0m7.397s
  73.  
  74. matteo@macchiatobin:~$ time { dd if=/dev/zero bs=1G count=1 status=none | sha1sum ; }
  75. 2a492f15396a6768bcbca016993f4b4c8b0b5307 -
  76.  
  77. real 0m5,204s
  78. user 0m4,468s
  79. sys 0m1,193s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement