Skip to content

Commit

Permalink
to ver 1.5.2a
Browse files Browse the repository at this point in the history
  • Loading branch information
t4njast committed Apr 16, 2018
1 parent 62f747d commit ce25211
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 30 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,16 @@ From version 1.5.0a further excavator supports only NiceHash stratums.

# Changelog

v1.5.2a
- bug fixes
- API version bumped to 0.1.2
- removed algorithms Nist5 and CryptoNight

v1.5.1a
- API bug fixes
- API version bumped to 0.1.1 (added devices.get method)
- CryptoNight and CryptoNightV7 bug fixes
- speed improvements for lyra2rev2 on Titan V
- CryptoNight and CryptoNightV7 bug fixes
- speed improvements for lyra2rev2 on Titan V

v1.5.0a
- bug fixes & improvements
Expand Down
20 changes: 13 additions & 7 deletions api/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Excavator API Version 0.1.1
# Excavator API Version 0.1.2

**WARNING! This document is not complete yet and is still being worked on. Also, during Excavator alpha versions, API may change so make sure you check this page always before updating to next alpha version!**

Expand Down Expand Up @@ -144,6 +144,8 @@ Response field | Type | Description
------|---------|---------
`address` | string | Remote address of the NiceHash stratum.
`login` | string | Login credentials.
`connected` | boolean | `True` if connected to the stratum.
`server_status` | string | Message from the stratum server.

Example usage:
```
Expand All @@ -152,11 +154,12 @@ Example usage:

Example response:
```
{
"address":"nhmp.usa.nicehash.com:3200",
"login":"34HKWdzLxWBduUfJE9JxaFhoXnfC6gmePG.test2:x",
"id":1,
"error":null
{
"id":1,
"address":"nhmp.eu.nicehash.com:3200",
"login":"34HKWdzLxWBduUfJE9JxaFhoXnfC6gmePG.test2:x",
"connected":true,
"server_status":"Subscribed"
}
```

Expand Down Expand Up @@ -1129,6 +1132,9 @@ Example response:
```

# Changelog
* v0.1.2 (excavator v1.5.2a)
- Changed response fields of the [subscribe.\info](#subscribe-info) method.

* v0.1.1 (excavator v1.5.1a)
- Added [devices.\get](#devices-get) method.

Expand All @@ -1137,7 +1143,7 @@ Example response:
- Changed [algorithm.\add](#algorithm-add) and [algorithm.\remove](#algorithm-remove) input parameters.
- Changed response of the [algorithm.\list](#algorithm-list) method.
- Added [workers\.reset](#workers-reset), [worker\.list](#worker-list), [worker.\.print.\speeds](#worker-speeds) and [worker\.clear](#worker-clear) methods.
- Added [mining.\stop](#mining-stop) method.
- Added [miner.\stop](#miner-stop) method.


* v0.0.3 (excavator v1.4.3a)
Expand Down
21 changes: 0 additions & 21 deletions nvidia/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ Name | Supported devices | Wcount*1 | Pcount*2
[daggerhashimoto_decred](#daggerhashimoto_decred)| NVIDIA SM 5.2+ | 1 | 3
[daggerhashimoto_sia](#daggerhashimoto_sia)| NVIDIA SM 5.2+ | 1 | 3
[daggerhashimoto_pascal](#daggerhashimoto_pascal)| NVIDIA SM 5.2+ | 1 | 3
[cryptonight](#cryptonight)| NVIDIA SM 5.0+ | 1 |2
[keccak](#keccak)| NVIDIA SM 5.0+ | 1 |3
[neoscrypt](#neoscrypt)| NVIDIA SM 5.0+ | 1 |1
[nist5](#nist5)| NVIDIA SM 5.0+ | 1 |1
[cryptonightV7](#cryptonightV7)| NVIDIA SM 5.0+ | 1 |2

*1 Recommended number of workers per device to reach optimal speeds.
Expand Down Expand Up @@ -198,17 +196,6 @@ If no parameters are provided, device specific defaults are used. If provided pa

NOTE1: Parameter P is used to select the most profitable default ratio values. If P is 0 the goal is to reach highest daggerhashimoto speed while retaining decent speed on pascal. When P is 1 default ratio is set to reach highest combined speeds on both algorithms.

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

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.**

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

Parameter # or name | Range | Explanation
Expand All @@ -232,14 +219,6 @@ If no parameters are provided, device specific defaults are used. If provided pa

**WARNING: NeoScrypt is tuned for next cards: 1080 Ti, 1080, 1070 Ti, 1070, 1060 6GB, 1060 3GB, 1050 Ti, 1050, 1030, P104-100, P106-100 and TITAN V. You may reach higher speeds by experimenting with parameters when using a different card.**

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

Parameter # or name | Range | Explanation
-----------------|----------|---------
1 or `I` | 0-inf | Intensity

If no parameters are provided, device specific defaults are used. If provided parameter is '0' then device specific default value is used.

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

Parameter # or name | Range | Explanation
Expand Down

0 comments on commit ce25211

Please sign in to comment.