NEWS 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. - Add an sse4 algorithm to CPU mining.
  2. - Fix CPU mining with other algorithms not working.
  3. - Rename the poclbm file to ensure a new binary is built since.
  4. - We now are guaranteed to have one fresh work item after a block change and we
  5. should only discard staged requests.
  6. - Don't waste the work we retrieve from a longpoll.
  7. - Provide a control lock around global bools to avoid racing on them.
  8. - Iterating over 1026 nonces when confirming data from the GPU is old code
  9. and unnecessary and can lead to repeats/stales.
  10. - The poclbm kernel needs to be updated to work with the change to 4k sized
  11. output buffers.
  12. - longpoll seems to work either way with post or get but some servers prefer
  13. get so change to httpget.
  14. Version 1.2.7 - July 16, 2011
  15. - Show last 8 characters of share submitted in log.
  16. - Display URL connected to and user logged in as in status.
  17. - Display current block and when it was started in the status line.
  18. - Only pthread_join the mining threads if they exist as determined by
  19. pthread_cancel and don't fail on pthread_cancel.
  20. - Create a unique work queue for all getworks instead of binding it to thread 0
  21. to avoid any conflict over thread 0's queue.
  22. - Clean up the code to make it clear it's watchdog thread being messaged to
  23. restart the threads.
  24. - Check the current block description hasn't been blanked pending the real
  25. new current block data.
  26. - Re-enable signal handlers once the signal has been received to make it
  27. possible to kill cgminer if it fails to shut down.
  28. - Disable restarting of CPU mining threads pending further investigation.
  29. - Update longpoll messages.
  30. - Add new block data to status line.
  31. - Fix opencl tests for osx.
  32. - Only do local generation of work if the work item is not stale itself.
  33. - Check for stale work within the mining threads and grab new work if
  34. positive.
  35. - Test for idle network conditions and prevent threads from being restarted
  36. by the watchdog thread under those circumstances.
  37. - Make sure that local work generation does not continue indefinitely by
  38. stopping it after 10 minutes.
  39. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  40. nonce value instead of a compare and loop for a shorter code path.
  41. - Allow queue of zero and make that default again now that we can track how
  42. work is being queued versus staged. This can decrease reject rates.
  43. - Queue precisely the number of mining threads as longpoll_staged after a
  44. new block to not generate local work.
  45. Version 1.2.6 - July 15, 2011
  46. - Put a current system status line beneath the total work status line
  47. - Fix a counting error that would prevent cgminer from correctly detecting
  48. situations where getwork was failing - this would cause stalls sometimes
  49. unrecoverably.
  50. - Limit the maximum number of requests that can be put into the queue which
  51. otherwise could get arbitrarily long during a network outage.
  52. - Only count getworks that are real queue requests.
  53. Version 1.2.5 - July 15, 2011
  54. - Conflicting -n options corrected
  55. - Setting an intensity with -I disables dynamic intensity setting
  56. - Removed option to manually disable dynamic intensity
  57. - Improve display output
  58. - Implement signal handler and attempt to clean up properly on exit
  59. - Only restart threads that are not stuck waiting on mandatory getworks
  60. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  61. - Explicitly grab first work item to prevent false positive hardware errors
  62. due to working on uninitialised work structs
  63. - Add option for non curses --text-only output
  64. - Ensure we connect at least once successfully before continuing to retry to
  65. connect in case url/login parameters were wrong
  66. - Print an executive summary when cgminer is terminated
  67. - Make sure to refresh the status window
  68. Versions -> 1.2.4
  69. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  70. - Massive rewrite to incorporate GPU mining.
  71. - Incorporate original oclminer c code.
  72. - Rewrite gpu mining code to efficient work loops.
  73. - Implement per-card detection and settings.
  74. - Implement vector code.
  75. - Implement bfi int patching.
  76. - Import poclbm and phatk ocl kernels and use according to hardware type.
  77. - Implement customised optimised versions of opencl kernels.
  78. - Implement binary kernel generation and loading.
  79. - Implement preemptive asynchronous threaded work gathering and pushing.
  80. - Implement variable length extra work queues.
  81. - Optimise workloads to be efficient miners instead of getting lots of extra
  82. work.
  83. - Implement total hash throughput counters, per-card accepted, rejected and
  84. hw error count.
  85. - Staging and watchdog threads to prevent fallover.
  86. - Stale and reject share guarding.
  87. - Autodetection of new blocks without longpoll.
  88. - Dynamic setting of intensity to maintain desktop interactivity.
  89. - Curses interface with generous statistics and information.
  90. - Local generation of work (xroll ntime) when detecting poor network
  91. connectivity.
  92. Version 1.0.2
  93. - Linux x86_64 optimisations - Con Kolivas
  94. - Optimise for x86_64 by default by using sse2_64 algo
  95. - Detects CPUs and sets number of threads accordingly
  96. - Uses CPU affinity for each thread where appropriate
  97. - Sets scheduling policy to lowest possible
  98. - Minor performance tweaks
  99. Version 1.0.1 - May 14, 2011
  100. - OSX support
  101. Version 1.0 - May 9, 2011
  102. - jansson 2.0 compatibility
  103. - correct off-by-one in date (month) display output
  104. - fix platform detection
  105. - improve yasm configure bits
  106. - support full URL, in X-Long-Polling header
  107. Version 0.8.1 - March 22, 2011
  108. - Make --user, --pass actually work
  109. - Add User-Agent HTTP header to requests, so that server operators may
  110. more easily identify the miner client.
  111. - Fix minor bug in example JSON config file
  112. Version 0.8 - March 21, 2011
  113. - Support long polling: http://deepbit.net/longpolling.php
  114. - Adjust max workload based on scantime (default 5 seconds,
  115. or 60 seconds for longpoll)
  116. - Standardize program output, and support syslog on Unix platforms
  117. - Suport --user/--pass options (and "user" and "pass" in config file),
  118. as an alternative to the current --userpass
  119. Version 0.7.2 - March 14, 2011
  120. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  121. This is a substantial speed improvement on Intel CPUs.
  122. - Move all JSON-RPC I/O to separate thread. This reduces the
  123. number of HTTP connections from one-per-thread to one, reducing resource
  124. usage on upstream bitcoind / pool server.
  125. Version 0.7.1 - March 2, 2011
  126. - Add support for JSON-format configuration file. See example
  127. file example-cfg.json. Any long argument on the command line
  128. may be stored in the config file.
  129. - Timestamp each solution found
  130. - Improve sha256_4way performance. NOTE: This optimization makes
  131. the 'hash' debug-print output for sha256_way incorrect.
  132. - Use __builtin_expect() intrinsic as compiler micro-optimization
  133. - Build on Intel compiler
  134. - HTTP library now follows HTTP redirects
  135. Version 0.7 - February 12, 2011
  136. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  137. - Use bswap_32, if compiler intrinsic is not available
  138. - Disable full target validation (as opposed to simply H==0) for now
  139. Version 0.6.1 - February 4, 2011
  140. - Fully validate "hash < target", rather than simply stopping our scan
  141. if the high 32 bits are 00000000.
  142. - Add --retry-pause, to set length of pause time between failure retries
  143. - Display proof-of-work hash and target, if -D (debug mode) enabled
  144. - Fix max-nonce auto-adjustment to actually work. This means if your
  145. scan takes longer than 5 seconds (--scantime), the miner will slowly
  146. reduce the number of hashes you work on, before fetching a new work unit.
  147. Version 0.6 - January 29, 2011
  148. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  149. - BeeCee1's sha256 4way optimizations
  150. - lfm's byte swap optimization (improves via, cryptopp)
  151. - Fix non-working short options -q, -r
  152. Version 0.5 - December 28, 2010
  153. - Exit program, when all threads have exited
  154. - Improve JSON-RPC failure diagnostics and resilience
  155. - Add --quiet option, to disable hashmeter output.
  156. Version 0.3.3 - December 27, 2010
  157. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  158. Version 0.3.2 - December 23, 2010
  159. - Critical fix for sha256_via
  160. Version 0.3.1 - December 19, 2010
  161. - Critical fix for sha256_via
  162. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  163. Version 0.3 - December 18, 2010
  164. - Add crypto++ 32bit assembly implementation
  165. - show version upon 'minerd --help'
  166. - work around gcc 4.5.x bug that killed 4way performance
  167. Version 0.2.2 - December 6, 2010
  168. - VIA padlock implementation works now
  169. - Minor build and runtime fixes
  170. Version 0.2.1 - November 29, 2010
  171. - avoid buffer overflow when submitting solutions
  172. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  173. - minor internal optimizations and cleanups
  174. Version 0.2 - November 27, 2010
  175. - Add script for building a Windows installer
  176. - improve hash performance (hashmeter) statistics
  177. - add tcatm 4way sha256 implementation
  178. - Add experimental VIA Padlock sha256 implementation
  179. Version 0.1.2 - November 26, 2010
  180. - many small cleanups and micro-optimizations
  181. - build win32 exe using mingw
  182. - RPC URL, username/password become command line arguments
  183. - remove unused OpenSSL dependency
  184. Version 0.1.1 - November 24, 2010
  185. - Do not build sha256_generic module separately from cpuminer.
  186. Version 0.1 - November 24, 2010
  187. - Initial release.