Genoil
Awesome work! Its mining well....yes a bit unstable but best out there IMO.
Quick question. What is the setting to have this miner auto restart every 30 mins. I have a few cards acting up and need a auto restart. :p
Your best bet is to run it in a loop:
:loop
genoil.exe ...
timeout -t 5
goto loop
so it starts over and over again and have another bat running which kills the miner periodically:
:loop
timeout -t 300
taskkill -t -f /im genoil.exe
goto loop
Tried it on nvidia out of curiosity but it didn't work (Mining thread quit zec-sa#2clEnqueueNDRangeKernel(-4)).
Not surprising just thought I'd give it a try. Interestingly it also didn't seem to recognize the intensity argument (error: unrecognised option '-i').
Would you be kind enough to give an example of entire .bat file. Thanks.
Try this, I posted it on the zcash forum earlier. It restarts the miner if an error is found.
There are two batch files, you need to run the first one which launches the second
@echo off
echo starting miner
:loop
if exist output.txt del output.txt
time /t
start /MIN nh.bat
:loop2
timeout /T 5 /NOBREAK >nul
findstr /C:"quit" /C:"null" output.txt && (
taskkill /F /IM genoil.exe
timeout /T 1 /NOBREAK >nul
echo re-starting miner
goto loop
) || (
goto loop2
)
Second batch file named nh.bat
genoil.exe -c equihash.usa.nicehash.com:3357 -u yourID.yourWORKER -p x > output.txt
echo quit >output.txt
exit