This repository has been archived by the owner on Jan 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
3,579 additions
and
878 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Authors | ||
|
||
## Current | ||
## Core | ||
|
||
* Scrypt-only refactor and maintenance: Noel Maersk <[email protected]> LfxRFgXzA13TSTxgFGUFEtumv5ShGzAmLw | ||
* Core: Martin Danielsen <[email protected]> 1DNBcSEENBwDKrcTyTW61ezWhzsPy5imkn | ||
|
@@ -9,6 +9,13 @@ | |
* API: Andrew Smith <kan0i {at} kano-kun [dot] net> 1Jjk2LmktEQKnv8r2cZ9MvLiZwZ9gxabKm | ||
|
||
|
||
## OpenCL kernels | ||
|
||
* scrypt: Colin Percival | ||
* zuikkis: Zuikkis LeXck7EYgxyjw13zNDxZFmmgmWffFvhmSh | ||
* alexkarnew/alexkarold: Alexey Karimov LMqRcHdwnZtTMH6c2kWoxSoKM5KySfaP5C | ||
|
||
|
||
## Bug fixes | ||
|
||
* Gabriel Devenyi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# Kernels | ||
|
||
## Available OpenCL kernels | ||
|
||
See directory `kernel`. | ||
|
||
|
||
## Parameter configuration | ||
|
||
### Common | ||
|
||
In general, switching kernels requires reconfiguring mining parameters, | ||
such as (but not necessarily limited to) `thread-concurrency`, `intensity`, | ||
`gpu-engine` and `gpu-memclock`. | ||
|
||
A description of how to do this is available in `doc/MINING`. | ||
|
||
|
||
### alexkarnew | ||
|
||
Alaxey Karimov's optimised kernel, based on `ckolivas`. For Catalyst >=13.4. | ||
|
||
Only supports `vectors=1`. | ||
|
||
[Announcement](https://litecointalk.org/index.php?topic=4082.0). | ||
|
||
|
||
### alexkarold | ||
|
||
Alaxey Karimov's optimised kernel, based on `ckolivas`. For Catalyst <13.4. | ||
|
||
Only supports `vectors=1`. | ||
|
||
[Announcement](https://litecointalk.org/index.php?topic=4082.0). | ||
|
||
|
||
### ckolivas | ||
|
||
The original Colin Percival `scrypt` kernel, maintained for a long time by | ||
Con Kolivas in `cgminer` and renamed to reflect the fact. | ||
|
||
Only supports `vectors=1`. | ||
|
||
|
||
### zuikkis | ||
|
||
Zuikkis' optimised kernel, based on `ckolivas`. | ||
|
||
Only supports `vectors=1`, `lookup-gap=2` and `worksize=256`. | ||
|
||
[Announcement](https://litecointalk.org/index.php?topic=6058.msg90873#msg90873). | ||
|
||
|
||
## Submitting new kernels | ||
|
||
### Requirements | ||
|
||
* OpenCL source code only, licenced under GPLv3 (or later). | ||
* Not hard-coded for a specific GPU model or manufacturer. | ||
* Known limitations and any specific configuration quirks must be mentioned. | ||
|
||
|
||
### Procedure | ||
|
||
1. Copy the kernel you wish to modify and commit it verbatim. | ||
|
||
This way, it is easy to verify that there are no hidden changes. Note in | ||
the commit message which kernel is used as a base. | ||
|
||
2. Make changes to the kernel. Commit them. | ||
|
||
This allows to produce a diff that makes sense. | ||
|
||
3. Search for KL_CKOLIVAS and CKOLIVAS_KERNNAME in the top-level source | ||
directory and make additions to the listed files in order to integrate | ||
the new kernel. | ||
|
||
Now it can be selected when starting via the `--kernel` argument or | ||
`kernel` configuration option. | ||
|
||
4. Add yourself to the "kernels" section in `AUTHORS.md`. Keep it short. | ||
|
||
5. Submit a pull request on GitHub, or file it at the issue tracker, | ||
outlining the changes made, known limitations, and tested GPUs. List | ||
your git repository and branch name. The current repository and issue | ||
tracker links should be in `README.md`. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.