NEWS 52 KB

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