timings.txt 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. # Copyright David Abrahams 2005. Distributed under the Boost
  2. # Software License, Version 1.0. (See accompanying
  3. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. ----------------- Test #1 ----------------
  5. Testers:
  6. Matthias Troyer, Michael Gauckler, David Abrahams
  7. Date:
  8. 2005-09-09
  9. Compiler:
  10. Cygwin g++-4.0.0
  11. Command lines:
  12. g++ -c -o efficiency.o -ftemplate-depth-100 -funroll-loops \
  13. -O3 -finline-functions -Wno-inline -DNDEBUG efficiency.cpp
  14. g++ -o efficiency.exe efficiency.o -Wl,--strip-all
  15. efficiency && efficiency && efficiency
  16. Machine:
  17. Dell Inspiron 9300
  18. Intel(R) Pentium(R) M processor 2.00GHz
  19. Running on 230 volts AC power
  20. Timings:
  21. Run #1 results discarded per standard practice
  22. Run #2
  23. plain time: 0.75
  24. named parameter time: 0.734
  25. Run #3
  26. plain time: 0.781
  27. named parameter time: 0.766
  28. ----------------- Test #2 ----------------
  29. Testers:
  30. Chris Frey
  31. Date:
  32. 2005-09-17
  33. Compiler:
  34. Linux kernel 2.4.27
  35. gcc version 3.3.6 (Gentoo 3.3.6, ssp-3.3.6-1.0, pie-8.7.8)
  36. Command lines:
  37. g++ -c -o efficiency.o -ftemplate-depth-100 -funroll-loops \
  38. -O3 -finline-functions -Wno-inline -DNDEBUG efficiency.cpp
  39. g++ -o efficiency.exe efficiency.o -Wl,--strip-all
  40. Machine:
  41. IBM Thinkpad 770Z, running on AC power
  42. Intel Pentium II 366Mhz
  43. Timings:
  44. Run #1 results discarded per standard practice
  45. Run #2
  46. plain time: 6.42
  47. named parameter time: 7.34
  48. Run #3
  49. plain time: 6.42
  50. named parameter time: 7.34
  51. ----------------- Test #2 ----------------
  52. Testers:
  53. Stuar Dootson
  54. Date:
  55. 2005-09-18
  56. Machine:
  57. Athlon 64 3500+ laptop, running on AC power
  58. Windows XP SP2
  59. Compiler: Visual C++ 7.1
  60. command line:
  61. cl -O2 efficiency.cpp -EHsc -I\lib\boost\include\boost-1_33
  62. Results:
  63. plain time: <ignored>
  64. named parameter time: <ignored>
  65. plain time: 1.453
  66. named parameter time: 1.437
  67. plain time: 1.453
  68. named parameter time: 1.453
  69. Compiler: Visual C++ 8.0
  70. command-line:
  71. cl -O2 efficiency.cpp -EHsc -I\lib\boost\include\boost-1_33
  72. Results:
  73. plain time: <ignored>
  74. named parameter time: <ignored>
  75. plain time: 1.438
  76. named parameter time: 1.453
  77. plain time: 1.438
  78. named parameter time: 1.437
  79. Compiler: Mingw gcc 3.4.2
  80. command-line:
  81. g++ -c -o efficiency.o -ftemplate-depth-100 -funroll-loops -O3
  82. -finline-functions -Wno-inline -DNDEBUG efficiency.cpp
  83. -I\lib\boost\include\boost-1_33
  84. g++ -o efficiency.exe efficiency.o -Wl,--strip-all
  85. Results:
  86. plain time: <ignored>
  87. named parameter time: <ignored>
  88. plain time: 1.14
  89. named parameter time: 1.422
  90. plain time: 1.125
  91. named parameter time: 1.406
  92. -----------------------------------------