NEWS 98 KB

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