NEWS 65 KB

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