Bitcoin Forum
March 28, 2024, 01:59:31 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  Print  
Author Topic: [ANN] lolMiner-mnx, Mining MinexCoin(MNX) New version: v0.4 (July 22)  (Read 30701 times)
beta1234
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
February 19, 2018, 04:39:12 PM
 #181

thx für die neue Version

Wenn ich set "DEVICE=0,1,2" einstelle für meine 3 gpus, wird nur "0" genommen zum minen.
mit dem Befehl lolMiner-mnx.exe --list-devices in einer test.bat zeigt er mir aber alle 3 an, also 0,1,2 Devices

1711634371
Hero Member
*
Offline Offline

Posts: 1711634371

View Profile Personal Message (Offline)

Ignore
1711634371
Reply with quote  #2

1711634371
Report to moderator
1711634371
Hero Member
*
Offline Offline

Posts: 1711634371

View Profile Personal Message (Offline)

Ignore
1711634371
Reply with quote  #2

1711634371
Report to moderator
1711634371
Hero Member
*
Offline Offline

Posts: 1711634371

View Profile Personal Message (Offline)

Ignore
1711634371
Reply with quote  #2

1711634371
Report to moderator
The Bitcoin network protocol was designed to be extremely flexible. It can be used to create timed transactions, escrow transactions, multi-signature transactions, etc. The current features of the client only hint at what will be possible in the future.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1711634371
Hero Member
*
Offline Offline

Posts: 1711634371

View Profile Personal Message (Offline)

Ignore
1711634371
Reply with quote  #2

1711634371
Report to moderator
mk111
Jr. Member
*
Offline Offline

Activity: 230
Merit: 1


View Profile
February 19, 2018, 04:46:42 PM
 #182

I have 2 x cards but it only pickups up one cards even when I used the following: set "DEVICE=0,1"
Please fix.

Thanks
r12x2
Newbie
*
Offline Offline

Activity: 68
Merit: 0


View Profile
February 19, 2018, 05:05:05 PM
Last edit: February 19, 2018, 05:21:27 PM by r12x2
 #183

Good work Lolliedeb!
AndreasSantonio
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
February 19, 2018, 05:08:09 PM
 #184

In Ubuntu if run all the video cards in the same window, the performance drops very much. And the more cards, the lower the productivity of each.
Lolliedieb (OP)
Member
**
Offline Offline

Activity: 433
Merit: 48


View Profile WWW
February 19, 2018, 05:29:25 PM
 #185

How is your CPU load? Usually each GPU gets its own worker thread that is capsuled of the others.

As for the .bat problem: did you write in a password? When --pass is send to lolMiner the next element is treated as password. If you do "set "PASS=" this kind of kills the --device parameter.

What you can do is figuring out ideal commandline to run the miner without the .bat and then copy over the whole string to bat... that will also work Smiley

Check out lolMiner 1.56, an efficient miner for Ethash, Beam and many Cuckoo-Cycle and Equihash variants for AMD & Nvidia cards at low fees.
AndreasSantonio
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
February 19, 2018, 05:33:04 PM
 #186

How is your CPU load? Usually each GPU gets its own worker thread that is capsuled of the others.

As for the .bat problem: did you write in a password? When --pass is send to lolMiner the next element is treated as password. If you do "set "PASS=" this kind of kills the --device parameter.

What you can do is figuring out ideal commandline to run the miner without the .bat and then copy over the whole string to bat... that will also work Smiley
GPU load is only 10-15%


run_miner.sh file:

#!/bin/bash
POOL=mnx.suprnova.cc
PORT=7077
USER=andreassantonio.Andreassant3
PASSWORD=1
PLATFORM=0
DEVICE=0,1,2,3,4,5

cd "$(dirname "$0")"
while true
do
  ./lolMiner-mnx --server mnx.suprnova.cc --port 7077 --user andreassantonio.Andreassant3 --pass 1 --platform 0 --device DEVICE=0,1,2,3,4,5 $HOTFIX $@
  if [ $? -eq 134 ]
  then
    break
  fi
done

If start miner for each GPU - all work good.
Nihrupka
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
February 19, 2018, 05:38:29 PM
 #187

In Ubuntu if run all the video cards in the same window, the performance drops very much. And the more cards, the lower the productivity of each.

for me too
2x1070+2x1060 = speed like 1x1070
and segmentation fault
Lolliedieb (OP)
Member
**
Offline Offline

Activity: 433
Merit: 48


View Profile WWW
February 19, 2018, 05:58:13 PM
 #188

GPU load is only 10-15%

But I asked for CPU not GPU ^^

Better try that way:
Code:
#!/bin/bash
POOL=mnx.suprnova.cc
PORT=7077
USER=andreassantonio.Andreassant3
PASSWORD=1
PLATFORM=0
DEVICE=0,1,2,3,4,5

