NEWS 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. Version 1.4.0 - July 23, 2011
  2. - Feature upgrade: Add keyboard input during runtime to allow modification of
  3. and viewing of numerous settings such as adding/removing pools, changing
  4. multipool management strategy, switching pools, changing intensiy, verbosity,
  5. etc. with a simple keypress menu system.
  6. - Free up resources/stale compilers.
  7. - Kernels are safely flushed in a way that allows out of order execution to
  8. work.
  9. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  10. seems to fix it.
  11. - Don't try to stop/cancel threads that don't exist.
  12. - Only set option to show devices and exit if built with opencl support.
  13. - Enable curses earlier and exit with message in main for messages to not be
  14. lost in curses windows.
  15. - Make it possible to enter server credentials with curses input if none are
  16. specified on the command line.
  17. - Abstract out a curses input function and separate input pool function to allow
  18. for live adding of pools later.
  19. - Remove the nil arguments check to allow starting without parameters.
  20. - Disable/enable echo & cbreak modes.
  21. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  22. verbose, normal, rpc protocol debugging and clear screen options.
  23. - Add pool option to input and display current pool status, pending code to
  24. allow live changes.
  25. - Add a bool for explicit enabling/disabling of pools.
  26. - Make input pool capable of bringing up pools while running.
  27. - Do one last check of the work before submitting it.
  28. - Implement the ability to live add, enable, disable, and switch to pools.
  29. - Only internally test for block changes when the work matches the current pool
  30. to prevent interleaved block change timing on multipools.
  31. - Display current pool management strategy to enable changing it on the fly.
  32. - The longpoll blanking of the current_block data may not be happening before
  33. the work is converted and appears to be a detected block change. Blank the
  34. current block be
  35. - Make --no-longpoll work again.
  36. - Abstract out active pools count.
  37. - Allow the pool strategy to be modified on the fly.
  38. - Display pool information on the fly as well.
  39. - Add a menu and separate out display options.
  40. - Clean up the messy way the staging thread communicates with the longpoll
  41. thread to determine who found the block first.
  42. - Make the input windows update immediately instead of needing a refresh.
  43. - Allow log interval to be set in the menu.
  44. - Allow scan settings to be modified at runtime.
  45. - Abstract out the longpoll start and explicitly restart it on pool change.
  46. - Make it possible to enable/disable longpoll.
  47. - Set priority correctly on multipools. Display priority and alive/dead
  48. information in display_pools.
  49. - Implement pool removal.
  50. - Limit rolltime work generation to 10 iterations only.
  51. - Decrease testing log to info level.
  52. - Extra refresh not required.
  53. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  54. - Tell getwork how much of a work item we're likely to complete for future
  55. splitting up of work.
  56. - Remove the mandatory work requirement at startup by testing for invalid work
  57. being passed which allows for work to be queued immediately. This also
  58. removes the requirem
  59. - Make sure intensity is carried over to thread count and is at least the
  60. minimum necessary to work.
  61. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  62. - Clear log window from consistent place. No need for locking since logging is
  63. disabled during input.
  64. - Cannot print the status of threads that don't exist so just queue enough work
  65. for the number of mining threads to prevent crash with -Q N.
  66. - Update phatk kernel to one with new parameters for slightly less overhead
  67. again. Make the queue kernel parameters call a function pointer to select
  68. phatk or poclbm.
  69. - Make it possible to select the choice of kernel on the command line.
  70. - Simplify the output part of the kernel. There's no demonstrable advantage from
  71. more complexity.
  72. - Merge pull request #18 from ycros/cgminer
  73. - No need to make leaveok changes win32 only.
  74. - Build support in for all SSE if possible and only set the default according to
  75. machine capabilities.
  76. - Win32 threading and longpoll keepalive fixes.
  77. - Win32: Fix for mangled output on the terminal on exit.
  78. Version 1.3.1 - July 20, 2011
  79. - Feature upgrade; Multiple strategies for failover. Choose from default which
  80. now falls back to a priority order from 1st to last, round robin which only
  81. changes pools when one is idle, rotate which changes pools at user-defined
  82. intervals, and load-balance which spreads the work evenly amongst all pools.
  83. - Implement pool rotation strategy.
  84. - Implement load balancing algorithm by rotating requests to each pool.
  85. - Timeout on failed discarding of staged requests.
  86. - Implement proper flagging of idle pools, test them with the watchdog thread,
  87. and failover correctly.
  88. - Move pool active test to own function.
  89. - Allow multiple strategies to be set for multipool management.
  90. - Track pool number.
  91. - Don't waste the work items queued on testing the pools at startup.
  92. - Reinstate the mining thread watchdog restart.
  93. - Add a getpoll bool into the thread information and don't restart threads stuck
  94. waiting on work.
  95. - Rename the idlenet bool for the pool for later use.
  96. - Allow the user/pass userpass urls to be input in any order.
  97. - When json rpc errors occur they occur in spits and starts, so trying to limit
  98. them with the comms error bool doesn't stop a flood of them appearing.
  99. - Reset the queued count to allow more work to be queued for the new pool on
  100. pool switch.
  101. Version 1.3.0 - July 19, 2011
  102. - Massive infrastructure update to support pool failover.
  103. - Accept multiple parameters for url, user and pass and set up structures of
  104. pool data accordingly.
  105. - Probe each pool for what it supports.
  106. - Implement per pool feature support according to rolltime support as
  107. advertised by server.
  108. - Do switching automatically based on a 300 second timeout of locally generated
  109. work or 60 seconds of no response from a server that doesn't support rolltime.
  110. - Implement longpoll server switching.
  111. - Keep per-pool data and display accordingly.
  112. - Make sure cgminer knows how long the pool has actually been out for before
  113. deeming it a prolonged outage.
  114. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  115. infinite rejects.
  116. - Make warning about empty http requests not show by default since many
  117. servers do this regularly.
  118. Version 1.2.8 - July 18, 2011
  119. - More OSX build fixes.
  120. - Add an sse4 algorithm to CPU mining.
  121. - Fix CPU mining with other algorithms not working.
  122. - Rename the poclbm file to ensure a new binary is built since.
  123. - We now are guaranteed to have one fresh work item after a block change and we
  124. should only discard staged requests.
  125. - Don't waste the work we retrieve from a longpoll.
  126. - Provide a control lock around global bools to avoid racing on them.
  127. - Iterating over 1026 nonces when confirming data from the GPU is old code
  128. and unnecessary and can lead to repeats/stales.
  129. - The poclbm kernel needs to be updated to work with the change to 4k sized
  130. output buffers.
  131. - longpoll seems to work either way with post or get but some servers prefer
  132. get so change to httpget.
  133. Version 1.2.7 - July 16, 2011
  134. - Show last 8 characters of share submitted in log.
  135. - Display URL connected to and user logged in as in status.
  136. - Display current block and when it was started in the status line.
  137. - Only pthread_join the mining threads if they exist as determined by
  138. pthread_cancel and don't fail on pthread_cancel.
  139. - Create a unique work queue for all getworks instead of binding it to thread 0
  140. to avoid any conflict over thread 0's queue.
  141. - Clean up the code to make it clear it's watchdog thread being messaged to
  142. restart the threads.
  143. - Check the current block description hasn't been blanked pending the real
  144. new current block data.
  145. - Re-enable signal handlers once the signal has been received to make it
  146. possible to kill cgminer if it fails to shut down.
  147. - Disable restarting of CPU mining threads pending further investigation.
  148. - Update longpoll messages.
  149. - Add new block data to status line.
  150. - Fix opencl tests for osx.
  151. - Only do local generation of work if the work item is not stale itself.
  152. - Check for stale work within the mining threads and grab new work if
  153. positive.
  154. - Test for idle network conditions and prevent threads from being restarted
  155. by the watchdog thread under those circumstances.
  156. - Make sure that local work generation does not continue indefinitely by
  157. stopping it after 10 minutes.
  158. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  159. nonce value instead of a compare and loop for a shorter code path.
  160. - Allow queue of zero and make that default again now that we can track how
  161. work is being queued versus staged. This can decrease reject rates.
  162. - Queue precisely the number of mining threads as longpoll_staged after a
  163. new block to not generate local work.
  164. Version 1.2.6 - July 15, 2011
  165. - Put a current system status line beneath the total work status line
  166. - Fix a counting error that would prevent cgminer from correctly detecting
  167. situations where getwork was failing - this would cause stalls sometimes
  168. unrecoverably.
  169. - Limit the maximum number of requests that can be put into the queue which
  170. otherwise could get arbitrarily long during a network outage.
  171. - Only count getworks that are real queue requests.
  172. Version 1.2.5 - July 15, 2011
  173. - Conflicting -n options corrected
  174. - Setting an intensity with -I disables dynamic intensity setting
  175. - Removed option to manually disable dynamic intensity
  176. - Improve display output
  177. - Implement signal handler and attempt to clean up properly on exit
  178. - Only restart threads that are not stuck waiting on mandatory getworks
  179. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  180. - Explicitly grab first work item to prevent false positive hardware errors
  181. due to working on uninitialised work structs
  182. - Add option for non curses --text-only output
  183. - Ensure we connect at least once successfully before continuing to retry to
  184. connect in case url/login parameters were wrong
  185. - Print an executive summary when cgminer is terminated
  186. - Make sure to refresh the status window
  187. Versions -> 1.2.4
  188. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  189. - Massive rewrite to incorporate GPU mining.
  190. - Incorporate original oclminer c code.
  191. - Rewrite gpu mining code to efficient work loops.
  192. - Implement per-card detection and settings.
  193. - Implement vector code.
  194. - Implement bfi int patching.
  195. - Import poclbm and phatk ocl kernels and use according to hardware type.
  196. - Implement customised optimised versions of opencl kernels.
  197. - Implement binary kernel generation and loading.
  198. - Implement preemptive asynchronous threaded work gathering and pushing.
  199. - Implement variable length extra work queues.
  200. - Optimise workloads to be efficient miners instead of getting lots of extra
  201. work.
  202. - Implement total hash throughput counters, per-card accepted, rejected and
  203. hw error count.
  204. - Staging and watchdog threads to prevent fallover.
  205. - Stale and reject share guarding.
  206. - Autodetection of new blocks without longpoll.
  207. - Dynamic setting of intensity to maintain desktop interactivity.
  208. - Curses interface with generous statistics and information.
  209. - Local generation of work (xroll ntime) when detecting poor network
  210. connectivity.
  211. Version 1.0.2
  212. - Linux x86_64 optimisations - Con Kolivas
  213. - Optimise for x86_64 by default by using sse2_64 algo
  214. - Detects CPUs and sets number of threads accordingly
  215. - Uses CPU affinity for each thread where appropriate
  216. - Sets scheduling policy to lowest possible
  217. - Minor performance tweaks
  218. Version 1.0.1 - May 14, 2011
  219. - OSX support
  220. Version 1.0 - May 9, 2011
  221. - jansson 2.0 compatibility
  222. - correct off-by-one in date (month) display output
  223. - fix platform detection
  224. - improve yasm configure bits
  225. - support full URL, in X-Long-Polling header
  226. Version 0.8.1 - March 22, 2011
  227. - Make --user, --pass actually work
  228. - Add User-Agent HTTP header to requests, so that server operators may
  229. more easily identify the miner client.
  230. - Fix minor bug in example JSON config file
  231. Version 0.8 - March 21, 2011
  232. - Support long polling: http://deepbit.net/longpolling.php
  233. - Adjust max workload based on scantime (default 5 seconds,
  234. or 60 seconds for longpoll)
  235. - Standardize program output, and support syslog on Unix platforms
  236. - Suport --user/--pass options (and "user" and "pass" in config file),
  237. as an alternative to the current --userpass
  238. Version 0.7.2 - March 14, 2011
  239. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  240. This is a substantial speed improvement on Intel CPUs.
  241. - Move all JSON-RPC I/O to separate thread. This reduces the
  242. number of HTTP connections from one-per-thread to one, reducing resource
  243. usage on upstream bitcoind / pool server.
  244. Version 0.7.1 - March 2, 2011
  245. - Add support for JSON-format configuration file. See example
  246. file example-cfg.json. Any long argument on the command line
  247. may be stored in the config file.
  248. - Timestamp each solution found
  249. - Improve sha256_4way performance. NOTE: This optimization makes
  250. the 'hash' debug-print output for sha256_way incorrect.
  251. - Use __builtin_expect() intrinsic as compiler micro-optimization
  252. - Build on Intel compiler
  253. - HTTP library now follows HTTP redirects
  254. Version 0.7 - February 12, 2011
  255. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  256. - Use bswap_32, if compiler intrinsic is not available
  257. - Disable full target validation (as opposed to simply H==0) for now
  258. Version 0.6.1 - February 4, 2011
  259. - Fully validate "hash < target", rather than simply stopping our scan
  260. if the high 32 bits are 00000000.
  261. - Add --retry-pause, to set length of pause time between failure retries
  262. - Display proof-of-work hash and target, if -D (debug mode) enabled
  263. - Fix max-nonce auto-adjustment to actually work. This means if your
  264. scan takes longer than 5 seconds (--scantime), the miner will slowly
  265. reduce the number of hashes you work on, before fetching a new work unit.
  266. Version 0.6 - January 29, 2011
  267. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  268. - BeeCee1's sha256 4way optimizations
  269. - lfm's byte swap optimization (improves via, cryptopp)
  270. - Fix non-working short options -q, -r
  271. Version 0.5 - December 28, 2010
  272. - Exit program, when all threads have exited
  273. - Improve JSON-RPC failure diagnostics and resilience
  274. - Add --quiet option, to disable hashmeter output.
  275. Version 0.3.3 - December 27, 2010
  276. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  277. Version 0.3.2 - December 23, 2010
  278. - Critical fix for sha256_via
  279. Version 0.3.1 - December 19, 2010
  280. - Critical fix for sha256_via
  281. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  282. Version 0.3 - December 18, 2010
  283. - Add crypto++ 32bit assembly implementation
  284. - show version upon 'minerd --help'
  285. - work around gcc 4.5.x bug that killed 4way performance
  286. Version 0.2.2 - December 6, 2010
  287. - VIA padlock implementation works now
  288. - Minor build and runtime fixes
  289. Version 0.2.1 - November 29, 2010
  290. - avoid buffer overflow when submitting solutions
  291. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  292. - minor internal optimizations and cleanups
  293. Version 0.2 - November 27, 2010
  294. - Add script for building a Windows installer
  295. - improve hash performance (hashmeter) statistics
  296. - add tcatm 4way sha256 implementation
  297. - Add experimental VIA Padlock sha256 implementation
  298. Version 0.1.2 - November 26, 2010
  299. - many small cleanups and micro-optimizations
  300. - build win32 exe using mingw
  301. - RPC URL, username/password become command line arguments
  302. - remove unused OpenSSL dependency
  303. Version 0.1.1 - November 24, 2010
  304. - Do not build sha256_generic module separately from cpuminer.
  305. Version 0.1 - November 24, 2010
  306. - Initial release.