how does claymore restart when set minspeed?
i want to create reboot.bat, because i want overdriventool.exe to be applied as well whenever a gpu hangs or crash.
sure taskkill and start start.bat is basic command at reboot.bat, but clearly, it creates problems sometimes such as stuck on creating dag.
so how to prevent this? my theory is it will stuck at creating dag because dag is not released via taskkill if driver crashed or gpu hangs.
any proper command for foolproof reboot.bat in case?
thanks.
I had issues earlier with my rig and wrote a simple script and used devcon to make sure to restart the miner properly.
Don't know if it helps you, but you may want to write a reboot file along these lines;
@echo off
wmic process where name="EthDcrMiner64.exe" delete
timeout /t 5
cd %~dp0
devcon.exe disable "PCI\VEN_1002&DEV_687F"
timeout /t 5
devcon.exe enable "PCI\VEN_1002&DEV_687F"
timeout /t 5
start_eth.bat
exit
wow this is neat. thanks sir.
so basically, i just paste this in reboot.bat and add parameter -minspeed x -r 1 to miner.bat?
pardon me, your code is quite unfamiliar to me. can you guide me a step by step if im missing something?
thanks.
what im trying to do is if speed 390mh/s is not achieved (of course due to unexpected circumstances such as gpu hanging, or crashed. yes, -wd 1 does that. but i want to include overdriventool's oc as well. -wd 1 or -minspeed just restarts ethdcrminer64.exe, not the entire miner.bat that includes my overdriventool parameters)
so if -minspeed is triggered, and -r 1 is enabled, it will call reboot.bat i believe.
so according to your quote, i just need to paste your whole quote in reboot.bat am i right?
btw, im curious to this, what does this basically do:
cd %~dp0
devcon.exe disable "PCI\VEN_1002&DEV_687F"
timeout /t 5
devcon.exe enable "PCI\VEN_1002&DEV_687F"
do i need to download/install devcon or is it included in win 10?
based on my understanding, it reenables amd gpu drivers. however, i have 13 gpus, does it reenable all 13?
edit:
i googled it, most of it talks about vegas, does it work with rx570?
edit:
i just explored my device manager, upon checking rx570's property>event
mine is:
PCI\VEN_1002&DEV_67DF
thanks