cd "$(dirname "$0")"
while true
do
  ./lolMiner-mnx --server mnx.suprnova.cc --port 7077 --user andreassantonio.Andreassant3 --pass 1 --platform 0 --device 0,1,2,3,4,5 $@
  if [ $? -eq 134 ]
  then
    break
  fi
done

By the way: you did not use the hotfix ... you are running on AMD? Then I would recommend to use optiminer, that one is faster for AMD right now. For Nvidia you should add the --enable_nv_hotfix, because else it is likely that 6 GPUs will cause a lot of load and a segmentation fault - unless you have some Ryzen Threadripper or Intel equivalent in that system.

for me too
2x1070+2x1060 = speed like 1x1070
and segmentation fault

Can you show how you start the miner and what is the output of lolMiner-mnx --list-devices?

Check out lolMiner 1.56, an efficient miner for Ethash, Beam and many Cuckoo-Cycle and Equihash variants for AMD & Nvidia cards at low fees.
AndreasSantonio
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
February 19, 2018, 06:06:19 PM
 #189

GPU load is only 10-15%

But I asked for CPU not GPU ^^
By the way: you did not use the hotfix ... you are running on AMD? Then I would recommend to use optiminer, that one is faster for AMD right now. For Nvidia you should add the --enable_nv_hotfix, because else it is likely that 6 GPUs will cause a lot of load and a segmentation fault - unless you have some Ryzen Threadripper or Intel equivalent in that system.
It' s my error, CPU load 10-15%. Not amd, my system: i7 7700 + gtx1060x6.
Lolliedieb (OP)
Member
**
Offline Offline

Activity: 433
Merit: 48


View Profile WWW
February 19, 2018, 06:15:46 PM
 #190

Hi all out there having problems with passwords or multi-GPU in Windows ... Unfortunately I included some broken .bat file where I confuse PASS and PASSWORD...
so here is how it should look like:

Code:
@echo off

setlocal enableDelayedExpansion

Rem #################################
Rem ## Begin of user-editable part ##
Rem #################################

Rem Insert your pool name here
set "POOL=eu.minexpool.nl"
Rem Insert your pool port here
set "PORT=9999
Rem Insert your user and worker names here
set "USER=XQZoBeGPZJoLhTdkcF8bScsNH5Wyesd9g4.worker0" 
Rem Insert your worker password here
set "PASS=x"

Rem Insert the index of the platform you want to run on. Run lolMiner-mnx.exe --list-devices
Rem to see all available platforms and the available devices for each platform
set "PLATFORM=0"
Rem Insert your devices to run the miner here. For multiple GPU pass a comma separated list, e.g.: 0,1 for using two GPUs
set "DEVICE=0"
Rem Uncommend the next line (by removing Rem) to enable the Nvidia CPU load fix
Rem set "HOTFIX=--enable-nv-hotfix"   

Rem #################################
Rem ##  End of user-editable part  ##
Rem #################################


set "PARAMS=--server %POOL% --port %PORT% --user %USER% --pass %PASS% --device %DEVICE% --platform %PLATFORM% %HOTFIX%"

:MINE
Start /wait /high lolMiner-mnx.exe !PARAMS!
goto :MINE

One more fix for 0.21 in the bank  Grin

Check out lolMiner 1.56, an efficient miner for Ethash, Beam and many Cuckoo-Cycle and Equihash variants for AMD & Nvidia cards at low fees.
UrsaUrsa
Member
**
Offline Offline

Activity: 104
Merit: 11


View Profile
February 19, 2018, 06:21:20 PM
 #191

Unfortunately this version runs like a 3 legged elephant on my 7x 1070 rig. Previous version, I can comfortably run two instances, getting around 12ksol on each card. This one gets me 7ksol at the beginning but frequently drops to lows of 500sols... I played around work batch, etc... nothing really helped. Back to v11 now. I hope you come up with a fix for multi gpu. Cheers!
mk111
Jr. Member
*
Offline Offline

Activity: 230
Merit: 1


View Profile
February 19, 2018, 06:23:49 PM
 #192

Thanks changing PASSWORD to PASS fixed the issue where only device 0 was being used.


1 x 1070 on Windows 10 with V0.2 does 14000 sols
2 x 1070 on Windows 10 with v0.2 only does 7000 sols per card

I also tried enabling the Nvidia fix but it did not make any difference.


Good work sofar lolliedieb!
beta1234
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
February 19, 2018, 07:06:13 PM
 #193

Hi all out there having problems with passwords or multi-GPU in Windows ... Unfortunately I included some broken .bat file where I confuse PASS and PASSWORD...
so here is how it should look like:

Code:
@echo off

setlocal enableDelayedExpansion

Rem #################################
Rem ## Begin of user-editable part ##
Rem #################################

