Skip to content

Commit

Permalink
to ver 1.5.13a
Browse files Browse the repository at this point in the history
  • Loading branch information
t4njast committed Oct 17, 2018
1 parent c403225 commit 1576f80
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ The algorithm names are case sensitive.

# Changelog

v1.5.13a
- added algorithm CryptoNightV8 (XMR)
- new benchmark job for x16r
- fixed TDP limits for RTX cards

v1.5.12a
- lyra2rev2 speed improvements
- support for simultaneous mining and benchmarking
Expand Down
12 changes: 12 additions & 0 deletions nvidia/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Name | Supported devices | Wcount*1 | Pcount*2 | Intensity*3
[cryptonightV7](#cryptonightV7)| NVIDIA SM 5.0+ | 1 |2 | 0
[lyra2z](#lyra2z)| NVIDIA SM 5.0+ | 1 | 1 | 1
[x16r](#x16r)| NVIDIA SM 5.0+ | 1 | 1 | 1
[cryptonightV8](#cryptonightV8)| NVIDIA SM 5.0+ | 1 |2 | 0

*1 Recommended number of workers per device to reach optimal speeds.

Expand Down Expand Up @@ -208,3 +209,14 @@ Parameter # or name | Range | Explanation
If no parameters are provided, device specific defaults are used. If provided parameter is '0' then device specific default value is used.

**WARNING: You may reach higher speeds by experimenting with input parameters.**

# <a name="cryptonightV8"></a> cryptonightV8

Parameter # or name | Range | Explanation
-----------------|----------|---------
1 or `B` | 0-inf | Number of blocks
2 or `TPB` | 0-1024 | Number of threads per block

If no parameters are provided or '0' is specified, the device specific default values will be used.

**WARNING: This algorithm is optimized for the following cards: 1080 Ti, 1080, 1070 Ti, 1070, 1060 6GB, 1060 3GB, 1050 Ti, 1050, 1030, TITAN X, 980 Ti, 980, 970, 960, 950 and TITAN V. You may reach higher speeds by experimenting with parameters when using a different card.**
14 changes: 14 additions & 0 deletions nvidia/algorithms.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,20 @@
}]
},

"cryptonightV8": {
"WorkerCount": [1],
"Parameters": [{
"Name": "B",
"Range": [0, 65535],
"Explanation": "Number of blocks"
},
{
"Name": "TPB",
"Range": [0, 1024],
"Explanation": "Number of threads per block"
}]
},

"lyra2z": {
"WorkerCount": [1],
"Parameters": [{
Expand Down

0 comments on commit 1576f80

Please sign in to comment.