1080ti aorus extreme (×1 for testing)
win10
Current Cuda 9
With and without --enable-nv-hotfix
Crashes within 10-15 min
Without Hotfix 20-23 ksol
With Hotfix 5-6 ksol
Done without any adjustments
=> worthless cause u cant leave it unattended
Linux not tested Till now.
Not worthless at all: you can use a shell script for an automatic relaunch:
in a .bat:
echo -------------------------------------------------------------------
echo Simple script to restart your miner software after a period of time
echo -------------------------------------------------------------------
echo:
set executable=lolMiner-mnx.exe
set commandline= --server mnx.suprnova.cc --port 7076 --user xxxxx --pass x --platform 1
set /a counter=0
:start
%executable% %commandline%
echo:
echo Restarting the software (%counter%)
set /a counter+=1
echo:
echo:
goto start