NEWS 133 KB

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