diff --git a/AUTHORS.md b/AUTHORS.md index b222f9ec..77e559ab 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -2,6 +2,7 @@ ## Core +* Multiple algorithms and switching: Jan Berdajs 15bULC8snaKAMeFb3xBmmhbWj1xyTmBUfm * Scrypt-only refactor: Noel Maersk LfxRFgXzA13TSTxgFGUFEtumv5ShGzAmLw * Core: Martin Danielsen 1DNBcSEENBwDKrcTyTW61ezWhzsPy5imkn * Core: Con Kolivas 15qSxP1SQcUX3o4nhkfdbgyoWEFMomJ4rZ @@ -32,7 +33,7 @@ updated by many others. ## Testing, bug fixes, improvements -* Hot-switching OpenCL kernel (N-Factor): Jan Berdajs 15bULC8snaKAMeFb3xBmmhbWj1xyTmBUfm +* Hot-switching OpenCL kernel (N-Factor): Jan Berdajs * Michael Fiano * Gabriel Devenyi * Benjamin Herrenschmidt @@ -46,7 +47,7 @@ updated by many others. ...and many others. See: -* [veox/sgminer](https://github.com/veox/sgminer/graphs/contributors) +* [sgminer-dev/sgminer](https://github.com/sgminer-dev/sgminer/graphs/contributors) ## Legacy diff --git a/NEWS.md b/NEWS.md index 66dc2a2f..6d053775 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,15 @@ # Release news +## Master + +* Added support for animecoin, darkcoin, fuguecoin, groestlcoin, inkcoin, + marucoin, myriadcoin-groestl, quarkcoin, qubitcoin, sifcoin, twecoin, + darkcoin-mod ("X11-mod" kernel), maxcoin (by mrbrdo). +* intensity, xintensity, rawintensity, gpu-memclock, gpu-engine, + thread-concurrency, gpu-threads now also have a `pool-*` version to + configure them for each pool separately (by mrbrdo). +* Extranonce support for stratum (by bitbandi). + ## Version 4.2.1 - 22nd May 2014 * Fixed MSVS building, tested with MSVC++ 2010 and 2013 (by _troky_). diff --git a/doc/configuration.md b/doc/configuration.md index a0700836..c02cb2ed 100644 --- a/doc/configuration.md +++ b/doc/configuration.md @@ -44,27 +44,18 @@ If you use any of these options for a pool, then **you must** set that option for every pool. This is necessary due to current poor implementation of sgminer config parser. -### pool-algorithm - -Allows choosing the algorithm for a specific pool. See `algorithm`. - -### pool-nfactor - -Overrides the default scrypt parameter N for a specific pool. -See `nfactor`. - -### pool-intensity - -Overrides intensity. See `intensity`. - -### pool-xintensity - -Overrides xintensity. See `xintensity`. - -### pool-rawintensity - -Overrides rawintensity. See `rawintensity`. - +Options that can be configured have a `pool-` prefix and work the same as the +global settings: + +* pool-algorithm +* pool-nfactor +* pool-intensity +* pool-xintensity +* pool-rawintensity +* pool-gpu-engine +* pool-gpu-memclock +* pool-gpu-threads +* pool-thread-concurrency ## CLI-only options diff --git a/doc/kernel.md b/doc/kernel.md index d6264338..e0675086 100644 --- a/doc/kernel.md +++ b/doc/kernel.md @@ -4,7 +4,6 @@ See directory `kernel`. - ## Parameter configuration ### Common @@ -16,7 +15,9 @@ such as (but not necessarily limited to) `thread-concurrency`, `intensity`, A description of how to do this is available in `doc/MINING.md`. -### alexkarnew +### Scrypt kernels + +#### alexkarnew Alexey Karimov's optimised kernel, based on `ckolivas`. For Catalyst >=13.4. @@ -25,7 +26,7 @@ Only supports `vectors=1`. [Announcement](https://litecointalk.org/index.php?topic=4082.0). -### alexkarold +#### alexkarold Alexey Karimov's optimised kernel, based on `ckolivas`. For Catalyst <13.4. @@ -34,14 +35,14 @@ Only supports `vectors=1`. [Announcement](https://litecointalk.org/index.php?topic=4082.0). -### bufius +#### bufius Bufius' optimised kernel, based on `ckolivas`. Merged from vertminer. Only supports `vectors=1` and `lookup-gap` 2, 4 or 8. -### ckolivas +#### ckolivas The original Colin Percival `scrypt` kernel, maintained for a long time by Con Kolivas in `cgminer` and renamed to reflect the fact. @@ -49,14 +50,14 @@ Con Kolivas in `cgminer` and renamed to reflect the fact. Only supports `vectors=1`. -### psw +#### psw Pavel Semjanov optimised kernel, SHA256 speedups. [Announcement](https://bitcointalk.org/index.php?topic=369858.0). -### zuikkis +#### zuikkis Zuikkis' optimised kernel, based on `ckolivas`. @@ -64,6 +65,21 @@ Only supports `vectors=1` and `lookup-gap=2`. [Announcement](https://litecointalk.org/index.php?topic=6058.msg90873#msg90873). +### Other kernels + +#### darkcoin +#### darkcoin-mod +#### animecoin +#### fuguecoin +#### groestlcoin +#### inkcoin +#### marucoin +#### myriadcoin-groestl +#### quarkcoin +#### qubitcoin +#### sifcoin +#### twecoin +#### maxcoin ## Submitting new kernels