WARNING: Looks like GPU0 are stopped. Restarting...
Is there a way to make the miner auto close and reopen when this happens? This error is very random and has nothing to do with overclocking.
I just noticed that there is an "eexit" param, setting it to 1 seems to close the miner when errors occur. Still testing this, but it did close the miner for another error. So now you just need a bat script that restarts the miner as soon as it closes.
If using the cfg file: eexit 1
if using command line params: --eexit 1
@echo off
:restart
TIMEOUT 5
miner.exe --eexit 1
ping 127.0.0.1 > nul
goto :restart
It would be nice if these parameters would be documented in the OP.