NEWS 81 KB

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