⚡ UPDATEClient app updated to verson
0.7.6⚠️ Users who use mining cards like
NVIDIA P106-100 и P104-100 make attention!
As you know, to display such cards, you had first to switch them to WDDM mode, as described in the FAQ in the first post of this topic.
However, at some point (some new version of the drivers) this method not working already. Moreover, after switching to WDDM, cards can dissapear in OS and need to reinstall the drivers then.
This issue has been resolved with this update! Now the data for the mining cards is collected by an alternative method using NVIDIA's nvidia-smi utility.
Users using such mining cards, please report is this feature works normally?
How it works:
- if no found any GPU in the rig using the standard method — an attempt will be made to get data via nvsmi
(it's most typical case and everything will happen automatically and no user actions is required)- if you have a mixed rig, where there are both mining cards and regular ones (say, GTX 1060-6 or RX580), then the alternative mode must be forced in the
config.json.
This will affect all NVIDIA cards in the rig
(information from the regular 1066, for example, will also be collected by an alternative method).
in
config.json you need to add the following line
(do not forget to put a comma on the previous one):
"nvsmi": 1config will be looks like this:
{
"rig_id": 00000,
"user_id": 0000,
"url": "https://rig.cards",
"secret_key": "yoursecretkeyhere",
"nvsmi": 1
}
- there may also you have installed NVIDIA drivers to a non-default folder
For such cases in
config.json also need to specify the path to the
nvidia-smi.exe file.
By default, this file is located here:
\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exeYou need to add the line:
"nvsmi_path": "\\fullpath\\to\\utility\\nvidia-smi.exe"Note that the backslash
\ must be escaped (in fact, it must be double)
So the result will be like this:
{
"rig_id": 00000,
"user_id": 0000,
"url": "https://rig.cards",
"secret_key": "yoursecretkeyhere",
"nvsmi": 1,
"nvsmi_path": "\\Program Files\\NVIDIA Corporation\\NVSMI\\nvidia-smi.exe"
}
Known issuesWhen using alternative method there are no possibility to get information about fan rpm. Only % percent value is available.
In case of any questions, issues and other – post to this topic or mail to
[email protected]