Rem Insert your pool name here
set "POOL=eu.minexpool.nl"
Rem Insert your pool port here
set "PORT=9999
Rem Insert your user and worker names here
set "USER=XQZoBeGPZJoLhTdkcF8bScsNH5Wyesd9g4.worker0" 
Rem Insert your worker password here
set "PASS=x"

Rem Insert the index of the platform you want to run on. Run lolMiner-mnx.exe --list-devices
Rem to see all available platforms and the available devices for each platform
set "PLATFORM=0"
Rem Insert your devices to run the miner here. For multiple GPU pass a comma separated list, e.g.: 0,1 for using two GPUs
set "DEVICE=0"
Rem Uncommend the next line (by removing Rem) to enable the Nvidia CPU load fix
Rem set "HOTFIX=--enable-nv-hotfix"   

Rem #################################
Rem ##  End of user-editable part  ##
Rem #################################


set "PARAMS=--server %POOL% --port %PORT% --user %USER% --pass %PASS% --device %DEVICE% --platform %PLATFORM% %HOTFIX%"

:MINE
Start /wait /high lolMiner-mnx.exe !PARAMS!
goto :MINE

One more fix for 0.21 in the bank  Grin


The Miner is closing and opening every 1-2 Sec....
Doesnt work for me, not with 2 gpus, and not with 3 gpus.. closing/opening loop from the Miner
But Its finding all 3 devices right

Der Miner schließt sich jede Sekunde bis 2 und öffnet sich wieder und zack direkt wieder zu, wieder auf usw...endlos Sad
Er zeigt aber alle 3 Gpus richtig an
r12x2
Newbie
*
Offline Offline

Activity: 68
Merit: 0


View Profile
February 19, 2018, 07:51:47 PM
 #194

0.2 version has increased sols for RX560 from 2600S/s to 3200S/s, but it's still low vs optiminer (5000S/s)
promuckaj
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
February 19, 2018, 08:33:50 PM
 #195

It is good to see that you put a lot of efforts in this project, it is good to have a good miner for this algo under windows, but not so much for MNX, there is not a lot of sense because Optiminer is way better then this(I understand it is still in early development), but please consider that MNX will change algo later this year.
ol92
Sr. Member
****
Offline Offline

Activity: 445
Merit: 255


View Profile
February 19, 2018, 08:41:07 PM
 #196

It is good to see that you put a lot of efforts in this project, it is good to have a good miner for this algo under windows, but not so much for MNX, there is not a lot of sense because Optiminer is way better then this(I understand it is still in early development), but please consider that MNX will change algo later this year.
Performance with this miner for nvidia pascal is very good: now nvidia cards with this miner perform at similar level or even better than equivalent amd ones with optiminer.

I hope you will add zerocoin equihash version too ...
Dirtpaw
Jr. Member
*
Offline Offline

Activity: 192
Merit: 5


View Profile
February 20, 2018, 12:12:45 AM
 #197

Tested ver. 0.2 on linux, g4400 cpu, 6x 1070ti. Started the miner with 6x gpus. Hashrate was around 5k per card (ver. 0.13 13k per card), dropped to 2k sols per card, then dropped to 2 sols per card and then the rig restarted. Will try with different number of gpus tomorrow. Using hotfix did nothing, still low hashrate and rig restarts.

Earn or compound your BTC : https://freebitco.in/?r=8476033  I share 75% of my commissions with my referrals. Share amount based on referral activity.
kdb
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
February 20, 2018, 07:49:15 AM
 #198

Windows 10, AMD Athlon II, RAM 4GB

3xGTX1070 do not work correctly

On start low speed

http://i6.pixs.ru/storage/9/3/3/02v3x1070s_1956580_29432933.png

http://i6.pixs.ru/storage/9/1/5/02v3x1070e_8729672_29432915.png

http://i6.pixs.ru/storage/9/2/4/02v3x1070e_1118952_29432924.png

http://i6.pixs.ru/storage/9/2/9/02v3x1070e_9714662_29432929.png

Same threads typing in same output in one of the time without queue.


1xGTX1070 show 10kSol/s, less than prev release
FuSioNmAn
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
February 20, 2018, 08:17:39 AM
 #199

Try 0.2 on 4x rx480.
Bat file doesn't work. It call always device 0. I think that there is an error maybe in quotation of some char.
Launching by prompt with "--device 0,1,2,3" parameters it start on four card but goes to crash in few seconds.
ZenoDiac
Jr. Member
*
Offline Offline

Activity: 42
Merit: 1


View Profile
February 20, 2018, 09:40:55 AM
 #200

The multiple GPU features does not work for me.
Adding --device 0,1,2,3,4,5 only splits the Hashrate between all the cards.
I have to run multiple instances of this v2 miner for it to hash properly, each with its own device. Will test if it crashes less.

Windows 10.
GTX 1080's
platform 0; hotfix off
 
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!