NEWS 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  1. BFGMiner Version 2.5.2 - July 29, 2012
  2. - Limit total number of curls recruited per pool to the number of mining threads
  3. to prevent blasting the network when we only have one pool to talk to.
  4. - Bugfix: Skip writing configuration of range-limited int options with negative
  5. values
  6. - Bugfix: Correctly attempt to load ~/.bfgminer/bfgminer.conf or
  7. ~/.cgminer/cgminer.conf as defaults
  8. - Send X-Minimum-Wait header on longpolls, to explicitly inform pools we will
  9. handle a response with no delay
  10. - bitforce: Abandon (only) stale searches for work restarts
  11. - Keep a counter of enabled pools and use that instead of iterating over the
  12. pool list. Use that value to ensure we don't set the last remaining active pool
  13. to the rejecting state.
  14. - bitforce: Skip out of sending work if work restart requested
  15. - RPC: Writeup on poolpriority command usage
  16. - Bugfix: API: Report errors from poolpriority command
  17. - RPC: New "poolpriority" command to set the order of pool priorities
  18. - strtok_ts: Thread-safe strtok that work on POSIX or Windows
  19. - Bugfix: Supress "caught up" event when first switching to a pool
  20. - Announce and restart work immediately when current pool has caught up to the
  21. current block
  22. - Bugfix: Don't consider work stale due to other pools' longpolls, if
  23. --failover-only is active
  24. - Refactor stale_work function to only flag actual stale shares
  25. - stale_work: Don't factor getwork delay into expiry for shares (only for work
  26. itself)
  27. - Bugfix: Use pool number rather than numeric pointer to strict pool, in block
  28. found notice
  29. - Accept JSON Numbers in config file parameters
  30. - Improve readability of OPT_HASARG in parse_config
  31. - Allow JSON false as a valid value for strictly boolean options
  32. - Include scan-serial in example configuration file
  33. - fpgautils: add support for 57.6 kBd serial
  34. - miner.php add a socket RCV timeout for if cgminer is hung and the API thread
  35. is still running
  36. - BFL force all code to timeout to avoid hanging
  37. - Detach pthread from within the api thread in case it is terminated due to not
  38. being instantiated before pthread_cancel is called from main, leading to a
  39. segfault.
  40. - Initialise mdplatform.
  41. - Find the gpu platform with the most devices and use that if no platform option
  42. is passed.
  43. - Allow more platforms to be probed if first does not return GPUs.
  44. - Bugfix: It is not a hardware error if nonces returned from modminer don't
  45. meet the pool target
  46. - bitforce & icarus: Log detection failures at debug log level, so we don't
  47. confuse users who have different devices (which is why these drivers are
  48. failing detection!)
  49. - Show "WAIT" (LIFE_WAIT status) if a cgpu is idle waiting for work (pool
  50. slow/dead)
  51. - Instead of quitting on failing N retries, just discard the share
  52. - Bugfix: Don't discard stale shares after submission failure, if user or pool
  53. wants stales submitted
  54. - Bugfix: Record discard-during-retry shares in the sharelog
  55. - Bugfix: Only show Algorithm in RPC summary if CPU mining is actually active
  56. - OpenCL: Remove intensity from statline, since it overflowed
  57. - Move "Q" (requested getworks) to second status line as "GW" to balance out
  58. better
  59. - Bugfix: Use a mutex to control non-curses output
  60. - Simplify code to a single vprintf path for curses-less printing
  61. - Move opt_quiet check to my_log_curses, so it works for curses-less builds
  62. - Use log_generic for vapplog to cut down on code duplication
  63. - Add space to log output now that there is more screen real estate available.
  64. - Bugfix: Copy argv[0] given to dirname()
  65. - Find the gpu platform with the most devices and use that if no platform
  66. option is passed.
  67. - Allow more platforms to be probed if first does not return GPUs.
  68. - Detach pthread from within the api thread in case it is terminated due to not
  69. being instantiated before pthread_cancel is called from main, leading to a
  70. segfault.
  71. - Debug output per thread hashrate is out by a factor of 1000.
  72. - Don't check if CPUs are sick since they can't be.
  73. - Calculate midstate in separate function and remove likely/unlikely macros
  74. since they're dependent on pools, not code design.
  75. - Display in debug mode when we're making the midstate locally.
  76. - Bugfix: Document --no-adl and --gpu-platform
  77. - Bugfix: Remove redundant documentation of --auto-fan and --auto-gpu (they
  78. are in GPU-specific options)
  79. - CPU mining may not be included in binaries, but it's not deprecated for
  80. BFGMiner either
  81. - Bugfix: Restore case-insensitivity to input
  82. - Scroll the device list with up/down arrow keys, if it is overflowed
  83. - Use select statement to handle input
  84. - Bugfix: Actually check that the device fits in the individual summary window
  85. before trying to print it
  86. - Bugfix: Fix build without curses but with OpenCL
  87. - Bugfix: Don't show a Temperature key if it isn't known
  88. - BFGMiner-specific NEWS fix
  89. BFGMiner Version 2.5.1 - July 13, 2012
  90. - Replace CPU Algo in header with runtime
  91. - Bugfix: Calculate diff-1 utility to fix utility-hashrate on pools with
  92. diff!=1
  93. - Add utility hashrate to curses display
  94. - Show units in kh, Gh, Th, etc as needed to use at most 3 integer digits
  95. - Use FTD2XX.DLL on Windows to autodetect BitFORCE SHA256 devices
  96. - bitforce_get_result returns -1 on error now.
  97. - Check return value of read in BFgets
  98. - Bugfix: modminer: Count hashes done before work restart
  99. - Bugfix: modminer: Adapt "get nonce" error condition to new scanhash=>-1
  100. error API
  101. - Bugfix: Make our Windows nanosleep/sleep replacements standards-compliant
  102. (which fixes nmsleep) and include compat.h for bitforce (for sleep)
  103. - miner.php fix rig # when miners fail
  104. - Fix whitespace mangling.
  105. - bitforce: Use "full work" vs "nonce range" for kernel name
  106. - Abbrv. correction
  107. - Remove superfluous ave_wait
  108. - Put kname change for broken nonce-range back in
  109. - Add average wait time to api stats
  110. - Revert "Merge branch 'ave_time' of https://github.com/pshep/cgminer.git"
  111. - Add average return time to api stats
  112. - Missed one nonce-range disabling.
  113. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  114. poll comes around, all threads restart at the same time anyway.
  115. - Change timeouts to time-vals for accuracy.
  116. - More BFL tweaks. Add delay between closing and reopening port. Remove buffer
  117. clear in re-init Add kernel type (mini-rig or single)
  118. - Revert "Change BFL driver thread initialising to a constant 100ms delay
  119. between devices instead of a random arrangement."
  120. - Only try to shut down work cleanly if we've successfully connected and started
  121. mining.
  122. - Fix spelling.
  123. - modminer: Firmware returns 0xffffff00 immediately if we set clockspeed too
  124. high
  125. - Bugfix: modminer: Actually count good shares
  126. - Bugfix: Adapt OpenCL scanhash errors to driver API change (errors are now -1,
  127. not 0)
  128. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  129. poll comes around, all threads restart at the same time anyway.
  130. - fix API support for big endian machines
  131. - Bugfix: Use const struct device_api* for mt_disable
  132. - modminer: Show progress of bitstream upload
  133. - Bugfix: Don't declare devices SICK if they're just busy initializing
  134. - Bugfix: Calculate nsec in nmsleep correctly
  135. - miner.php allow rig names in number buttons
  136. - Change BFL driver thread initialising to a constant 100ms delay between
  137. devices instead of a random arrangement.
  138. - Spelling typo.
  139. - Time opencl work from start of queueing a kernel till it's flushed when
  140. calculating dynamic intensity.
  141. - Modify te scanhash API to use an int64_t and return -1 on error, allowing zero
  142. to be a valid return value.
  143. - Check for work restart after the hashmeter is invoked for we lose the hashes
  144. otherwise contributed in the count.
  145. - Remove disabled: label from mining thread function, using a separate
  146. mt_disable function.
  147. - Style changes.
  148. - Cope with signals interrupting the nanosleep of nmsleep.
  149. - Use standard cfsetispeed/cfsetospeed to set baud rate on *nix
  150. - miner.php split() flagged deprecated in PHP 5.3.0
  151. - Bugfix: Use nmsleep instead of restart_wait, so we always wait the full time
  152. BFGMiner Version 2.5.0 - July 7, 2012
  153. - Fix BitFORCE driver to not silenty discard valid shares (bug introduced by
  154. CGMiner merges)
  155. - Fix --benchmark not working since the dynamic addition of pools and pool
  156. stats.
  157. - Make disabling BFL nonce range support a warning since it has to be explicitly
  158. enabled on the command line now.
  159. - miner.php allow renaming table headers
  160. - Make bitforce nonce range support a command line option --bfl-range since
  161. enabling it decrease hashrate by 1%.
  162. - Add sanity checking to make sure we don't make sleep_ms less than 0 in
  163. bitforce.
  164. - The fastest minirig devices need a significantly smaller starting sleep time.
  165. - Use a much shorter initial sleep time to account for faster devices and nonce
  166. range working, and increase it if nonce range fails to work.
  167. - Use nmsleep instead of usleep in bitforce.
  168. - Provide a ms based sleep function that uses nanosleep to avoid the inaccuracy
  169. of usleep on SMP systems.
  170. - delay_time_ms is always set so need not be initialised in bitforce.
  171. - Increase bitforce timeout to 10 seconds.
  172. - Add more hysteresis and poll ~5 times to allow for timer delays in bitforce
  173. devices.
  174. - miner.php allow alternating line colours (off by default)
  175. - Display the actual duration of wait when it is greater than the cutoff.
  176. - Set nonce to maximum once we determine nonce range support is broken.
  177. - Initial wait time is always known so no need to zero it beforehand in
  178. bitforce.
  179. - No point counting wait time until the work is actually sent to bitforce
  180. devices.
  181. - Use string comparison functions instead of explicit comparisons.
  182. - Account for wait_ms time when nonce_range is in use on BFL.
  183. - Split nonces up into 1/5 chunks when nonce range is supported.
  184. - limit clear buffer iterations.
  185. - Ad fd check to clear buffer.
  186. - miner.php remove incorrect 'DATE' error message
  187. - miner.php allow summary header in custom pages
  188. - Disable nonce range support in BFL when broken support is detected.
  189. - Restart_wait is only called with a ms value so incorporate that into the
  190. function.
  191. - Only try to adjust dev width when curses is built in.
  192. - miner.php define custom sum fields as a simple array
  193. - Fix off-by-one error in nonce increment in bfl.
  194. - Use BE when setting nonce in bitforce nonce range work.
  195. - Enable nonce range in the normal init sequence for bfl.
  196. - Queue extra work at 2/3 differently depending on whether we're using nonce
  197. range or not.
  198. - Initially enable support for nonce range support on bfl, splitting nonces up
  199. into 3/4 size and only disable it if it fails on work submit.
  200. - Attempt to detect nonce range support in BFL by sending work requring its
  201. support.
  202. - Limit retrying on busy for up to BITFORCE_TIMEOUT_MS
  203. - Attempt to initialise while bitforce device returns BUSY.
  204. - Extend length of string that can be passed to BFL devices.
  205. - Fix signedness warning.
  206. - Adjust device width column to be consistent.
  207. - Use cgpu-> not gpus[] in watchdog thread.
  208. - Add api stats (sleep time)
  209. - Timing tweaks Added long and short timeouts, short for detecting throttling,
  210. long to give up totally. Reset sleep time when device re-initialised Still check
  211. results after timeout Back up a larger time if result on first poll.
  212. - Add API Notify counter 'Comms Error'
  213. - Style police on api.c
  214. - Do all logging outside of the bitforce mutex locking to avoid deadlocks.
  215. - Remove applog call from bfwrite to prevent grabbing nested mutexes.
  216. - Bitforce style changes.
  217. - Minor style changes.
  218. - Remove needless roundl define.
  219. - Made JSON error message verbose.
  220. - Fine-tune timing adjustment. Also remove old work_restart timing.
  221. - Check for gpu return times of >= 0, not just 0, to fix intensity dropping to
  222. -10.
  223. - Restart is zeroed in the mining thread so no need to do it inside the bitforce
  224. code.
  225. - More improvements to comms. BFL return nothing when throttling, so should not
  226. be considered an error. Instead repeat with a longer delay.
  227. - Polling every 10ms there's not much point checking the pthread_cond_timedwait
  228. as it just adds overhead. Simply check the value of work_restart in the bfl main
  229. polling loop.
  230. - Use a pthread conditional that is broadcast whenever work restarts are
  231. required. Create a generic wait function waiting a specified time on that
  232. conditional that returns if the condition is met or a specified time passed to
  233. it has elapsed. Use this to do smarter polling in bitforce to abort work, queue
  234. more work, and check for results to minimise time spent working needlessly.
  235. - Add busy time to wait time.
  236. - api.c put version up to 1.14
  237. - Add tiny delay after writing to BFL Change BFL errors to something more human
  238. readable Send work busy re-tries after 10ms delay
  239. - Fix race condition in thread creation that could under some conditions crash
  240. BFGMiner at startup
  241. BFGMiner Version 2.4.4 - July 1, 2012
  242. - Fix builds on non gnu platforms.
  243. - api.c ensure old mode is always available when not using --api-groups + quit()
  244. on param errors
  245. - Implement rudimentary X-Mining-Hashrate support.
  246. - Detect large swings in temperature when below the target temperature range and
  247. change fan by amounts dependant on the value of tdiff.
  248. - Adjust the fanspeed by the magnitude of the temperature difference when in the
  249. optimal range.
  250. - Revert "Restarting cgminer from within after ADL has been corrupted only leads
  251. to a crash. Display a warning only and disable fanspeed monitoring."
  252. - api.c fix json already closed
  253. - implement and document API option --api-groups
  254. - Put upper bounds to under 2 hours that work can be rolled into the future for
  255. bitcoind will deem it invalid beyond that.
  256. - define API option --api-groups
  257. - api.c allow unwell devices to be enabled so they can be cured
  258. - miner.php - fix/enable autorefresh for custom pages
  259. - miner.php allow custom summary pages - new 'Mobile' summary
  260. - Work around pools that advertise very low expire= time inappropriately as this
  261. leads to many false positives for stale shares detected.
  262. - Only show ztex board count if any exist.
  263. - There is no need for work to be a union in struct workio_cmd
  264. - fpgautils.c include a debug message for all unknown open errors
  265. - Don't keep rolling work right up to the expire= cut off. Use 2/3 of the time
  266. between the scantime and the expiry as cutoff for reusing work.
  267. - Log a specific error when serial opens fail due to lack of user permissions
  268. - Increase GPU timing resolution to microsecond and add sanity check to ensure
  269. times are positive.
  270. - Opencl code may start executing before the clfinish order is given to it so
  271. get the start timing used for dynamic intensity from before the kernel is
  272. queued.
  273. - fpgautils.c - set BAUD rate according to termio spec
  274. - fpgautils.c - linux ordering back to the correct way
  275. - miner.php remove unneeded '.'s
  276. - miner.php add auto refresh options
  277. - miner.php add 'restart' next to 'quit'
  278. - miner.php make fontname/size configurable with myminer.php
  279. - Make the pools array a dynamically allocated array to allow unlimited pools to
  280. be added.
  281. - Make the devices array a dynamically allocated array of pointers to allow
  282. unlimited devices.
  283. - Dynamic intensity for GPUs should be calculated on a per device basis. Clean
  284. up the code to only calculate it if required as well.
  285. - Bugfix: Provide alternative to JSON_ENCODE_ANY for Jansson 1.x
  286. - Use a queueing bool set under control_lock to prevent multiple calls to
  287. queue_request racing.
  288. - Use the work clone flag to determine if we should subtract it from the total
  289. queued variable and provide a subtract queued function to prevent looping over
  290. locked code.
  291. - Don't decrement staged extras count from longpoll work.
  292. - Count longpoll's contribution to the queue.
  293. - Increase queued count before pushing message.
  294. - Test we have enough work queued for pools with and without rolltime
  295. capability.
  296. - As work is sorted by age, we can discard the oldest work at regular intervals
  297. to keep only 1 of the newest work items per mining thread.
  298. - Roll work again after duplicating it to prevent duplicates on return to the
  299. clone function.
  300. - Abstract out work cloning and clone $mining_threads copies whenever a rollable
  301. work item is found and return a clone instead.
  302. - api.c display Pool Av in json
  303. - Take into account average getwork delay as a marker of pool communications
  304. when considering work stale.
  305. - Work out a rolling average getwork delay stored in pool_stats.
  306. - Getwork delay in stats should include retries for each getwork call.
  307. - Walk through the thread list instead of searching for them when disabling
  308. threads for dynamic mode.
  309. - Extend nrolltime to support the expiry= parameter. Do this by turning the
  310. rolltime bool into an integer set to the expiry time. If the pool supports
  311. rolltime but not expiry= then set the expiry time to the standard scantime.
  312. - When disabling fanspeed monitoring on adl failure, remove any twin GPU
  313. association. This could have been leading to hangs on machines with dual GPU
  314. cards when ADL failed.
  315. - modminer: Don't delay 2nd+ FPGAs during work restart
  316. - Disable OpenCL code when not available.
  317. - Fix openwrt crashing on regeneratehash() by making check_solve a noop.
  318. - FPGA - allow device detect override without an open failure
  319. - Fix sign warning.
  320. - Bugfix: icarus: properly store/restore info and work end times across longpoll
  321. restarts
  322. - Enable modminer for release builds
  323. BFGMiner Version 2.4.3 - June 14, 2012
  324. - Change device API "name" to reflect driver name abbreviation instead of device type name
  325. - miner.php allow a separate user settings file
  326. - modminer: Implement extended device stats to expose each Board to the RPC API
  327. - Bugfix: Use new cgpu->thr for longpoll waking
  328. - bitforce: Remove 4.5s delay before polling starts, since MiniRig finishes sooner
  329. - FPGA - allow device detect override without an open failure
  330. - Bugfix: Missing printf value in merge from cgminer
  331. - Ensure C compiler is in C99 mode
  332. - Add CPU core count detection for BSD/Mac
  333. - Set CPU mining idle priority on Windows
  334. - can_roll and should_roll should have no bearing on the cycle period within the
  335. miner_thread so remove it.
  336. - Check for strategy being changed to load balance when enabling LPs.
  337. - Check that all threads on the device that called get_work are waiting on
  338. getwork before considering the pool lagging.
  339. - Iterate over each thread belonging to each device in the hashmeter instead of
  340. searching for them now that they're a list.
  341. - When using rotate pool strategy, ensure we only select from alive enabled
  342. pools.
  343. - Start longpoll from every pool when load balance strategy is in use.
  344. - Add mandatory and block fields to the work struct. Flag any shares that are
  345. detected as blocks as mandatory to submit, along with longpoll work from a
  346. previously rejecting pool.
  347. - Consider the fan optimal if fanspeed is dropping but within the optimal speed
  348. window.
  349. - Fix typo in some API messages (succeess/success)
  350. - api.c MMQ stat bugs
  351. - Bugfix: Fix warnings when built without libudev support
  352. - Bugfix: slay a variety of warnings
  353. - Bugfix: modminer: Fix unsigned/signed comparison and similar warnings
  354. - API add ModMinerQuad support
  355. - Bugfix: Honour forceauto parameter in serial_detect functions
  356. - modminer: Temperature sensor improvements
  357. - modminer: Make log messages more consistent in format
  358. - Only adjust GPU speed up if the fanspeed is within the normal fanrange and
  359. hasn't been turned to maximum speed under overheat conditions.
  360. - ModMiner use valid .name
  361. - New driver: BTCFPGA ModMiner
  362. - Abstract generally useful FPGA code into fpgautils.c
  363. - API add stats for pool getworks
  364. - miner.php option to hide specific fields from the display
  365. - miner.php add version numbers to the summary page
  366. - Update debian configs to v2.4.2
  367. - Add API and FPGA READMEs into Makefile to be included in source distribution.
  368. - Icarus - fix unit64_t printf warnings
  369. BFGMiner Version 2.4.2 - June 2, 2012
  370. - Use epoll to immediately interrupt Icarus with new work on longpolls (Linux)
  371. - API.class compiled with Java SE 6.0_03 - works with Win7x64
  372. - miner.php highlight devs too slow finding shares (possibly failing)
  373. - API update version to V1.11 and document changes
  374. - API save default config file if none specified
  375. - api.c save success incorrectly returns error
  376. - api.c replace BUFSIZ (linux/windows have different values)
  377. - Move RPC API content out of README to API-README
  378. - Open a longpoll connection if a pool is in the REJECTING state as it's the
  379. only way to re-enable it automatically.
  380. - Use only one longpoll as much as possible by using a pthread conditional
  381. broadcast that each longpoll thread waits on and checks if it's the current pool
  382. before
  383. - If shares are known stale, don't use them to decide to disable a pool for
  384. sequential rejects.
  385. - Restarting cgminer from within after ADL has been corrupted only leads to a
  386. crash. Display a warning only and disable fanspeed monitoring.
  387. - Icarus: fix abort calculation/allow user specified abort
  388. - Icarus: make --icarus-timing hidden and document it in FPGA-README
  389. - Icarus: high accuracy timing and other bitstream speed support
  390. - add-MIPSEB-to-icarus-for-BIG_ENDIAN
  391. - work_decode only needs swab32 on midstate under BIG ENDIAN
  392. - add compile command to api-example.c
  393. - save config bugfix: writing an extra ',' when no gpus
  394. - Add dpkg-source commits
  395. BFGMiner Version 2.4.1 - May 6, 2012
  396. - Icarus: Calibrate hashrate yet even more accurately
  397. - In the unlikely event of finding a block, display the block solved count with
  398. the pool it came from for auditing.
  399. - Display the device summary on exit even if a device has been disabled.
  400. - Use correct pool enabled enums in api.c.
  401. - Import Debian packaging configs
  402. - Ensure we test for a pool recovering from idle so long as it's not set to
  403. disabled.
  404. - Fix pool number display.
  405. - Give BFGMiner -T message only if curses is in use.
  406. - Reinit_adl is no longer used.
  407. - API 'stats' allow devices to add their own stats also for testing/debug
  408. - API add getwork stats to BFGMiner - accesable from API 'stats'
  409. - Don't initialise variables to zero when in global scope since they're already
  410. initialised.
  411. - Get rid of unitialised variable warning when it's false.
  412. - Move a pool to POOL_REJECTING to be disabled only after 3 minutes of
  413. continuous rejected shares.
  414. - Some tweaks to reporting and logging.
  415. - API support new pool status
  416. - Add a temporarily disabled state for enabled pools called POOL_REJECTING and
  417. use the work from each longpoll to help determine when a rejecting pool has
  418. started working again. Switch pools based on the multipool strategy once a pool
  419. is re-enabled.
  420. - Removing extra debug
  421. - Fix the benchmark feature by bypassing the new networking code.
  422. - Reset sequential reject counter after a pool is disabled for when it is
  423. re-enabled.
  424. - ztex updateFreq was always reporting on fpga 0
  425. - Trying harder to get 1.15y working
  426. - Specifying threads on multi fpga boards extra cgpu
  427. - Missing the add cgpu per extra fpga on 1.15y boards
  428. - API add last share time to each pool
  429. - Don't try to reap curls if benchmarking is enabled.
  430. BFGMiner Version 2.4.0 - May 3, 2012
  431. - Only show longpoll warning once when it has failed.
  432. - Convert hashes to an unsigned long long as well.
  433. - Detect pools that have issues represented by endless rejected shares and
  434. disable them, with a parameter to optionally disable this feature.
  435. - Bugfix: Use a 64-bit type for hashes_done (miner_thread) since it can overflow
  436. 32-bit on some FPGAs
  437. - Implement an older header fix for a label existing before the pthread_cleanup
  438. macro.
  439. - Limit the number of curls we recruit on communication failures and with
  440. delaynet enabled to 5 by maintaining a per-pool curl count, and using a pthread
  441. conditional that wakes up when one is returned to the ring buffer.
  442. - Generalise add_pool() functions since they're repeated in add_pool_details.
  443. - Bugfix: Return failure, rather than quit, if BFwrite fails
  444. - Disable failing devices such that the user can attempt to re-enable them
  445. - Bugfix: thread_shutdown shouldn't try to free the device, since it's needed
  446. afterward
  447. - API bool's and 1TBS fixes
  448. - Icarus - minimise code delays and name timer variables
  449. - api.c V1.9 add 'restart' + redesign 'quit' so thread exits cleanly
  450. - api.c bug - remove extra ']'s in notify command
  451. - Increase pool watch interval to 30 seconds.
  452. - Reap curls that are unused for over a minute. This allows connections to be
  453. closed, thereby allowing the number of curl handles to always be the minimum
  454. necessary to not delay networking.
  455. - Use the ringbuffer of curls from the same pool for submit as well as getwork
  456. threads. Since the curl handles were already connected to the same pool and are
  457. immediately available, share submission will not be delayed by getworks.
  458. - Implement a scaleable networking framework designed to cope with any sized
  459. network requirements, yet minimise the number of connections being reopened. Do
  460. this by create a ring buffer linked list of curl handles to be used by getwork,
  461. recruiting extra handles when none is immediately available.
  462. - There is no need for the submit and getwork curls to be tied to the pool
  463. struct.
  464. - Do not recruit extra connection threads if there have been connection errors
  465. to the pool in question.
  466. - We should not retry submitting shares indefinitely or we may end up with a
  467. huge backlog during network outages, so discard stale shares if we failed to
  468. submit them and they've become stale in the interim.
  469. BFGMiner Version 2.3.6 - April 29, 2012
  470. - Shorten stale share messages slightly.
  471. - Protect the freeing of current_hash under mutex_lock to prevent racing on it
  472. when set_curblock is hit concurrently.
  473. - Change default behaviour to submitting stale, removing the --submit-stale
  474. option and adding a --no-submit-stale option.
  475. - Make sure to start the getwork and submit threads when a pool is added on the
  476. fly. This fixes a crash when a pool is added to running BFGMiner and then
  477. switched to.
  478. - Faster hardware can easily outstrip the speed we can get work and submit
  479. shares when using only one connection per pool.
  480. - Test the queued list to see if any get/submits are already queued and if they
  481. are, start recruiting extra connections by generating new threads.
  482. - This allows us to reuse network connections at low loads but recuit new open
  483. connections as they're needed, so that BFGMiner can scale to hardware of any
  484. size.
  485. BFGMiner Version 2.3.5 - April 28, 2012
  486. - Restarting BFGMiner leads to a socket that can't be bound for 60 seconds, so
  487. increase the interval that API binding waits to 30 seconds to minimise the
  488. number of times it will retry, spamming the logs.
  489. - Give a longpoll message for any longpoll that detects a block change, primary
  490. or backup, and also display which pool it was.
  491. - Decrease utility display to one decimal place.
  492. - Small cosmetic output alignment.
  493. - Add pool number to stale share message.
  494. - Add space to log output now that there is more screen real estate available.
  495. - Indentation clean up.
  496. - Remove thread id display from rejected shares as well.
  497. - Merge pull request #185 from Diapolo/diakgcn
  498. - add goffset support for diakgcn with -v 1 and update kernel version
  499. - Set have_longpoll to true when there is at least one pool with longpoll.
  500. - Don't display the thread ID since it adds no useful information over the
  501. device number.
  502. - Don't display the first 8 bytes of a share since they will always be zero at
  503. >= 1 difficulty.
  504. - work->longpoll is reset across test_work_current so we need to recheck what
  505. pool it belongs to.
  506. - Use longpolls from backup pools with failover-only enabled just to check for
  507. block changes, but don't use them as work.
  508. - Start longpoll only after we have tried to extract the longpoll URL.
  509. - Check for submitold flag on resubmit of shares, and give different message for
  510. stale shares on retry.
  511. - Check for submitold before submitstale.
  512. - Don't force fresh curl connections on anything but longpoll threads.
  513. - Create one longpoll thread per pool, using backup pools for those pools that
  514. don't have longpoll.
  515. - Use the work created from the longpoll return only if we don't have
  516. failover-enabled, and only flag the work as a longpoll if it is the current
  517. pool.
  518. - This will work around the problem of trying to restart the single longpoll
  519. thread on pool changes that was leading to race conditions.
  520. - It will also have less work restarts from the multiple longpolls received from
  521. different pools.
  522. - Remove the invalid entries from the example configuration file.
  523. - Add support for latest ATI SDK on windows.
  524. - Export missing function from libztex.
  525. - miner.php change socktimeoutsec = 10 (it only waits once)
  526. - Bugfix: Make initial_args a const char** to satisfy exec argument type warning
  527. (on Windows only)
  528. - miner.php add a timeout so you don't sit and wait ... forever
  529. - Create discrete persistent submit and get work threads per pool, thus allowing
  530. all submitworks belonging to the same pool to reuse the same curl handle, and
  531. all getworks to reuse their own handle.
  532. - Use separate handles for submission to not make getwork potentially delay
  533. share submission which is time critical.
  534. - This will allow much more reusing of persistent connections instead of opening
  535. new ones which can flood routers.
  536. - This mandated a rework of the extra longpoll support (for when pools are
  537. switched) and this is managed by restarting longpoll cleanly and waiting for a
  538. thread join.
  539. - miner.php only show the current date header once
  540. - miner.php also add current time like single rig page
  541. - miner.php display rig 'when' table at top of the multi-rig summary page
  542. - README - add some Ztex details
  543. - api.c include zTex in the FPGA support list
  544. - api.c ensure 'devs' shows PGA's when only PGA code is compiled
  545. - miner.c sharelog code consistency and compile warning fix
  546. - README correct API version number
  547. - README spelling error
  548. - api.c combine all pairs of sprintfs()
  549. - api.c uncomment and use BLANK (and COMMA)
  550. - Code style cleanup
  551. - Annotating frequency changes with the changed from value
  552. - README clarification of 'notify' command
  553. - README update for API RPC 'devdetails'
  554. - api.c 'devdetails' list static details of devices
  555. - Using less heap space as my TP-Link seems to not handle this much
  556. BFGMiner Version 2.3.4 - April 26, 2012
  557. - New maintainership of code with modular FPGA/GPU focus, under BFGMiner name
  558. - Complete working support for cross-compiling Windows builds on Linux.
  559. - Fix usage of low --scan-time settings so it doesn't busy-loop
  560. - JSON API: Add new 'devdetail' command to get fixed device information
  561. - JSON API: Implement driver abstraction for extra device status
  562. - Icarus: Use epoll to wait for serial port input properly, when available
  563. - Icarus: Workaround buggy USB-UART that causes Icarus to stop mining rarely
  564. - Icarus: Estimate mining hashrate correctly, calibrated from real-world data
  565. - Icarus: Parallelize work setup with Icarus hash search improving performance
  566. - Icarus: More reliable detection and runtime
  567. - OpenCL: Move GPU-specific data fetching from JSON API to OpenCL driver
  568. - OpenCL: Dynamically load OpenCL library, to be more vendor-independent and
  569. allow use without actually having OpenCL (i.e. FPGA-only rigs).
  570. CGMiner Version 2.3.4 - April 25, 2012
  571. - Extensively document the cause of GPU device issues and the use of --gpu-map.
  572. - Support for share logging
  573. - Detect poorly performing combination of SDK and phatk kernel and add verbose
  574. warning at startup.
  575. - Icarus update to new add_cgpu()
  576. - Icarus driver working with Linux and Windows
  577. - api.c fix unused variable compile warning
  578. - Display all OpenCL devices when -n is called as well to allow debugging of
  579. differential mapping of OpenCL to ADL.
  580. - Add a --gpu-map option which will allow arbitrarily mapping ADL devices to
  581. OpenCL devices for instances where association by enumeration alone fails.
  582. - Increase upper limit on number of extra items to queue as some FPGA code can't
  583. yet reliably keep many devices busy.
  584. - Display configuration file information when -c option is passed and only when
  585. file exists on loading default config file.
  586. - Display configuration file loaded, if any, and debug output if configuration
  587. file parsing failed.
  588. - Add missing ztex header to Makefile for distribution.
  589. - Document long-form COM port device names on Windows, required to specify
  590. serial ports above 9
  591. - Include ztex bitstreams firmware in distribution and install if configured in.
  592. - Style police on driver-ztex.c
  593. - work_restart should only be changed by cgminer.c now
  594. - Shut down the api cleanly when the api thread is cancelled. This should allow
  595. the api socket to be closed successfully to next be reopened with app_restart.
  596. - Make a union for cgpu device handles, and rename "device" to "device_ztex"
  597. since it's Ztex-specific
  598. - Initialise name variable.
  599. - Remove unnecessary check for variable that always has memory allocated.
  600. - Bugfix: Missing "break" no-op in default case
  601. - Make the status window and log window as large as can fit on startup,
  602. rechecking to see if it can be enlarged after the fact. This allows any number
  603. of devices to be displayed provided the window is made long enough without
  604. corrupting the output.
  605. - Style police on libztex.c.
  606. - API add removepool like the screen interface
  607. - api.c escape required characters in return strings + pools returns the
  608. username
  609. - Set lp_path to NULL after free for consistency.
  610. - Removing dmalloc import left behind by mistake
  611. - Fixing leak in resp_hdr_cb
  612. - miner.php warning highlight GPU stats if they are zero (e.g. ADL not enabled)
  613. - miner.php highlight any device that isn't 'Enabled'
  614. - miner.php highlight any Status that isn't 'Alive'
  615. - miner.php optionally support multiple rigs
  616. - Initial Ztex support 1.15x board.
  617. CGMiner Version 2.3.3 - April 15, 2012
  618. - Don't even display that cpumining is disabled on ./configure to discourage
  619. people from enabling it.
  620. - Do a complete cgminer restart if the ATI Display Library fails, as it does on
  621. windows after running for some time, when fanspeed reporting fails.
  622. - Cache the initial arguments passed to cgminer and implement an attempted
  623. restart option from the settings menu.
  624. - Disable per-device status lines when there are more than 8 devices since
  625. screen output will be corrupted, enumerating them to the log output instead at
  626. startup.
  627. - Reuse Vals[] array more than W[] till they're re-initialised on the second
  628. sha256 cycle in poclbm kernel.
  629. - Minor variable alignment in poclbm kernel.
  630. - Make sure to disable devices with any status not being DEV_ENABLED to ensure
  631. that thermal cutoff code works as it was setting the status to DEV_RECOVER.
  632. - Re-initialising ADL simply made the driver fail since it is corruption over
  633. time within the windows driver that's responsible. Revert "Attempt to
  634. re-initialise ADL should a device that previously reported fanspeed stops
  635. reporting it."
  636. - Microoptimise poclbm kernel by ordering Val variables according to usage
  637. frequency.
  638. CGMiner Version 2.3.2 - March 31, 2012
  639. - Damping small changes in hashrate so dramatically has the tendency to always
  640. make the hashrate underread so go back to gentle damping instead.
  641. - Revert the crossover of variables from Vals to W in poclbm kernel now that
  642. Vals are the first declared variables so they're used more frequently.
  643. - Vals variables appearing first in the array in poclbm is faster.
  644. - Change the preferred vector width to 1 for Tahiti only, not all poclbm
  645. kernels.
  646. - Use a time constant 0.63 for when large changes in hashrate are detected to
  647. damp change in case the large change is an aliasing artefact instead of a real
  648. chang
  649. - Only increment stale counter if the detected stales are discarded.
  650. - Attempt to re-initialise ADL should a device that previously reported fanspeed
  651. stops reporting it.
  652. - Move the ADL setup and clearing to separate functions and provide a reinit_adl
  653. function to be used when adl fails while running.
  654. - Use slightly more damping on the decay time function in the never-ending quest
  655. to smooth off the hashmeter.
  656. - Set the starting fanspeed to a safe and fairly neutral 50% when autofan is
  657. enabled.
  658. - Provide locking around updates of cgpu hashrates as well to prevent multiple
  659. threads accessing data fields on the same device.
  660. - Display the beginning of the new block in verbose mode in the logs.
  661. - Reinstate old diablo kernel variable ordering from 120222, adding only goffset
  662. and vector size hint. The massive variable ordering change only helped one SDK
  663. on
  664. - Change the version number on the correct kernels.
  665. - api.c devicecode/osinfo incorrectly swapped for json
  666. - Add extensive instructions on how to make a native windows build.
  667. - Update version numbers of poclbm and diablo kernels as their APIs have also
  668. changed.
  669. - Use global offset parameter to diablo and poclbm kernel ONLY for 1 vector
  670. kernels.
  671. - Use poclbm preferentially on Tahiti now regardless of SDK.
  672. - Remove unused constant passed to poclbm.
  673. - Clean up use of macros in poclbm and use bitselect everywhere possible.
  674. - Add vector type hint to diablo kernel.
  675. - Add worksize and vector attribute hints to the poclbm kernel.
  676. - Spaces for non-aligned variables in poclbm.
  677. - More tidying of poclbm.
  678. - Swap Vals and W variables where they can overlap in poclbm.
  679. - More tidying of poclbm.
  680. - Tidy up first half of poclbm.
  681. - Clean up use of any() by diablo and poclbm kernels.
  682. - Minor variable symmetry changes in poclbm.
  683. - Put additions on separate lines for consistency in poclbm.
  684. - Consolidate last use of W11 into Vals4 in poclbm.
  685. - Change email due to SPAM
  686. - api.c miner.php add a '*' to the front of all notify counters - simplifies
  687. future support of new counters
  688. - miner.php add display 'notify' command
  689. - Small change to help arch's without processor affinity
  690. - Fix bitforce compile error
  691. - api.c notify should report disabled devices also - of course
  692. - API returns the simple device history with the 'notify' command
  693. - code changes for supporting a simple device history
  694. - api.c Report an OS string in config to help with device issues
  695. - api.c fix Log Interval - integer in JSON
  696. - api.c config 'Device Code' to show list of compiled devices + README
  697. - api.c increase buffer size close to current code allowable limit
  698. - removed 8-component vector support from kernel, as this is not supported in
  699. CGMINER anyway
  700. - forgot to update kernel modification date, fixed ;)
  701. - reordered an addition in the kernel, which results in less instructions used
  702. in the GPU ISA code for GCN
  703. - miner.php: option for readonly or check privileged access
  704. - Ignore reduntant-with-build options --disable-gpu, --no-adl, and --no-restart
  705. - miner.php: ereg_replace is DEPRECATED so use preg_replace instead
  706. - Make curses TUI support optional at compile-time.
  707. - Bugfix: AC_ARG_WITH provides withval instead of enableval
  708. - miner.php split devs output for different devices
  709. - api.c: correct error messages
  710. - icarus.c modify (regular) timeout warning to only be debug
  711. - icarus.c set the windows TODO timeout
  712. - Allow specifying a specific driver for --scan-serial
  713. - optimized nonce-check and output code for -v 2 and -v 4
  714. - Bugfix: Check for libudev header (not just library) in configure, and document
  715. optional dependency
  716. - Add API support for Icarus and Bitforce
  717. - Next API version is 1.4 (1.3 is current)
  718. - README/api.c add "When" the request was processed to STATUS
  719. - Bugfix: ZLX to read BitFORCE temp, not ZKX -.-
  720. - Use libudev to autodetect BitFORCE GPUs, if available
  721. - Use the return value of fan_autotune to set fan_optimal instead of passing it
  722. as a pointer.
  723. - Pass the lasttemp from the device we're using to adjust fanspeed in twin
  724. devices.
  725. - fix the name to 3 chars, fix the multi-icarus support
  726. - Bugfix: "-S auto" is the default if no -S is specified, and there is no such
  727. delay in using it
  728. - README add information missing from --scan-serial
  729. - Update README RPC API Version comment
  730. - Bugfix: Allow enabling CPU even without OpenCL support
  731. - Change failed-to-mine number of requested shares messge to avoid segfault on
  732. recursive calling of quit().
  733. - Get rid of extra char which is just truncated in poclbm kernel.
  734. - only small code formating changes
  735. - removed vec_step() as this could lead to errors on older SDKs
  736. - unified code for generating nonce in kernel and moved addition of base to the
  737. end -> faster
  738. CGMiner Version 2.3.1 - February 24, 2012
  739. - Revert input and output code on diakgcn and phatk kernels to old style which
  740. worked better for older hardware and SDKs.
  741. - Add a vector*worksize parameter passed to those kernels to avoid one op.
  742. - Increase the speed of hashrate adaptation.
  743. - Only send out extra longpoll requests if we want longpolls.
  744. - API implement addpool command
  745. - API return the untouched Total MH also (API now version 1.3)
  746. - Add enable/disablepool to miner.php example and reduce font size 1pt
  747. CGMiner Version 2.3.0 - February 23, 2012
  748. - Consider extra longpoll work items as staged_extra so as to make sure we queue
  749. more work if queueing regular work items as longpolls.
  750. - Use diablo kernel on all future SDKs for Tahiti and set preferred vector width
  751. to 1 on poclbm kernel only.
  752. - Explicitly type the constants in diakgcn kernel as uint, to be in line with
  753. poclbm kernel.
  754. - Reset all hash counters at the same time as resetting start times to get
  755. accurate hashrates on exiting which is mandatory for benchmarking.
  756. - Report thread out before it starts to avoid being flagged as sick when waiting
  757. for the first work item.
  758. - Don't disable and re-enable devices as they may recover and in the meantime
  759. have their status set to OFF.
  760. - API new commands enablepool and disablepool (version already incremented)
  761. - Tolerate new-format temperature readings for bitforce
  762. - Modify cgminer.c pool control to allow API to call it
  763. - Bugfix: Fix BitFORCE driver memory leak in debug logging
  764. - Extra byte was being unused in poclbm leading to failure on some platforms.
  765. - Explicitly type the constants in poclbm kernel as uint.
  766. - Don't save 'include' when saving the configuration
  767. - Allow configuration file to include another recursively
  768. - Use the SDK and hardware information to choose good performing default
  769. kernels.
  770. - Move phatk kernel to offset vector based nonce bases as well.
  771. - Add a --benchmark feature which works on a fake item indefinitely to compare
  772. device performance without any server or networking influence.
  773. - Allow writing of multiple worksizes to the configuration file.
  774. - Allow writing of multiple vector sizes to the configuration file.
  775. - Allow writing of multiple kernels to the configuration file.
  776. - Allow multiple different kernels to be chosen per device.
  777. - Allow the worksize to be set per-device.
  778. - Allow different vectors to be set per device.
  779. - If we're well below the target temperature, increase gpu engine speed back to
  780. maximum in case we have gotten lost between profiles during an idle period.
  781. - We should be setting the value of fan_optimal, not its address.
  782. - As all kernels will be new versions it's an opportunity to change the .bin
  783. format and make it simpler. Specifying bitalign is redundant and long can be l.
  784. - Use any() in kernel output code.
  785. - Put the nonce for each vector offset in advance, avoiding one extra addition
  786. in the kernel.
  787. - Reset times after all mining threads are started to make estimating hashrates
  788. easier at startup.
  789. - Bugfix: allow no-exec (NX) stack
  790. - Fix minor warning.
  791. - fix the bitforce.c code style follow 1TBS
  792. - fix icarus.c compile warning
  793. - small changes to speedup no vec for AMD 898.1 OCL runtime
  794. - Update licensing to GPL V3.
  795. - Reset the longpoll flag after it's been used once to prevent it restarting
  796. work again.
  797. - Begin import of DiabloMiner kernel.
  798. - Modify API debug messages to say API instead of DBG
  799. - When API shuts down cgminer don't kill itself
  800. - Don't make rolled work from the longpoll be seen as other longpoll work items.
  801. - API add 'privileged' command so can verify access level
  802. - Set the lp_sent variable under lock since there will almost always be a race
  803. on setting this variable, potentially leading to multiple LPs being sent out.
  804. - API restrict access to all non display commands by default
  805. - Update API version to 1.2 for new 'Log Interval'
  806. - API add --log Interval to 'config' reply
  807. - --api-allow special case 0/0 means all
  808. CGMiner Version 2.2.7 - February 20, 2012
  809. - Send out extra longpolls when we have switched pools and the longpoll thread
  810. is still bound to the old one. This is particularly useful with p2pool where
  811. longpolls do not correlate with main bitcoin block change and would have led to
  812. high reject rates on failover.
  813. - Store whether a work item is the result of a longpoll or not in struct work
  814. and use it to help determine block changes directly from the work longpoll bool.
  815. - Keep track of when a longpoll has been sent for a pool and if the current pool
  816. is requesting work but has not sent a longpoll request, convert one of the work
  817. items to a longpoll.
  818. - Store the longpoll url in the pool struct and update it from the pool_active
  819. test in case it changes. This is to allow further changes to longpoll management
  820. on switching pools.
  821. - Re-check for a longpoll supporting pool every 30 seconds if none is found
  822. initially.
  823. - Report threads as busy waiting on getwork on startup to avoid them being
  824. flagged sick on startup during slow networking.
  825. - Allow devices that are disabled due to overheating to be flagged as recovering
  826. instead of disabling them and re-enable them if they're below ideal temperatures
  827. - Tahiti prefers worksize 64 with poclbm.
  828. - No need to expressly retain the opencl program now that the zero binary issue
  829. is fixed. This actually fixes cgminer to work with the latest SDK included with
  830. the ATI catalyst driver 12.2.
  831. - Show error code on any opencl failure status.
  832. - Add detection for version 898.1 SDK as well but only give SDK 2.6 warning once
  833. on startup instead of with each device initialisation.
  834. - Always use a fresh connection for longpoll as prolonged persistent connections
  835. can fail for many reasons.
  836. - Keep track of intended engine clock speed and only adjust up if it's higher
  837. than the last intended speed. This avoids setting the clock speed to one
  838. relative to a lower profile one by mistake.
  839. - Use gpu-memdiff on startup if an engine clockspeed is set and a memdiff value
  840. is set.
  841. - Revert "Adjust engine speed up according to performance level engine setting,
  842. not the current engine speed." - ineffectual.
  843. - Freeze the queues on all threads that are sent the pause message to prevent
  844. them trying to start up again with saved pings in their queues.
  845. - Updates to diakgcn kernel/
  846. - Consolidate all screen updates to the watchdog thread and touch both windows
  847. before refresh.
  848. - Curses will be disabled in clean_up so don't do it early in kill_work, and
  849. disable_adl so that GPU settings may be restored to normal in case shutting down
  850. curses leads to instability on windows.
  851. - Stop the mining threads before trying to kill them.
  852. - Plain refresh() does not give reliably screen updates so get rid of all uses
  853. of it.
  854. - First release with working diakgcn kernel.
  855. CGMiner Version 2.2.6 - February 16, 2012
  856. - Provide warning on each startup about sdk 2.6
  857. - Fix unused warnings on win32.
  858. - bitforce: Simplify BFopen WIN32 ifdef/else
  859. - Fix initialization warning with jansson 1.3
  860. - bitforce: Cleanup extraneous TODO that isn't needed
  861. - Move tcsetattr (and new tcflush) into *nix BFopen to simplify things a bit
  862. - Add message explaining 2nd thread disabling for dynamic mode and how to tune
  863. it.
  864. - Move logwindow down once number of devices is known.
  865. - Automatically choose phatk kernel for bitalign non-gcn ATI cards, and then
  866. only select poclbm if SDK2.6 is detected.
  867. - Allow the refresh interval to be adjusted in dynamic intensity with a
  868. --gpu-dyninterval parameter.
  869. - Make curses display visible right from the beginning and fix the window sizes
  870. so the initial messages don't get lost once the status window is drawn.
  871. - The amount of work scanned can fluctuate when intensity changes and since we
  872. do this one cycle behind, we increment the work more than enough to prevent
  873. repeati
  874. - bitforce: Set a 30 second timeout for serial port on Windows, since the
  875. default is undefined
  876. - Use PreVal4addT1 instead of PreVal4 in poclbm kernel.
  877. - Import PreVal4 and PreVal0 into poclbm kernel.
  878. - Import more prepared constants into poclbm kernel.
  879. - Keep variables in one array but use Vals[] name for consistency with other
  880. kernel designs.
  881. - Replace constants that are mandatorily added in poclbm kernel with one value.
  882. - Remove addition of final constant before testing for result in poclbm kernel.
  883. - Hand optimise variable addition order.
  884. - Hand optimise first variable declaration order in poclbm kernel.
  885. - Radical reordering machine based first pass to change variables as late as
  886. possible, bringing their usage close together.
  887. - fix strcpy NULL pointer if env HOME unset.
  888. - bitforce: Disable automatic scanning when at least one device is specified
  889. manually
  890. - Unroll all poclbm additions to enable further optimisations.
  891. CGMiner Version 2.2.5 - February 13, 2012
  892. - Make output buffer write only as per Diapolo's suggestion.
  893. - Constify nonce in poclbm.
  894. - Use local and group id on poclbm kernel as well.
  895. - Microoptimise phatk kernel on return code.
  896. - Adjust engine speed up according to performance level engine setting, not the
  897. current engine speed.
  898. - Try to load a binary if we've defaulted to the poclbm kernel on SDK2.6
  899. - Use the poclbm kernel on SDK2.6 with bitalign devices only if there is no
  900. binary available.
  901. - Further generic microoptimisations to poclbm kernel.
  902. - The longstanding generation of a zero sized binary appears to be due to the
  903. OpenCL library putting the binary in a RANDOM SLOT amongst 4 possible binary
  904. locations. Iterate over each of them after building from source till the real
  905. binary is found and use that.
  906. - Fix harmless warnings with -Wsign-compare to allow cgminer to build with -W.
  907. - Fix missing field initialisers warnings.
  908. - Put win32 equivalents of nanosleep and sleep into compat.h fixing sleep() for
  909. adl.c.
  910. - Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1)
  911. - Modularized logging, support for priority based logging
  912. - Move CPU chipset specific optimization into device-cpu
  913. CGMiner Version 2.2.4 - February 11, 2012
  914. - Fix double definition of A0 B0 to zeroA zeroB.
  915. - Retain cl program after successfully loading a binary image. May decrease
  916. failures to build kernels at startup.
  917. - Variable unused after this so remove setting it.
  918. - BFI INT patching is not necessarily true on binary loading of files and not
  919. true on ATI SDK2.6+. Report bitalign instead.
  920. - Various string fixes for reject reason.
  921. - Generalize --temp-cutoff and implement support for reading temperature from
  922. BitFORCE FPGAs
  923. - Change message from recovered to alive since it is used on startup as well as
  924. when a pool has recovered.
  925. - Start mining as soon as any pool is found active and rely on the watchpool
  926. thread to bring up other pools.
  927. - Delayed responses from testing pools that are down can hold up the watchdog
  928. thread from getting to its device testing code, leading to false detection of
  929. the GPU not checking in, and can substantially delay auto gpu/auto fan
  930. management leading to overheating. Move pool watching to its own thread.
  931. - Bugfix: BitFORCE index needs to be static to count correctly
  932. - Space out retrieval of extra work according to the number of mining threads.
  933. - Make shutdown more robust. Enable the input thread only after the other
  934. threads exist. Don't kill off the workio thread and use it to exit main() only
  935. if there is an unexpected problem. Use kill_work() for all anticipated shutdowns
  936. where possible. Remove unused thread entry.
  937. - Change poclbm version number.
  938. - One array is faster than 2 separate arrays so change to that in poclbm kernel.
  939. - Microoptimisations to poclbm kernel which increase throughput slightly.
  940. - Import diablominer kernel. Currently disabled as not working.
  941. - Import diapolo kernel. Currently disabled as not working.
  942. - Conflicting entries of cl_kernel may have been causing problems, and
  943. automatically chosen kernel type was not being passed on. Rename the enum to
  944. cl_kernels and store the chosen kernel in each clState.
  945. - Set cl_amd_media_ops with the BITALIGN flag and allow non-bitselect devices to
  946. build.
  947. - ALlow much longer filenames for kernels to load properly.
  948. - Allow different kernels to be used by different devices and fix the logic fail
  949. of overcorrecting on last commit with !strstr.
  950. - Fix kernel selection process and build error.
  951. - queue_phatk_kernel now uses CL_SET_VARG() for base-nonce(s), too
  952. - added OpenCL >= 1.1 detection code, in preparation of OpenCL 1.1 global offset
  953. parameter support
  954. - Use K array explicitly to make it clear what is being added.
  955. - Work items have a tendency to expire at exactly the same time and we don't
  956. queue extra items when there are plenty in the queue, regardless of age. Allow
  957. extra work items to be queued if adequate time has passed since we last
  958. requested work even if over the limit.
  959. - Discard work when failover-only is enabled and the work has come from a
  960. different pool.
  961. - Missing include to build on newer mingw32.
  962. - Move from the thread safe localtime_r to regular localtime which is the only
  963. one supported on newer pthread libraries on mingw32 to make it compile with the
  964. newer ming. Thread safety is of no importance where localtime is used in this
  965. code.
  966. - Define in_addr_t in windows if required
  967. - sys/wait.h not required in windows
  968. - Allow API to restrict access by IP address
  969. - Add pool switching to example miner.php
  970. - Display X-Reject-Reason, when provided
  971. - Remove the test for whether the device is on the highest profil level before
  972. raising the GPU speed as it is ineffectual and may prevent raising the GPU
  973. speed.
  974. - Remove unnecessary check for opt_debug one every invocation of applog at
  975. LOG_DEBUG level and place the check in applog().
  976. CGMiner Version 2.2.3 - February 6, 2012
  977. - Revert "Rewrite the convoluted get_work() function to be much simpler and roll
  978. work as much as possible with each new work item." This seems to cause a race on
  979. work in free_work(). Presumably other threads are still accessing the structure.
  980. CGMiner Version 2.2.2 - February 6, 2012
  981. - Provide support for the submitold extension on a per-pool basis based on the
  982. value being detected in a longpoll.
  983. - Don't send a ping to a dynamic device if it's not enabled as that will just
  984. enable it for one pass and then disable it again.
  985. - Rewrite the convoluted get_work() function to be much simpler and roll work as
  986. much as possible with each new work item.
  987. - Roll as much work as possible from the work returned from a longpoll.
  988. - Rolling work on each loop through the mining thread serves no purpose.
  989. - Allow to stage more than necessary work items if we're just rolling work.
  990. - Replace divide_work with reuse_work function used twice.
  991. - Give rolled work a new ID to make sure there is no confusion in the hashtable
  992. lookups.
  993. - Remove now-defunct hash_div variables.
  994. - Remove unused get_dondata function.
  995. - Silence ADL warnings.
  996. - Silence unused parameter warnings.
  997. - Stagger the restart of every next thread per device to keep devices busy ahead
  998. of accessory threads per device.
  999. - Deprecate the --donation feature. Needlessly complex, questionable usefulness,
  1000. depends on author's server and a central pool of some kind, and was not heavily
  1001. adopted.
  1002. - It's devices that report back now, not threads, update message.
  1003. - Continue auto-management of fan and engine speeds even if a device is disabled
  1004. for safety reasons.
  1005. - No need to check we're highest performance level when throttling GPU engine
  1006. speed.
  1007. - Abstract out tests for whether work has come from a block that has been seen
  1008. before and whether a string is from a previously seen block.
  1009. - Probe but don't set the timeout to 15 seconds as some networks take a long
  1010. time to timeout.
  1011. - Remove most compiler warnings from api.c
  1012. - Add last share's pool info in cgpu_info
  1013. - Allow the OpenCL platform ID to be chosen with --gpu-platform.
  1014. - Iterate over all platforms displaying their information and number of devices
  1015. when --ndevs is called.
  1016. - Deprecate main.c
  1017. - Some networks can take a long time to resolve so go back to 60 second timeouts
  1018. instead of 15.
  1019. - Only enable curses on failure if curses is desired.
  1020. - Fix warnings in bitforce.c
  1021. - Bugfix: Need to open BitForce tty for read-write
  1022. - Fix various build issues.
  1023. - Modularize code: main.c -> device-cpu + device-gpu
  1024. - Fix phatk kernel not working on non-bitalign capable devices (Nvidia, older
  1025. ATI).
  1026. - Update poclbm kernel for better performance on GCN and new SDKs with bitalign
  1027. support when not BFI INT patching. Update phatk kernel to work properly for non
  1028. BFI INT patched kernels, providing support for phatk to run on GCN and non-ATI
  1029. cards.
  1030. - Return last accepted share pool/time for devices
  1031. - Display accepted share pool/time for CPUs
  1032. - Bug intensity always shows GPU 0
  1033. - Update example web miner.php to use new API commands
  1034. CGMiner Version 2.2.1 - January 30, 2012
  1035. NOTE - The GPU Device reordering in 2.2.0 by default was considered a bad idea
  1036. so the original GPU ordering is used by default again unless reordering is
  1037. explicitly requested.
  1038. - Fix bitforce failing to build into cgminer.
  1039. - Add missing options to write config function.
  1040. - Add a --gpu-reorder option to only reorder devices according to PCI Bus ID
  1041. when requested.
  1042. - Fix for midstate support being broken on pools that supported no-midstate
  1043. work by ensuring numbers are 32 bits in sha2.c
  1044. - Set virtual GPUs to work when ADL is disabled or all mining will occur on GPU
  1045. 0.
  1046. - Add information about paused threads in the menu status.
  1047. - Disable all but the first thread on GPUs in dynamic mode for better
  1048. interactivity.
  1049. - Set the latest network access time on share submission for --net-delay even if
  1050. we're not delaying that submission for further network access.
  1051. - Clear adl on exiting after probing values since it may attempt to overclock.
  1052. - As share submission is usually staggered, and delays can be costly, submit
  1053. shares without delay even when --net-delay is enabled.
  1054. - Display GPU number and device name when ADL is successfully enabled on it.
  1055. - Display GPU ordering remapping in verbose mode.
  1056. - Don't fail in the case the number of ADL and OpenCL devices do not match, and
  1057. do not attempt to reorder devices unless they match. Instead give a warning
  1058. about
  1059. - Display error codes should ADL not return ADL_OK in the more critical function
  1060. calls.
  1061. - Fix unused warning.
  1062. - Fix compile warnings in api.c
  1063. - Add extensive ADL based device info in debug mode.
  1064. - Make --ndevs display verbose opencl information as well to make debugging
  1065. version information easier.
  1066. - Display information about the opencl platform with verbose enabled.
  1067. - Explicitly check for nvidia in opencl platform strings as well.
  1068. CGMiner Version 2.2.0 - January 29, 2012
  1069. NOTE: GPU Device order will change with this release with ATI GPUs as cgminer
  1070. now can enumerate them according to their Bus ID which means the values should
  1071. now correlate with their physical position on the motherboard.
  1072. - Default to poclbm kernel on Tahiti (7970) since phatk does not work, even
  1073. though performance is sub-standard so that at least it will mine successfully by
  1074. defau
  1075. - Retain cl program after every possible place we might build the program.
  1076. - Update ADL SDK URL.
  1077. - Fix potential overflow.
  1078. - Map GPU devices to virtual devices in their true physical order based on
  1079. BusNumber.
  1080. - Change the warning that comes with failure to init cl on a device to be more
  1081. generic and accurate.
  1082. - Advertise longpoll support in X-Mining-Extensions
  1083. - Detect dual GPU cards by iterating through all GPUs, finding ones without
  1084. fanspeed and matching twins with fanspeed one bus ID apart.
  1085. - Do not attempt to build the program that becomes the kernel twice. This could
  1086. have been leading to failures on initialising cl.
  1087. - Some opencl compilers have issues with no spaces after -D in the compiler
  1088. options.
  1089. - Allow intensity up to 14.
  1090. - Use calloced stack memory for CompilerOptions to ensure sprintf writes to the
  1091. beginning of the char.
  1092. - Whitelist 79x0 cards to prefer no vectors as they perform better without.
  1093. - Adjust fan speed gently while in the optimal range when temperature is
  1094. drifting to minimise overshoot in either direction.
  1095. - Detect dual GPU cards via the indirect information of - 1st card has a fan
  1096. controller. 2nd card does not have a fan controller, cards share the same device
  1097. name
  1098. - Instead of using the BFI_INT patching hack on any device reporting
  1099. cl_amd_media_ops, create a whitelist of devices that need it. This should enable
  1100. GCN architec
  1101. - Fixed API compiling issue on OS X
  1102. - Add more explanation of JSON format and the 'save' command
  1103. - Return an error if using ADL API commands when it's not available
  1104. - Read off lpThermalControllerInfo from each ADL device.
  1105. - Add ADL_Overdrive5_ThermalDevices_Enum interface.
  1106. - Add API commands: config, switchpool, gpu settings, save
  1107. - Implement socks4 proxy support.
  1108. - Fix send() for JSON strings
  1109. - Introduce a --net-delay option which guarantees at least 250ms between any
  1110. networking requests to not overload slow routers.
  1111. - Generalise locking init code.
  1112. - Allow invalid values to be in the configuration file, just skipping over them
  1113. provided the rest of the file is valid JSON. This will allow older configurat
  1114. - Allow CPU mining explicitly enable only if other mining support is built in.
  1115. - BitForce FPGA support
  1116. - Configure out building and support of all CPU mining code unless
  1117. --enable-cpumining is enabled.
  1118. - Allow parsed values to be zero which will allow 0 values in the config file to
  1119. work.
  1120. - Advertise that we can make our own midstate, so the pool can skip generating
  1121. it for us
  1122. - Refactor the CPU scanhash_* functions to use a common API. Fixes bugs.
  1123. - Don't consider a pool lagging if a request has only just been filed. This
  1124. should decrease the false positives for "pool not providing work fast enough".
  1125. - Invalidating work after longpoll made hash_pop return no work giving a false
  1126. positive for dead pool. Rework hash_pop to retry while finds no staged work u
  1127. - Remove TCP_NODELAY from curl options as many small packets may be contributing
  1128. to network overload, when --net-delay is enabled.
  1129. - Refactor miner_thread to be common code for any kind of device
  1130. - Simplify submit_nonce loop and avoid potentially missing FOUND - 1 entry.
  1131. Reported by Luke-Jr.
  1132. - Micro-optimisation in sha256_sse2 code courtesy of Guido Ascioti
  1133. guido.ascioti@gmail.com
  1134. - Refactor to abstract device-specific code
  1135. CGMiner Version 2.1.2 - January 6, 2012
  1136. - If api-description is specified, save it when writing the config file
  1137. - Adjust utility width to be constant maximum as well.
  1138. - Add percent signs to reject ratio outputs
  1139. - Should the donation pool fail, don't make the fallover pool behave as though
  1140. the primary pool is lagging.
  1141. - Use an alternative pool should the donation getwork fail.
  1142. CGMiner Version 2.1.1 - January 1, 2012
  1143. - Include API examples in distribution tarball.
  1144. - Don't attempt to pthread_join when cancelling threads as they're already
  1145. detached and doing so can lead to a segfault.
  1146. - Give more generic message if slow pool at startup is the donation pool.
  1147. - Continue to attempt restarting GPU threads if they're flagged dead at 1 min.
  1148. intervals.
  1149. - Don't attempt to restart sick flagged GPUs while they're still registering
  1150. activity.
  1151. - Make curl use fresh connections whenever there is any communication issue
  1152. in case there are dead persistent connections preventing further comms from
  1153. working.
  1154. - Display pool in summary if only 1 pool.
  1155. - Adjust column width of A/R/HW to be the maximum of any device and align them.
  1156. CGMiner Version 2.1.0 - December 27, 2011
  1157. - Major infrastructure upgrade with RPC interface for controlling via sockets
  1158. encoded with/without JSON courtesy of Andrew Smith. Added documentation for
  1159. use of the API and sample code to use with it.
  1160. - Updated linux-usb-cgminer document.
  1161. - Rewrite of longpoll mechanism to choose the current pool wherever possible to
  1162. use for the longpoll, or any pool that supports longpoll if the current one
  1163. does not.
  1164. - Display information about longpoll when the chosen server has changed.
  1165. - Fix the bug where longpoll generated work may have been sent back to the
  1166. wrong pool, causing rejects.
  1167. - Fix a few race conditions on closing cgminer which caused some of the crashes
  1168. on exit.
  1169. - Only adjust gpu engine speed in autotune mode if the gpu is currently at the
  1170. performance level of that being adjusted.
  1171. - Various fixes for parsing/writing of configuration files.
  1172. - Do not add blank lines for threads of unused CPUs.
  1173. - Show which pool is unresponsive on startup.
  1174. - Only show GPU management menu item if GPUs are in use.
  1175. - Align most device columns in the curses display.
  1176. CGMiner Version 2.0.8 - November 11, 2011
  1177. - Make longpoll do a mandatory flushing of all work even if the block hasn't
  1178. changed, thus supporting longpoll initiated work change of any sort and merged
  1179. mining.
  1180. - Byteswap computed hash in hashtest so it can be correctly checked. This fixes
  1181. the very rare possibility that a block solve on solo mining was missed.
  1182. - Add x86_64 w64 mingw32 target
  1183. - Allow a fixed speed difference between memory and GPU clock speed with
  1184. --gpu-memdiff that will change memory speed when GPU speed is changed in
  1185. autotune mode.
  1186. - Don't load the default config if a config file is specified on the command
  1187. line.
  1188. - Don't build VIA on apple since -a auto bombs instead of gracefully ignoring
  1189. VIA failing.
  1190. - Build fix for dlopen/dlclose errors in glibc.
  1191. CGMiner Version 2.0.7 - October 17, 2011
  1192. - Support work without midstate or hash1, which are deprecated in bitcoind 0.5+
  1193. - Go to kernel build should we fail to clCreateProgramWithBinary instead of
  1194. failing on that device. This should fix the windows problems with devices not
  1195. initialising.
  1196. - Support new configuration file format courtesy of Chris Savery which can write
  1197. the config file from the menu and will load it on startup.
  1198. - Write unix configuration to .cgminer/cgminer.conf by default and prompt to
  1199. overwrite if given a filename from the menu that exists.
  1200. CGMiner Version 2.0.6 - October 9, 2011
  1201. - Must initialise the donorpool mutex or it fails on windows.
  1202. - Don't make donation work interfere with block change detection allowing
  1203. donation to work regardless of the block chain we're mining on.
  1204. - Expire shares as stale with a separate timeout from the scantime, defaulting
  1205. to 120 seconds.
  1206. - Retry pools after a delay of 15 seconds if none can be contacted on startup
  1207. unless a key is pressed.
  1208. - Don't try to build adl features without having adl.
  1209. - Properly check shares against target difficulty - This will no longer show
  1210. shares when solo mining at all unless they're considered to be a block solve.
  1211. - Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
  1212. - Try to use SSL if the server supports it.
  1213. - Display the total solved blocks on exit (LOL if you're lucky).
  1214. - Use ADL activity report to tell us if a sick GPU is still busy suggesting it
  1215. is hard hung and do not attempt to restart it.
  1216. CGMiner Version 2.0.5 - September 27, 2011
  1217. - Intensity can now be set to dynamic or static values per-device.
  1218. - New donation feature --donation sends a proportion of shares to author's
  1219. account of choice, but is disabled by default!
  1220. - The hash being displayed and block detection has been fixed.
  1221. - Devices not being mined on will not attempt to be ADL managed.
  1222. - Intensity is now displayed per GPU device.
  1223. - Make longpoll attempt to restart as often as opt_retries specifies.
  1224. - We weren't rolling work as often as we could.
  1225. - Correct some memory management issues.
  1226. - Build fixes.
  1227. - Don't mess with GPUs if we don't have them.
  1228. CGMiner Version 2.0.4 - September 23, 2011
  1229. - Confused Longpoll messages should be finally fixed with cgminer knowing for
  1230. sure who found the new block and possibly avoiding a rare crash.
  1231. - Display now shows the actual hash and will say BLOCK! if a block is deemed
  1232. solved.
  1233. - Extra spaces, which would double space lines on small terminals, have been
  1234. removed.
  1235. - Fan speed change is now damped if it is already heading in the correct
  1236. direction to minimise overshoot.
  1237. - Building without opencl libraries is fixed.
  1238. - GPUs are autoselected if there is only one when in the GPU management menu.
  1239. - GPU menu is refreshed instead of returning to status after a GPU change.
  1240. CGMiner Version 2.0.3 - September 17, 2011
  1241. - Various modes of failure to set fanspeeds and adl values have been addressed
  1242. and auto-fan should work now on most hardware, and possibly other values
  1243. which previously would not have worked.
  1244. - Fixed a crash that can occur on switching pools due to longpoll thread races.
  1245. - Use ATISTREAMSDKROOT if available at build time.
  1246. - Fanspeed management is returned to the driver default on exit instead of
  1247. whatever it was when cgminer was started.
  1248. - Logging of events deemed WARNING or ERR now will display even during
  1249. periods where menu input is being awaited on.
  1250. CGMiner Version 2.0.2 - September 11, 2011
  1251. - Exit cleanly if we abort before various threads are set up or if they no
  1252. longer exist.
  1253. - Fix a rare crash in HASH_DEL due to using different mutexes to protect the
  1254. data.
  1255. - Flag devices that have never started and don't allow enabling of devices
  1256. without restarting them.
  1257. - Only force the adapter speed to high if we've flagged this device as being
  1258. managed.
  1259. - Flag any devices with autofan or autogpu as being managed.
  1260. - Use a re-entrant value to store what fanspeed we're trying to set in case the
  1261. card doesn't support small changes. Force it to a multiple of 10% if it
  1262. fails on trying to speed up the fan.
  1263. - Do not bother resetting values to old ones if changes to GPU parameters report
  1264. failure, instead returning a failure code only if the return value from get()
  1265. differs.
  1266. - Remove redundant check.
  1267. - Only display supported values from fanspeed on change settings.
  1268. - Missing bracket from output.
  1269. - Display fan percentage on devices that only support reporting percent and not
  1270. RPM.
  1271. - Properly substitute DLOPEN flags to build with ADL support when -ldl is needed
  1272. and not when opencl is not found.
  1273. CGMiner Version 2.0.1 - September 9, 2011
  1274. - Fix building on 32bit glibc with dlopen with -lpthread and -ldl
  1275. - ByteReverse is not used and the bswap opcode breaks big endian builds. Remove
  1276. it.
  1277. - Ignore whether the display is active or not since only display enabled devices
  1278. work this way, and we skip over repeat entries anwyay.
  1279. - Only reset values on exiting if we've ever modified them.
  1280. - Flag adl as active if any card is successfully activated.
  1281. - Add a thermal cutoff option as well and set it to 95 degrees by default.
  1282. - Change the fan speed by only 5% if it's over the target temperature but less
  1283. than the hysteresis value to minimise overshoot down in temperature.
  1284. - Add a --no-adl option to disable ADL monitoring and GPU settings.
  1285. - Only show longpoll received delayed message at verbose level.
  1286. - Allow temperatures greater than 100 degrees.
  1287. - We should be passing a float for the remainder of the vddc values.
  1288. - Implement accepting a range of engine speeds as well to allow a lower limit to
  1289. be specified on the command line.
  1290. - Allow per-device fan ranges to be set and use them in auto-fan mode.
  1291. - Display which GPU has overheated in warning message.
  1292. - Allow temperature targets to be set on a per-card basis on the command line.
  1293. - Display fan range in autofan status.
  1294. - Setting the hysteresis is unlikely to be useful on the fly and doesn't belong
  1295. in the per-gpu submenu.
  1296. - With many cards, the GPU summaries can be quite long so use a terse output
  1297. line when showing them all.
  1298. - Use a terser device status line to show fan RPM as well when available.
  1299. - Define max gpudevices in one macro.
  1300. - Allow adapterid 0 cards to enumerate as a device as they will be non-AMD
  1301. cards, and enable ADL on any AMD card.
  1302. - Do away with the increasingly confusing and irrelevant total queued and
  1303. efficiency measures per device.
  1304. - Only display values in the log if they're supported and standardise device log
  1305. line printing.
  1306. CGMiner Version 2.0.0 - September 6, 2011
  1307. Major feature upgrade - GPU monitoring, (over)clocking and fan control for ATI
  1308. GPUs.
  1309. New command line switches:
  1310. --auto-fan- Automatically adjust all GPU fan speeds to maintain a target
  1311. temperature
  1312. --auto-gpu- Automatically adjust all GPU engine clock speeds to maintain
  1313. a target temperature
  1314. --gpu-engine <arg> Set the GPU engine (over)clock in Mhz - one value for all or
  1315. separate by commas for per card.
  1316. --gpu-fan <arg> Set the GPU fan percentage - one value for all or separate
  1317. by commas for per card.
  1318. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all
  1319. or separate by commas for per card.
  1320. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or
  1321. separate by commas for per card.
  1322. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate
  1323. by commas for per card.
  1324. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside
  1325. limits when automanaging speeds (default: 3)
  1326. --temp-overheat <arg> Set the overheat temperature when automatically managing
  1327. fan and GPU speeds (default: 85)
  1328. --temp-target <arg> Set the target temperature when automatically managing fan
  1329. and GPU speeds (default: 75)
  1330. - Implement ATI ADL support for GPU parameter monitoring now and setting later
  1331. (temp, fan, clocks etc.).
  1332. - Check for the presence of the ADL header files in ADL_SDK.
  1333. - Import adl_functions.h from amd overdrive ctrl.
  1334. - Implement a setup function that tries to detect GPUs that support the ADL and
  1335. link in the parameters into the gpus struct.
  1336. - Put a summary of monitoring information from the GPU menu.
  1337. - Implement changing memory speed and voltage on the fly.
  1338. - Implement fan speed setting.
  1339. - Minor corrections to set fan speed by percentage.
  1340. - Make sure to read off the value in RPM only.
  1341. - Implement auto fanspeed adjustment to maintain a target temperature and
  1342. fanspeed below 85%, with an overheat check that will speed the fan up to 100%.
  1343. - Add an --auto-fan command line option to allow all GPUs to have autofan
  1344. enabled from startup.
  1345. - Add a gpu autotune option which adjusts GPU speed to maintain a target
  1346. temperature within the bounds of the default GPU speed and any overclocking set.
  1347. - Avoid a dereference if the longpoll thread doesn't exist.
  1348. - Clean up by setting performance profiles and fan settings to startup levels on
  1349. exit.
  1350. - Add a small amount of hysteresis before lowering clock speed.
  1351. - Allow target, overheat and hysteresis temperatures to be set from command
  1352. line.
  1353. - Combine all stats collating into one function to avoid repeating function
  1354. calls on each variable.
  1355. - Add gpu statistics to debugging output via the watchdog thread.
  1356. - Implement menus to change temperature limits.
  1357. - Implement setting the GPU engine clock speed of all devices or each device as
  1358. a comma separated value.
  1359. - Implement setting the GPU memory clock speed of all devices or each device as
  1360. a comma separated value.
  1361. - Implement setting the GPU voltage of all devices or each device as a comma
  1362. separated value.
  1363. - Implement setting the GPU fan speed of all devices or each device as a comma
  1364. separated value.
  1365. - Add support for monitoring powertune setting.
  1366. - Implement changing of powertune value from the GPU change settings menu.
  1367. - Get the value of powertune in get_stats.
  1368. - Implement setting the GPU powertune value of all devices or each device as a
  1369. comma separated value.
  1370. - Remove the safety checks in speed setting since confirmation is done first in
  1371. the menu, then show the new current values after a short pause.
  1372. - Force the speed to high on startup and restore it to whatever the setting was
  1373. on exit.
  1374. - Add temperature to standard output where possible and use more compact output.
  1375. - Move and print at the same time in curses to avoid random trampling display
  1376. errors.
  1377. - Update the status window only from the watchdog thread, do not rewrite the top
  1378. status messages and only refresh once all the status window is complete,
  1379. clearing the window each time to avoid corruption.
  1380. - Set a safe starting fan speed if we're automanaging the speeds.
  1381. - Provide locking around all adl calls to prevent races.
  1382. - Lower profile settings cannot be higher than higher profile ones so link any
  1383. drops in settings.
  1384. - Add new needed text files to distribution.
  1385. - Queue requests ignoring the number of staged clones since they get discarded
  1386. very easily leading to false positives for pool not providing work fast enough.
  1387. - Include libgen.h in opt.c to fix win32 compilation warnings.
  1388. - Fix compilation warning on win32.
  1389. - Add the directory name from the arguments cgminer was called from as well to
  1390. allow it running from a relative pathname.
  1391. - Add a --disable-adl option to configure and only enable it if opencl support
  1392. exists.
  1393. - Retry before returning a failure to get upstream work as a failure to avoid
  1394. false positives for pool dead.
  1395. - Retry also if the decoding of work fails.
  1396. - Use the presence of X-Roll-Ntime in the header as a bool for exists unless N
  1397. is found in the response.
  1398. CGMiner Version 1.6.2 - September 2, 2011
  1399. - Add --failover-only option to not leak work to backup pools when the primary
  1400. pool is lagging.
  1401. - Change recommendation to intensity 9 for dedicated miners.
  1402. - Fix the bouncing short term value by allowing it to change dynamically when
  1403. the latest value is very different from the rolling value, but damp the change
  1404. when it gets close.
  1405. - Use the curses_lock to protect the curses_active variable and test it under
  1406. lock.
  1407. - Go back to requesting work 2/3 of the way through the current scantime with
  1408. CPU mining as reports of mining threads running out of work have occurred with
  1409. only 5 seconds to retrieve work.
  1410. - Add start and stop time scheduling for regular time of day running or once off
  1411. start/stop options.
  1412. - Print summary on quit modes.
  1413. - Put some sanity checks on the times that can be input.
  1414. - Give a verbose message when no active pools are found and pause before
  1415. exiting.
  1416. - Add verbose message when a GPU fails to initialise, and disable the correct
  1417. GPU.
  1418. - Cryptopp asm32 was not correctly updated to the incremental nonce code so the
  1419. hash counter was bogus.
  1420. - Get rid of poorly executed curl check.
  1421. - If curl does not have sockopts, do not try to compile the
  1422. json_rpc_call_sockopt_cb function, making it possible to build against older
  1423. curl libraries.
  1424. - Most people expect /usr/local when an unspecified prefix is used so change to
  1425. that.
  1426. - Rename localgen occasions to getwork fail occasions since localgen is
  1427. unrelated now.
  1428. CGMiner Version 1.6.1 - August 29, 2011
  1429. - Copy cgminer path, not cat it.
  1430. - Switching between redrawing windows does not fix the crash with old
  1431. libncurses, so redraw both windows, but only when the window size hasn't
  1432. changed.
  1433. - Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have
  1434. 0 staged work items and any idle time.
  1435. - Return -1 if no input is detected from the menu to prevent it being
  1436. interpreted as a 0.
  1437. - Make pthread, libcurl and libcurses library checks mandatory or fail.
  1438. - Add a --disable-opencl configure option to make it possible to override
  1439. detection of opencl and build without GPU mining support.
  1440. - Confusion over the variable name for number of devices was passing a bogus
  1441. value which likely was causing the zero sized binary issue.
  1442. - cgminer no longer supports default url user and pass so remove them.
  1443. - Don't show value of intensity since it's dynamic by default.
  1444. - Add options to explicitly enable CPU mining or disable GPU mining.
  1445. - Convert the opt queue into a minimum number of work items to have queued
  1446. instead of an extra number to decrease risk of getting idle devices without
  1447. increasing risk of higher rejects.
  1448. - Statify tv_sort.
  1449. - Check for SSE2 before trying to build 32 bit SSE2 assembly version. Prevents
  1450. build failure when yasm is installed but -msse2 is not specified.
  1451. - Add some defines to configure.ac to enable exporting of values and packaging,
  1452. and clean up output.
  1453. - Give convenient summary at end of ./configure.
  1454. - Display version information and add --version command line option, and make
  1455. sure we flush stdout.
  1456. - Enable curses after the mining threads are set up so that failure messages
  1457. won't be lost in the curses interface.
  1458. - Disable curses after inputting a pool if we requested no curses interface.
  1459. - Add an option to break out after successfully mining a number of accepted
  1460. shares.
  1461. - Exit with a failed return code if we did not reach opt_shares.
  1462. - The cpu mining work data can get modified before we copy it if we submit it
  1463. async, and the sync submission is not truly sync anyway, so just submit it sync.
  1464. CGMiner Version 1.6.0 - August 26, 2011
  1465. - Make restarting of GPUs optional for systems that hang on any attempt to
  1466. restart them. Fix DEAD status by comparing it to last live time rather than
  1467. last attempted restart time since that happens every minute.
  1468. - Move staged threads to hashes so we can sort them by time.
  1469. - Create a hash list of all the blocks created and search them to detect when a
  1470. new block has definitely appeared, using that information to detect stale work
  1471. and discard it.
  1472. - Update configure.ac for newer autoconf tools.
  1473. - Use the new hashes directly for counts instead of the fragile counters
  1474. currently in use.
  1475. - Update to latest sse2 code from cpuminer-ng.
  1476. - Allow LP to reset block detect and block detect lp flags to know who really
  1477. came first.
  1478. - Get start times just before mining begins to not have very slow rise in
  1479. average.
  1480. - Add message about needing one server.
  1481. - We can queue all the necessary work without hitting frequent stales now with
  1482. the time and string stale protection active all the time. This prevents a
  1483. pool being falsely labelled as not providing work fast enough.
  1484. - Include uthash.h in distro.
  1485. - Implement SSE2 32 bit assembly algorithm as well.
  1486. - Fail gracefully if unable to open the opencl files.
  1487. - Make cgminer look in the install directory for the .cl files making make
  1488. install work correctly.
  1489. - Allow a custom kernel path to be entered on the command line.
  1490. - Bump threshhold for lag up to maximum queued but no staged work.
  1491. - Remove fragile source patching for bitalign, vectors et. al and simply pass it
  1492. with the compiler options.
  1493. - Actually check the value returned for the x-roll-ntime extension to make sure
  1494. it isn't saying N.
  1495. - Prevent segfault on exit for when accessory threads don't exist.
  1496. - Disable curl debugging with opt protocol since it spews to stderr.
  1497. CGMiner Version 1.5.8 - August 23, 2011
  1498. - Minimise how much more work can be given in cpu mining threads each interval.
  1499. - Make the fail-pause progressively longer each time it fails until the network
  1500. recovers.
  1501. - Only display the lagging message if we've requested the work earlier.
  1502. - Clean up the pool switching to not be dependent on whether the work can roll
  1503. or not by setting a lagging flag and then the idle flag.
  1504. - Only use one thread to determine if a GPU is sick or well, and make sure to
  1505. reset the sick restart attempt time.
  1506. - The worksize was unintentionally changed back to 4k by mistake, this caused a
  1507. slowdown.
  1508. CGMiner Version 1.5.7 - August 22, 2011
  1509. - Fix a crash with --algo auto
  1510. - Test at appropriate target difficulty now.
  1511. - Add per-device statics log output with --per-device-stats
  1512. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  1513. - Make rolltime report debug level only now since we check it every work
  1514. item.
  1515. - Add the ability to enable/disable per-device stats on the fly and match
  1516. logging on/off.
  1517. - Explicitly tell the compiler to retain the program to minimise the chance of
  1518. the zero sized binary errors.
  1519. - Add one more instruction to avoid one branch point in the common path in the
  1520. cl return code. Although this adds more ALUs overall and more branch points, the
  1521. common path code has the same number of ALUs and one less jmp, jmps being more
  1522. expensive.
  1523. - Explicitly link in ws2_32 on the windows build and update README file on how
  1524. to compile successfully on windows.
  1525. - Release cl resources should the gpu mining thread abort.
  1526. - Attempt to restart a GPU once every minute while it's sick.
  1527. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  1528. - Only declare a GPU dead if there's been no sign of activity from the reinit
  1529. thread for 10 mins.
  1530. - Never automatically disable any pools but just specify them as idle if they're
  1531. unresponsive at startup.
  1532. - Use any longpoll available, and don't disable it if switching to a server that
  1533. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  1534. even if the pool is the backup server.
  1535. - Display which longpoll failed and don't free the ram for lp_url since it
  1536. belongs to the pool hdr path.
  1537. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  1538. to compile.
  1539. CGMiner Version 1.5.6 - August 17, 2011
  1540. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  1541. courtesy of phateus. Custom modified to work best with cgminer.
  1542. - Updated output buffer code to use a smaller buffer with the kernels.
  1543. - Clean up the longpoll management to ensure the right paths go to the right
  1544. pool and display whether we're connected to LP or not in the status line.
  1545. CGMiner Version 1.5.5 - August 16, 2011
  1546. - Rework entirely the GPU restart code. Strike a balance between code that
  1547. re-initialises the GPU entirely so that soft hangs in the code are properly
  1548. managed, but if a GPU is completely hung, the thread restart code fails
  1549. gracefully, so that it does not take out any other code or devices. This will
  1550. allow cgminer to keep restarting GPUs that can be restarted, but continue
  1551. mining even if one or more GPUs hangs which would normally require a reboot.
  1552. - Add --submit-stale option which submits all shares, regardless of whether they
  1553. would normally be considered stale.
  1554. - Keep options in alphabetical order.
  1555. - Probe for slightly longer for when network conditions are lagging.
  1556. - Only display the CPU algo when we're CPU mining.
  1557. - As we have keepalives now, blaming network flakiness on timeouts appears to
  1558. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  1559. network connectivity to 1 minute.
  1560. - Simplify output code and remove HW errors from CPU stats.
  1561. - Simplify code and tidy output.
  1562. - Only show cpu algo in summary if cpu mining.
  1563. - Log summary at the end as per any other output.
  1564. - Flush output.
  1565. - Add a linux-usb-cgminer guide courtesy of Kano.
  1566. CGMiner Version 1.5.4 - August 14, 2011
  1567. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  1568. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  1569. piped directly to this command.
  1570. - Allocate work from one function to be able to initialise variables added
  1571. later.
  1572. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  1573. - Preinitialise the devices only once on startup.
  1574. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  1575. cl state on reinit, preserving known GPU variables.
  1576. - Create a new context from scratch in initCQ in case something was corrupted to
  1577. maximise our chance of succesfully creating a new worker thread. Hopefully this
  1578. makes thread restart on GPU failure more reliable, without hanging everything
  1579. in the case of a completely wedged GPU.
  1580. - Display last initialised time in gpu management info, to know if a GPU has
  1581. been re-initialised.
  1582. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  1583. the hope it recovers without needing a restart, but without blocking code
  1584. elsewhere.
  1585. - Only consider a pool lagging if we actually need the work and we have none
  1586. staged despite queue requests stacking up. This decreases significantly the
  1587. amount of work that leaks to the backup pools.
  1588. - The can_roll function fails inappropriately in stale_work.
  1589. - Only put the message that a pool is down if not pinging it every minute. This
  1590. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  1591. mode.
  1592. - Free all work in one place allowing us to perform actions on it in the future.
  1593. - Remove the extra shift in the output code which was of dubious benefit. In
  1594. fact in cgminer's implementation, removing this caused a miniscule speedup.
  1595. - Test each work item to see if it can be rolled instead of per-pool and roll
  1596. whenever possible, adhering to the 60 second timeout. This makes the period
  1597. after a longpoll have smaller dips in throughput, as well as requiring less
  1598. getworks overall thus increasing efficiency.
  1599. - Stick to rolling only work from the current pool unless we're in load balance
  1600. mode or lagging to avoid aggressive rolling imitating load balancing.
  1601. - If a work item has had any mining done on it, don't consider it discarded
  1602. work.
  1603. CGMiner Version 1.5.3 - July 30, 2011
  1604. - Significant work went into attempting to make the thread restart code robust
  1605. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  1606. minutes of inactivity and try to restart them. Instead of re-initialising the
  1607. GPU completely, only a new cl context is created to avoid hanging the rest of
  1608. the GPUs should the dead GPU be hung irrevocably.
  1609. - Use correct application name in syslog.
  1610. - Get rid of extra line feeds.
  1611. - Use pkg-config to check for libcurl version
  1612. - Implement per-thread getwork count with proper accounting to not over-account
  1613. queued items when local work replaces it.
  1614. - Create a command queue from the program created from source which allows us
  1615. to flush the command queue in the hope it will not generate a zero sized binary
  1616. any more.
  1617. - Be more willing to get work from the backup pools if the work is simply being
  1618. queued faster than it is being retrieved.
  1619. CGMiner Version 1.5.2 - July 28, 2011
  1620. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  1621. and provide the information in the status.
  1622. - The work length in the miner thread gets smaller but doesn't get bigger if
  1623. it's under 1 second. This could end up leading to CPU under-utilisation and
  1624. lower and lower hash rates. Fix it by increasing work length if it drops
  1625. under 1 second.
  1626. - Make the "quiet" mode still update the status and display errors, and add a
  1627. new --real-quiet option which disables all output and can be set once while
  1628. running.
  1629. - Update utility and efficiency figures when displaying them.
  1630. - Some Intel HD graphics support the opencl commands but return errors since
  1631. they don't support opencl. Don't fail with them, just provide a warning and
  1632. disable GPU mining.
  1633. - Add http:// if it's not explicitly set for URL entries.
  1634. - Log to the output file at any time with warnings and errors, instead of just
  1635. when verbose mode is on.
  1636. - Display the correct current hash as per blockexplorer, truncated to 16
  1637. characters, with just the time.
  1638. CGMiner Version 1.5.1 - July 27, 2011
  1639. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  1640. using the main window.
  1641. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  1642. - Only free the thread structures if the thread still exists.
  1643. - Update both windows separately, but not at the same time to prevent the double
  1644. refresh crash that old libncurses has. Do the window resize check only when
  1645. about to redraw the log window to minimise ncurses cpu usage.
  1646. - Abstract out the decay time function and use it to make hash_div a rolling
  1647. average so it doesn't change too abruptly and divide work in chunks large enough
  1648. to guarantee they won't overlap.
  1649. - Sanity check to prove locking.
  1650. - Don't take more than one lock at a time.
  1651. - Make threads report out when they're queueing a request and report if they've
  1652. failed.
  1653. - Make cpu mining work submission asynchronous as well.
  1654. - Properly detect stale work based on time from staging and discard instead of
  1655. handing on, but be more lax about how long work can be divided for up to the
  1656. scantime.
  1657. - Do away with queueing work separately at the start and let each thread grab
  1658. its own work as soon as it's ready.
  1659. - Don't put an extra work item in the queue as each new device thread will do so
  1660. itself.
  1661. - Make sure to decrease queued count if we discard the work.
  1662. - Attribute split work as local work generation.
  1663. - If work has been cloned it is already at the head of the list and when being
  1664. reinserted into the queue it should be placed back at the head of the list.
  1665. - Dividing work is like the work is never removed at all so treat it as such.
  1666. However the queued bool needs to be reset to ensure we *can* request more work
  1667. even if we didn't initially.
  1668. - Make the display options clearer.
  1669. - Add debugging output to tq_push calls.
  1670. - Add debugging output to all tq_pop calls.
  1671. CGMiner Version 1.5.0 - July 26, 2011
  1672. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  1673. this by detecting which threads cannot complete searching a work item within the
  1674. scantime and then divide up a work item into multiple smaller work items.
  1675. Detect the age of the work items and if they've been cloned before to prevent
  1676. doing the same work over. If the work is too old to be divided, then see if it
  1677. can be time rolled and do that to generate work. This dramatically decreases the
  1678. number of queued work items from a pool leading to higher overall efficiency
  1679. (but the same hashrate and share submission rate).
  1680. - Don't request work too early for CPUs as CPUs will scan for the full
  1681. opt_scantime anyway.
  1682. - Simplify gpu management enable/disable/restart code.
  1683. - Implement much more accurate rolling statistics per thread and per gpu and
  1684. improve accuracy of rolling displayed values.
  1685. - Make the rolling log-second average more accurate.
  1686. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  1687. try restarting them.
  1688. - Keep track of which GPUs are alive versus enabled.
  1689. - Start threads for devices that are even disabled, but don't allow them to
  1690. start working.
  1691. - The last pool is when we are low in total_pools, not active_pools.
  1692. - Make the thread restart do a pthread_join after disabling the device, only
  1693. re-enabling it if we succeed in restarting the thread. Do this from a separate
  1694. thread so as to not block any other code.This will allow cgminer to continue
  1695. even if one GPU hangs.
  1696. - Try to do every curses manipulation under the curses lock.
  1697. - Only use the sockoptfunction if the version of curl is recent enough.
  1698. CGMiner Version 1.4.1 - July 24, 2011
  1699. - Do away with GET for dealing with longpoll forever. POST is the one that works
  1700. everywhere, not the other way around.
  1701. - Detect when the primary pool is lagging and start queueing requests on backup
  1702. pools if possible before needing to roll work.
  1703. - Load balancing puts more into the current pool if there are disabled pools.
  1704. Fix.
  1705. - Disable a GPU device should the thread fail to init.
  1706. - Out of order command queue may fail on osx. Try without if it fails.
  1707. - Fix possible dereference on blank inputs during input_pool.
  1708. - Defines missing would segfault on --help when no sse mining is built in.
  1709. - Revert "Free up resources/stale compilers." - didn't help.
  1710. - Only try to print the status of active devices or it would crash.
  1711. - Some hardware might benefit from the less OPS so there's no harm in leaving
  1712. kernel changes that do that apart from readability of the code.
  1713. CGMiner Version 1.4.0 - July 23, 2011
  1714. - Feature upgrade: Add keyboard input during runtime to allow modification of
  1715. and viewing of numerous settings such as adding/removing pools, changing
  1716. multipool management strategy, switching pools, changing intensiy, verbosity,
  1717. etc. with a simple keypress menu system.
  1718. - Free up resources/stale compilers.
  1719. - Kernels are safely flushed in a way that allows out of order execution to
  1720. work.
  1721. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  1722. seems to fix it.
  1723. - Don't try to stop/cancel threads that don't exist.
  1724. - Only set option to show devices and exit if built with opencl support.
  1725. - Enable curses earlier and exit with message in main for messages to not be
  1726. lost in curses windows.
  1727. - Make it possible to enter server credentials with curses input if none are
  1728. specified on the command line.
  1729. - Abstract out a curses input function and separate input pool function to allow
  1730. for live adding of pools later.
  1731. - Remove the nil arguments check to allow starting without parameters.
  1732. - Disable/enable echo & cbreak modes.
  1733. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  1734. verbose, normal, rpc protocol debugging and clear screen options.
  1735. - Add pool option to input and display current pool status, pending code to
  1736. allow live changes.
  1737. - Add a bool for explicit enabling/disabling of pools.
  1738. - Make input pool capable of bringing up pools while running.
  1739. - Do one last check of the work before submitting it.
  1740. - Implement the ability to live add, enable, disable, and switch to pools.
  1741. - Only internally test for block changes when the work matches the current pool
  1742. to prevent interleaved block change timing on multipools.
  1743. - Display current pool management strategy to enable changing it on the fly.
  1744. - The longpoll blanking of the current_block data may not be happening before
  1745. the work is converted and appears to be a detected block change. Blank the
  1746. current block be
  1747. - Make --no-longpoll work again.
  1748. - Abstract out active pools count.
  1749. - Allow the pool strategy to be modified on the fly.
  1750. - Display pool information on the fly as well.
  1751. - Add a menu and separate out display options.
  1752. - Clean up the messy way the staging thread communicates with the longpoll
  1753. thread to determine who found the block first.
  1754. - Make the input windows update immediately instead of needing a refresh.
  1755. - Allow log interval to be set in the menu.
  1756. - Allow scan settings to be modified at runtime.
  1757. - Abstract out the longpoll start and explicitly restart it on pool change.
  1758. - Make it possible to enable/disable longpoll.
  1759. - Set priority correctly on multipools. Display priority and alive/dead
  1760. information in display_pools.
  1761. - Implement pool removal.
  1762. - Limit rolltime work generation to 10 iterations only.
  1763. - Decrease testing log to info level.
  1764. - Extra refresh not required.
  1765. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  1766. - Tell getwork how much of a work item we're likely to complete for future
  1767. splitting up of work.
  1768. - Remove the mandatory work requirement at startup by testing for invalid work
  1769. being passed which allows for work to be queued immediately. This also
  1770. removes the requirem
  1771. - Make sure intensity is carried over to thread count and is at least the
  1772. minimum necessary to work.
  1773. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  1774. - Clear log window from consistent place. No need for locking since logging is
  1775. disabled during input.
  1776. - Cannot print the status of threads that don't exist so just queue enough work
  1777. for the number of mining threads to prevent crash with -Q N.
  1778. - Update phatk kernel to one with new parameters for slightly less overhead
  1779. again. Make the queue kernel parameters call a function pointer to select
  1780. phatk or poclbm.
  1781. - Make it possible to select the choice of kernel on the command line.
  1782. - Simplify the output part of the kernel. There's no demonstrable advantage from
  1783. more complexity.
  1784. - Merge pull request #18 from ycros/cgminer
  1785. - No need to make leaveok changes win32 only.
  1786. - Build support in for all SSE if possible and only set the default according to
  1787. machine capabilities.
  1788. - Win32 threading and longpoll keepalive fixes.
  1789. - Win32: Fix for mangled output on the terminal on exit.
  1790. CGMiner Version 1.3.1 - July 20, 2011
  1791. - Feature upgrade; Multiple strategies for failover. Choose from default which
  1792. now falls back to a priority order from 1st to last, round robin which only
  1793. changes pools when one is idle, rotate which changes pools at user-defined
  1794. intervals, and load-balance which spreads the work evenly amongst all pools.
  1795. - Implement pool rotation strategy.
  1796. - Implement load balancing algorithm by rotating requests to each pool.
  1797. - Timeout on failed discarding of staged requests.
  1798. - Implement proper flagging of idle pools, test them with the watchdog thread,
  1799. and failover correctly.
  1800. - Move pool active test to own function.
  1801. - Allow multiple strategies to be set for multipool management.
  1802. - Track pool number.
  1803. - Don't waste the work items queued on testing the pools at startup.
  1804. - Reinstate the mining thread watchdog restart.
  1805. - Add a getpoll bool into the thread information and don't restart threads stuck
  1806. waiting on work.
  1807. - Rename the idlenet bool for the pool for later use.
  1808. - Allow the user/pass userpass urls to be input in any order.
  1809. - When json rpc errors occur they occur in spits and starts, so trying to limit
  1810. them with the comms error bool doesn't stop a flood of them appearing.
  1811. - Reset the queued count to allow more work to be queued for the new pool on
  1812. pool switch.
  1813. CGMiner Version 1.3.0 - July 19, 2011
  1814. - Massive infrastructure update to support pool failover.
  1815. - Accept multiple parameters for url, user and pass and set up structures of
  1816. pool data accordingly.
  1817. - Probe each pool for what it supports.
  1818. - Implement per pool feature support according to rolltime support as
  1819. advertised by server.
  1820. - Do switching automatically based on a 300 second timeout of locally generated
  1821. work or 60 seconds of no response from a server that doesn't support rolltime.
  1822. - Implement longpoll server switching.
  1823. - Keep per-pool data and display accordingly.
  1824. - Make sure cgminer knows how long the pool has actually been out for before
  1825. deeming it a prolonged outage.
  1826. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  1827. infinite rejects.
  1828. - Make warning about empty http requests not show by default since many
  1829. servers do this regularly.
  1830. CGMiner Version 1.2.8 - July 18, 2011
  1831. - More OSX build fixes.
  1832. - Add an sse4 algorithm to CPU mining.
  1833. - Fix CPU mining with other algorithms not working.
  1834. - Rename the poclbm file to ensure a new binary is built since.
  1835. - We now are guaranteed to have one fresh work item after a block change and we
  1836. should only discard staged requests.
  1837. - Don't waste the work we retrieve from a longpoll.
  1838. - Provide a control lock around global bools to avoid racing on them.
  1839. - Iterating over 1026 nonces when confirming data from the GPU is old code
  1840. and unnecessary and can lead to repeats/stales.
  1841. - The poclbm kernel needs to be updated to work with the change to 4k sized
  1842. output buffers.
  1843. - longpoll seems to work either way with post or get but some servers prefer
  1844. get so change to httpget.
  1845. CGMiner Version 1.2.7 - July 16, 2011
  1846. - Show last 8 characters of share submitted in log.
  1847. - Display URL connected to and user logged in as in status.
  1848. - Display current block and when it was started in the status line.
  1849. - Only pthread_join the mining threads if they exist as determined by
  1850. pthread_cancel and don't fail on pthread_cancel.
  1851. - Create a unique work queue for all getworks instead of binding it to thread 0
  1852. to avoid any conflict over thread 0's queue.
  1853. - Clean up the code to make it clear it's watchdog thread being messaged to
  1854. restart the threads.
  1855. - Check the current block description hasn't been blanked pending the real
  1856. new current block data.
  1857. - Re-enable signal handlers once the signal has been received to make it
  1858. possible to kill cgminer if it fails to shut down.
  1859. - Disable restarting of CPU mining threads pending further investigation.
  1860. - Update longpoll messages.
  1861. - Add new block data to status line.
  1862. - Fix opencl tests for osx.
  1863. - Only do local generation of work if the work item is not stale itself.
  1864. - Check for stale work within the mining threads and grab new work if
  1865. positive.
  1866. - Test for idle network conditions and prevent threads from being restarted
  1867. by the watchdog thread under those circumstances.
  1868. - Make sure that local work generation does not continue indefinitely by
  1869. stopping it after 10 minutes.
  1870. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  1871. nonce value instead of a compare and loop for a shorter code path.
  1872. - Allow queue of zero and make that default again now that we can track how
  1873. work is being queued versus staged. This can decrease reject rates.
  1874. - Queue precisely the number of mining threads as longpoll_staged after a
  1875. new block to not generate local work.
  1876. CGMiner Version 1.2.6 - July 15, 2011
  1877. - Put a current system status line beneath the total work status line
  1878. - Fix a counting error that would prevent cgminer from correctly detecting
  1879. situations where getwork was failing - this would cause stalls sometimes
  1880. unrecoverably.
  1881. - Limit the maximum number of requests that can be put into the queue which
  1882. otherwise could get arbitrarily long during a network outage.
  1883. - Only count getworks that are real queue requests.
  1884. CGMiner Version 1.2.5 - July 15, 2011
  1885. - Conflicting -n options corrected
  1886. - Setting an intensity with -I disables dynamic intensity setting
  1887. - Removed option to manually disable dynamic intensity
  1888. - Improve display output
  1889. - Implement signal handler and attempt to clean up properly on exit
  1890. - Only restart threads that are not stuck waiting on mandatory getworks
  1891. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  1892. - Explicitly grab first work item to prevent false positive hardware errors
  1893. due to working on uninitialised work structs
  1894. - Add option for non curses --text-only output
  1895. - Ensure we connect at least once successfully before continuing to retry to
  1896. connect in case url/login parameters were wrong
  1897. - Print an executive summary when cgminer is terminated
  1898. - Make sure to refresh the status window
  1899. CGMiner Versions -> 1.2.4
  1900. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  1901. - Massive rewrite to incorporate GPU mining.
  1902. - Incorporate original oclminer c code.
  1903. - Rewrite gpu mining code to efficient work loops.
  1904. - Implement per-card detection and settings.
  1905. - Implement vector code.
  1906. - Implement bfi int patching.
  1907. - Import poclbm and phatk ocl kernels and use according to hardware type.
  1908. - Implement customised optimised versions of opencl kernels.
  1909. - Implement binary kernel generation and loading.
  1910. - Implement preemptive asynchronous threaded work gathering and pushing.
  1911. - Implement variable length extra work queues.
  1912. - Optimise workloads to be efficient miners instead of getting lots of extra
  1913. work.
  1914. - Implement total hash throughput counters, per-card accepted, rejected and
  1915. hw error count.
  1916. - Staging and watchdog threads to prevent fallover.
  1917. - Stale and reject share guarding.
  1918. - Autodetection of new blocks without longpoll.
  1919. - Dynamic setting of intensity to maintain desktop interactivity.
  1920. - Curses interface with generous statistics and information.
  1921. - Local generation of work (xroll ntime) when detecting poor network
  1922. connectivity.
  1923. cpuminer Version 1.0.2
  1924. - Linux x86_64 optimisations - Con Kolivas
  1925. - Optimise for x86_64 by default by using sse2_64 algo
  1926. - Detects CPUs and sets number of threads accordingly
  1927. - Uses CPU affinity for each thread where appropriate
  1928. - Sets scheduling policy to lowest possible
  1929. - Minor performance tweaks
  1930. cpuminer Version 1.0.1 - May 14, 2011
  1931. - OSX support
  1932. cpuminer Version 1.0 - May 9, 2011
  1933. - jansson 2.0 compatibility
  1934. - correct off-by-one in date (month) display output
  1935. - fix platform detection
  1936. - improve yasm configure bits
  1937. - support full URL, in X-Long-Polling header
  1938. cpuminer Version 0.8.1 - March 22, 2011
  1939. - Make --user, --pass actually work
  1940. - Add User-Agent HTTP header to requests, so that server operators may
  1941. more easily identify the miner client.
  1942. - Fix minor bug in example JSON config file
  1943. cpuminer Version 0.8 - March 21, 2011
  1944. - Support long polling: http://deepbit.net/longpolling.php
  1945. - Adjust max workload based on scantime (default 5 seconds,
  1946. or 60 seconds for longpoll)
  1947. - Standardize program output, and support syslog on Unix platforms
  1948. - Suport --user/--pass options (and "user" and "pass" in config file),
  1949. as an alternative to the current --userpass
  1950. cpuminer Version 0.7.2 - March 14, 2011
  1951. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  1952. This is a substantial speed improvement on Intel CPUs.
  1953. - Move all JSON-RPC I/O to separate thread. This reduces the
  1954. number of HTTP connections from one-per-thread to one, reducing resource
  1955. usage on upstream bitcoind / pool server.
  1956. cpuminer Version 0.7.1 - March 2, 2011
  1957. - Add support for JSON-format configuration file. See example
  1958. file example-cfg.json. Any long argument on the command line
  1959. may be stored in the config file.
  1960. - Timestamp each solution found
  1961. - Improve sha256_4way performance. NOTE: This optimization makes
  1962. the 'hash' debug-print output for sha256_way incorrect.
  1963. - Use __builtin_expect() intrinsic as compiler micro-optimization
  1964. - Build on Intel compiler
  1965. - HTTP library now follows HTTP redirects
  1966. cpuminer Version 0.7 - February 12, 2011
  1967. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  1968. - Use bswap_32, if compiler intrinsic is not available
  1969. - Disable full target validation (as opposed to simply H==0) for now
  1970. cpuminer Version 0.6.1 - February 4, 2011
  1971. - Fully validate "hash < target", rather than simply stopping our scan
  1972. if the high 32 bits are 00000000.
  1973. - Add --retry-pause, to set length of pause time between failure retries
  1974. - Display proof-of-work hash and target, if -D (debug mode) enabled
  1975. - Fix max-nonce auto-adjustment to actually work. This means if your
  1976. scan takes longer than 5 seconds (--scantime), the miner will slowly
  1977. reduce the number of hashes you work on, before fetching a new work unit.
  1978. cpuminer Version 0.6 - January 29, 2011
  1979. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  1980. - BeeCee1's sha256 4way optimizations
  1981. - lfm's byte swap optimization (improves via, cryptopp)
  1982. - Fix non-working short options -q, -r
  1983. cpuminer Version 0.5 - December 28, 2010
  1984. - Exit program, when all threads have exited
  1985. - Improve JSON-RPC failure diagnostics and resilience
  1986. - Add --quiet option, to disable hashmeter output.
  1987. cpuminer Version 0.3.3 - December 27, 2010
  1988. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  1989. cpuminer Version 0.3.2 - December 23, 2010
  1990. - Critical fix for sha256_via
  1991. cpuminer Version 0.3.1 - December 19, 2010
  1992. - Critical fix for sha256_via
  1993. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  1994. cpuminer Version 0.3 - December 18, 2010
  1995. - Add crypto++ 32bit assembly implementation
  1996. - show version upon 'minerd --help'
  1997. - work around gcc 4.5.x bug that killed 4way performance
  1998. cpuminer Version 0.2.2 - December 6, 2010
  1999. - VIA padlock implementation works now
  2000. - Minor build and runtime fixes
  2001. cpuminer Version 0.2.1 - November 29, 2010
  2002. - avoid buffer overflow when submitting solutions
  2003. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  2004. - minor internal optimizations and cleanups
  2005. cpuminer Version 0.2 - November 27, 2010
  2006. - Add script for building a Windows installer
  2007. - improve hash performance (hashmeter) statistics
  2008. - add tcatm 4way sha256 implementation
  2009. - Add experimental VIA Padlock sha256 implementation
  2010. cpuminer Version 0.1.2 - November 26, 2010
  2011. - many small cleanups and micro-optimizations
  2012. - build win32 exe using mingw
  2013. - RPC URL, username/password become command line arguments
  2014. - remove unused OpenSSL dependency
  2015. cpuminer Version 0.1.1 - November 24, 2010
  2016. - Do not build sha256_generic module separately from cpuminer.
  2017. cpuminer Version 0.1 - November 24, 2010
  2018. - Initial release.