dear friend of mine and you can write me examples of bat files that are valid for 2 GTX 1060. if not hard
I try and I for some reason do not work
Create two files. One for starting the miner and one starting the first file for each GPU, something like this:
(change the 'GPUs' variable to the number of GPUs you would like to use for mining mnx)
@echo off
set /A GPUs=3
set /A GPUs-=1
FOR /L %%i IN (0,1,%GPUs%) DO (
ECHO Starting miner on GPU%%i
start "lolMiner GPU%%i" "minexcoin.bat" %%i
)
@echo off
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_HEAP_SIZE 100
:MINE
lolMiner-mnx.exe --server mnx.suprnova.cc --port 7077 --user WorkerName.%1 --pass x --device %1
goto :MINE
This will start lolMiner-mnx for the number of GPUs specified and restart when/if the miner crashes.