Skip to content

Commit

Permalink
to ver 1.5.14a
Browse files Browse the repository at this point in the history
  • Loading branch information
t4njast committed Dec 7, 2018
1 parent 1576f80 commit dbe2d5f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,23 @@ The algorithm names are case sensitive.

# Changelog

v1.5.14a
- bux fixes
- x16r speed improvements
- lyra2z speed improvements
- api bumped to 0.1.9

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
- added support for RTX 2080 in CUDA 10 build
- support for simultaneous mining and benchmarking
- added support for RTX 2080 in CUDA 10 build
- SLI issue fix (bus ID is mapped to correct UUID)
- api bumped to 0.1.8
- api bumped to 0.1.8

v1.5.11a
- fixed difficulty parsing bug
Expand Down
10 changes: 10 additions & 0 deletions api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1259,12 +1259,17 @@ Response field | Type | Description
`build_platform` | string | Build platform.
`build_time` | string | Build time.
`build_number` | int | Build number.
`excavator_cuda_ver` | int | Returns the version of CUDA used in excavator.
`driver_cuda_ver` | int | Returns the latest version of CUDA supported by the driver.
`uptime` | long | Uptime in seconds.
`cpu_load` | double | CPU load in percentage.
`cpu_usage` | double | CPU usage in percentage.
`ram_load` | double | Used memory in percentage.
`ram_usage` | double | Used memory in MB.

_REMARK_:
`driver_cuda_ver` has to be grater than or equal to `excavator_cuda_ver`.

Example usage:
```
{"id":1,"method":"info","params":[]}
Expand All @@ -1277,6 +1282,8 @@ Example response:
"build_platform": "Windows",
"build_time": "2017-11-17 13:26:36",
"build_number": 3456,
"excavator_cuda_version": 9010,
"driver_cuda_version": 10000,
"uptime": 5,
"cpu_load": 3.0168410822665095,
"cpu_usage": 0,
Expand Down Expand Up @@ -1334,6 +1341,9 @@ Example response:

# Changelog

* v0.1.9 (excavator v1.5.14a)
- Added `driver_cuda_ver` and `excavator_cuda_ver` fields to [info](#info) method.

* v0.1.8 (excavator v1.5.12a)
- Added `sli` field to device details.
- Changed handling with benchmark mode in [algorithm\.add](#algorithm-add), [worker\.add](#worker-add), [workers\.add](#workers-add) methods.
Expand Down

0 comments on commit dbe2d5f

Please sign in to comment.