NEWS 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. - Con Kolivas
  2. - Massive rewrite to incorporate GPU mining.
  3. - Incorporate original oclminer c code.
  4. - Rewrite gpu mining code to efficient work loops.
  5. - Implement per-card detection and settings.
  6. - Implement vector code.
  7. - Implement bfi int patching.
  8. - Import poclbm and phatk ocl kernels and use according to hardware type.
  9. - Implement customised optimised versions of opencl kernels.
  10. - Implement binary kernel generation and loading.
  11. - Implement preemptive asynchronous threaded work gathering and pushing.
  12. - Implement variable length extra work queues.
  13. - Optimise workloads to be efficient miners instead of getting lots of extra
  14. work.
  15. - Implement total hash throughput counters, per-card accepted, rejected and
  16. hw error count.
  17. Version 1.0.2
  18. - Linux x86_64 optimisations - Con Kolivas
  19. - Optimise for x86_64 by default by using sse2_64 algo
  20. - Detects CPUs and sets number of threads accordingly
  21. - Uses CPU affinity for each thread where appropriate
  22. - Sets scheduling policy to lowest possible
  23. - Minor performance tweaks
  24. Version 1.0.1 - May 14, 2011
  25. - OSX support
  26. Version 1.0 - May 9, 2011
  27. - jansson 2.0 compatibility
  28. - correct off-by-one in date (month) display output
  29. - fix platform detection
  30. - improve yasm configure bits
  31. - support full URL, in X-Long-Polling header
  32. Version 0.8.1 - March 22, 2011
  33. - Make --user, --pass actually work
  34. - Add User-Agent HTTP header to requests, so that server operators may
  35. more easily identify the miner client.
  36. - Fix minor bug in example JSON config file
  37. Version 0.8 - March 21, 2011
  38. - Support long polling: http://deepbit.net/longpolling.php
  39. - Adjust max workload based on scantime (default 5 seconds,
  40. or 60 seconds for longpoll)
  41. - Standardize program output, and support syslog on Unix platforms
  42. - Suport --user/--pass options (and "user" and "pass" in config file),
  43. as an alternative to the current --userpass
  44. Version 0.7.2 - March 14, 2011
  45. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  46. This is a substantial speed improvement on Intel CPUs.
  47. - Move all JSON-RPC I/O to separate thread. This reduces the
  48. number of HTTP connections from one-per-thread to one, reducing resource
  49. usage on upstream bitcoind / pool server.
  50. Version 0.7.1 - March 2, 2011
  51. - Add support for JSON-format configuration file. See example
  52. file example-cfg.json. Any long argument on the command line
  53. may be stored in the config file.
  54. - Timestamp each solution found
  55. - Improve sha256_4way performance. NOTE: This optimization makes
  56. the 'hash' debug-print output for sha256_way incorrect.
  57. - Use __builtin_expect() intrinsic as compiler micro-optimization
  58. - Build on Intel compiler
  59. - HTTP library now follows HTTP redirects
  60. Version 0.7 - February 12, 2011
  61. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  62. - Use bswap_32, if compiler intrinsic is not available
  63. - Disable full target validation (as opposed to simply H==0) for now
  64. Version 0.6.1 - February 4, 2011
  65. - Fully validate "hash < target", rather than simply stopping our scan
  66. if the high 32 bits are 00000000.
  67. - Add --retry-pause, to set length of pause time between failure retries
  68. - Display proof-of-work hash and target, if -D (debug mode) enabled
  69. - Fix max-nonce auto-adjustment to actually work. This means if your
  70. scan takes longer than 5 seconds (--scantime), the miner will slowly
  71. reduce the number of hashes you work on, before fetching a new work unit.
  72. Version 0.6 - January 29, 2011
  73. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  74. - BeeCee1's sha256 4way optimizations
  75. - lfm's byte swap optimization (improves via, cryptopp)
  76. - Fix non-working short options -q, -r
  77. Version 0.5 - December 28, 2010
  78. - Exit program, when all threads have exited
  79. - Improve JSON-RPC failure diagnostics and resilience
  80. - Add --quiet option, to disable hashmeter output.
  81. Version 0.3.3 - December 27, 2010
  82. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  83. Version 0.3.2 - December 23, 2010
  84. - Critical fix for sha256_via
  85. Version 0.3.1 - December 19, 2010
  86. - Critical fix for sha256_via
  87. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  88. Version 0.3 - December 18, 2010
  89. - Add crypto++ 32bit assembly implementation
  90. - show version upon 'minerd --help'
  91. - work around gcc 4.5.x bug that killed 4way performance
  92. Version 0.2.2 - December 6, 2010
  93. - VIA padlock implementation works now
  94. - Minor build and runtime fixes
  95. Version 0.2.1 - November 29, 2010
  96. - avoid buffer overflow when submitting solutions
  97. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  98. - minor internal optimizations and cleanups
  99. Version 0.2 - November 27, 2010
  100. - Add script for building a Windows installer
  101. - improve hash performance (hashmeter) statistics
  102. - add tcatm 4way sha256 implementation
  103. - Add experimental VIA Padlock sha256 implementation
  104. Version 0.1.2 - November 26, 2010
  105. - many small cleanups and micro-optimizations
  106. - build win32 exe using mingw
  107. - RPC URL, username/password become command line arguments
  108. - remove unused OpenSSL dependency
  109. Version 0.1.1 - November 24, 2010
  110. - Do not build sha256_generic module separately from cpuminer.
  111. Version 0.1 - November 24, 2010
  112. - Initial release.