Post
Topic
Board Mining (Altcoins)
Re: [ANN] lolMiner-mnx, Mining MinexCoin(MNX) with GPUs on Windows & Linux
by
lets22
on 13/02/2018, 15:44:25 UTC
I have 5 GTX 1060 but I only get one card. you can explain in detail how to run all 5 cards

One bat per card, selecting the right gpu

But it crashes often with more than 1 instance running
thanks for the answer, but so far nothing has helped. I turn on the second bat file, it divides the power of one video card in half

Lol

Of course, te second bat should point to another GPU, not the first one
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)
Code: (startminers.bat (default = 3 GPUs))
@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
)

Code: (minexcoin.bat)
@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.
thanks, you can learn how to run decryption files startminers.bat