Genoil / ZECMiner

ZCash AMD OpenCL stratum miner for Windows

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

some kind of a fix

joquers opened this issue · comments

running several instances (1 per 2 cards) of the miner seemed to work

since the kernel call seems to be cpu-intensive i ran a batch calling the 1st 2 cards with a timeout of 15 secs and then another instance calling other 2 cards, then another timeout of 15 secs before calling the final 2 cards... 1 hour and going strong

please leave your batch file with arguments, i want to exam your settings.

just put
-g 0 1
-g 2 3
-g 4 5
in each .bat for adressing the GPUs

This is what does work for me so far. put the code into a seperate bat and start it instead of you start.bat
Result is a restart of your miner every 15min, you can adjust the time (900) by yourself.

:killen
@echo off
taskkill /f /im genoil.exe
timeout /t 5
start your_bat.bat
timeout /t 900
goto killen