Bitcoin Forum
September 01, 2025, 09:53:28 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 [647] 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 ... 1410 »
  Print  
Author Topic: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v15.0 (Windows/Linux)  (Read 6591289 times)
NavyCuda
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
July 05, 2017, 08:05:21 PM
 #12921

First post, just joined.

Any news on support for Vega FE?  I have two of them on the way.
Zulucia
Newbie
*
Offline Offline

Activity: 73
Merit: 0


View Profile
July 05, 2017, 08:16:27 PM
 #12922

First post, just joined.

Any news on support for Vega FE?  I have two of them on the way.

You can try them and tell us the results.
macuseri686
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
July 05, 2017, 09:07:49 PM
Last edit: July 05, 2017, 09:43:45 PM by macuseri686
 #12923

@claymore If I may request a feature for an upcoming release. I myself, like many of the miners, use a bunch of headless miners connected via the network to your miner manager program. When watchdog restarts the miner, or calls the reboot.sh file, it would be really handy to have the last reboot cause recorded for easy access in the manager, or if the miner simply crashes and doesn't reboot, have the last few lines of the log file available to view in the manager. For instance "miner hangs at opencl call on GPU01". That way every single reboot doesn't warrant pulling out the monitor and connecting to the box at fault to find the issue.

Thanks in advance
NavyCuda
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
July 05, 2017, 09:28:42 PM
 #12924

First post, just joined.

Any news on support for Vega FE?  I have two of them on the way.

You can try them and tell us the results.

I noticed a few other posts indicating that Vega currently doesn't work with Claymore's miner.
rorschach1
Hero Member
*****
Offline Offline

Activity: 840
Merit: 503


View Profile
July 05, 2017, 09:41:53 PM
 #12925

Problems with DUAL Mining

Hey,
when i solo mine ETH with following settings (WIN10, 6x 1070 Asus Strix): 

60% Power
+600 Memory
+0 Core

i get around 180Mh/s @ 670W

When i start ETh + SIA with same settings
i get 160 mh/s eth and ~1600 sia

is this eth drop normal? thought it would be less influence.

any improvements?
TY
Try to change -dcri parameter by push - key till acceptable values. Then change that parameter in your config/bat file. and also you have to remember that blake (sia Algorithm) is quite hot and power can be increase
jenifive
Sr. Member
****
Offline Offline

Activity: 390
Merit: 250


View Profile
July 05, 2017, 10:38:21 PM
Last edit: July 05, 2017, 11:19:16 PM by jenifive
 #12926

My Claymore is crashing DAG when switching to dev fee mining during Musicoin+DCR mining.
How to fix that? Or is there are non dev-fee version of miner around?


Why i have this error?



4x Palit 1070 Super Jet

RuMiner
Member
**
Offline Offline

Activity: 167
Merit: 15


View Profile
July 05, 2017, 11:16:34 PM
 #12927

@claymore If I may request a feature for an upcoming release. I myself, like many of the miners, use a bunch of headless miners connected via the network to your miner manager program. When watchdog restarts the miner, or calls the reboot.sh file, it would be really handy to have the last reboot cause recorded for easy access in the manager, or if the miner simply crashes and doesn't reboot, have the last few lines of the log file available to view in the manager. For instance "miner hangs at opencl call on GPU01". That way every single reboot doesn't warrant pulling out the monitor and connecting to the box at fault to find the issue.
my self-made reboot.bat sends email like tihs before reboot:
Quote
REBOOT RIG05 UPTIME 2 days 02:55:43
---------- C:\USERS\USER\DESKTOP\DUAL_MAIN\1499070431_LOG.TXT
14:20:09:412   73c   WATCHDOG: GPU 0 hangs in OpenCL call, exit
14:20:09:412   73c   WATCHDOG: GPU 0 hangs in OpenCL call, exit

Code:
Setlocal EnableDelayedExpansion
rem ############################################
set mailu=sender@gmail.com
set mailto=receiver@gmail.com
set davp=sender_password
set logdir=c:\path_to_logs
set sender="C:\Program Files\sendemail.exe"
rem ############################################
chcp 1251>nul
set "u=0"
for /f "tokens=2 delims=\" %%i in ('2^>nul reg query HKU ^| findstr /iv "classes .default"') do set /a "u+=1"
for /f "tokens=2 delims=," %%i in ('typeperf "\System\System Up Time" -sc 1 ^| findstr /rc:"\:"') do set "sec=%%i"
set "sec=%sec:"=%"
for /f "tokens=1 delims=." %%i in ("%sec%") do set "t=%%i"
set /a "ss=t%%60", "t/=60", "mm=t%%60", "t/=60", "hh=t%%24", "dd=t/24"
if %hh% lss 10 set "hh=0%hh%"
if %mm% lss 10 set "mm=0%mm%"
if %ss% lss 10 set "ss=0%ss%"
set upt=%dd% days %hh%:%mm%:%ss%
chcp 866>nul
for /f "tokens=*" %%i in (' dir /b /od "%logdir%\*.txt" ') do set "lastlog=%%i"
set tempfile=%temp%%random%
find "hangs in OpenCL call, exit" %logdir%\%lastlog% > %tempfile%
%sender% -f "%computername% <%mailu%>" -t %mailto% -u "REBOOT %computername% UPTIME %upt%" -o message-file=%tempfile%  -o message-header="X-Priority: 1" -s smtp.gmail.com -o tls=yes -xu %mailu% -xp %davp%
del %tempfile%
shutdown /r /t 5 /f

ps для pyccкoй винды cтpoкy "\System\System Up Time" зaмeнить нa "\Cиcтeмa\Bpeмя paбoты cиcтeмы"
TechPark
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 05, 2017, 11:57:40 PM
 #12928

First post, just joined.

Any news on support for Vega FE?  I have two of them on the way.

Did you buy them for mining?
NavyCuda
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
July 06, 2017, 12:11:00 AM
 #12929

First post, just joined.

Any news on support for Vega FE?  I have two of them on the way.

Did you buy them for mining?

Yes.  Mining is the excuse I used to buy them, with the hopes they'll pay for themselves, not actually turn a profit.  Will continue to game off my GTX 970 until the FE's pay for themselves.  Currently getting about 16MH from my Asus Strix GTX 970.  No OC, just whatever the card does out of the box.
Araviel
Member
**
Offline Offline

Activity: 114
Merit: 10


View Profile
July 06, 2017, 12:39:28 AM
 #12930

Getting 3mh less than excavator with 1060, any suggestions ?
bardacuda
Sr. Member
****
Offline Offline

Activity: 430
Merit: 254


View Profile
July 06, 2017, 12:40:02 AM
 #12931

First post, just joined.

Any news on support for Vega FE?  I have two of them on the way.

Did you buy them for mining?

Yes.  Mining is the excuse I used to buy them, with the hopes they'll pay for themselves, not actually turn a profit.  Will continue to game off my GTX 970 until the FE's pay for themselves.  Currently getting about 16MH from my Asus Strix GTX 970.  No OC, just whatever the card does out of the box.

I'm curious what they could do with an optimized kernel too. I would expect them to be 80% faster than Fury given the memory speed advantage, and I'm pretty sure the bus won't be a bottleneck. Last I heard though someone tried and only got low 30-something MH/s with one. Not sure which miner was used. Maybe it was sgminer.
NavyCuda
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
July 06, 2017, 01:00:27 AM
 #12932

I'm curious what they could do with an optimized kernel too. I would expect them to be 80% faster than Fury given the memory speed advantage, and I'm pretty sure the bus won't be a bottleneck. Last I heard though someone tried and only got low 30-something MH/s with one. Not sure which miner was used. Maybe it was sgminer.

The one video I watched showed 30-35MH.  Let's assume 30MH for now.  (Yes, I saw those videos before buying two FE's, so you know the insanity is strong with me)

With using the recommended driver suggested in Claymore's miner, I saw ~2MH increase in performance with my 970.  I then dialed back the intensity so I could play old games at the same time as mining and still pull 16MH.  That's ~12%.  So if a future driver can offer a modest 12% increase on Vega's current performance, we should be able to expect 33.75MH.  I'm too new to mining to know how much the software used to mine has an effect on hashrate, but I imagine there is some optimization in the miner.

So if I can get 40MH out of each Vega FE and be at 90% GPU utilization I'll be thrilled.  If it's more than 40MH my next computer might be a threadripper with four Vega's.

I do CAD work on the side and my 970 really struggles with some models.  Even the older Quadro 5000 2GB at work beats up on it pretty hard, so Vega should be a welcome change in that regard.
skywind912
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
July 06, 2017, 02:22:03 AM
 #12933

does anyone have a problem with their MH/S being inconsistent? i have a 6 gpu rig and it goes from anywhere 30 up to 180 mh/s am i doing something wrong? My power to my gpus are inconsistent i've changed my psu and checked all my gpus on other computers and they run fine but when i run all of them together it's really spiking like crazy....anyone have this issue?
Gunna01
Sr. Member
****
Offline Offline

Activity: 303
Merit: 251


View Profile
July 06, 2017, 03:36:54 AM
 #12934

Any idea on why a GPU will fail, then the driver crashes? It's causing my rig to BSOP after about 10 - 15 minutes of mining
thameur
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
July 06, 2017, 03:46:49 AM
Last edit: July 06, 2017, 03:57:40 AM by thameur
 #12935

http://
I was mining @40mh/s since today with cuda miner 2x980 untill today for 10  days but it dropped to 37 mh/s.Is this because difficulty raised ?

I heard 1060 / 1070 cards were unaffected by hashrate drop.
AMD 4xx/5xx cards also suffer from this. For every DAG Epoch, be ready for hashrate drop.

yes but there is a solution to get back hashrate to normal but with a little up temp and nothing OC  Grin Grin Grin Grin Grin
and what's the solution?
raise core and voltage Smiley

 Grin Grin Grin Grin Grin Grin Grin

I said no overclocking Grin Grin Grin . it's very simple but with **temp Up** full hashrate no loss in ETH and DCR with my 4x R9 390 129.12 Mh/s ETH and 1932 Mh/s DCR but
with normal mining 119 Mh/s ETH and 1920 Mh/s DCR
I will testing this with many next DAG to confirmed the solution when all RX and all amd 2 gb to 8 gb no mining more
linkadinkadoo
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 06, 2017, 05:47:03 AM
 #12936

Hey pros, where do I put the -dcri value in my batch file?

setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100
EthDcrMiner64.exe -epool us2.ethermine.org:4444 -ewal 0x284a8C28154FcA14E0eC3a9f78D63c43bc92d006.Lewis -epsw x -dpool "http://siamining.com:9980/miner/header?address=5ebb1e912f9f8d05e5c3a7b3e9bbdd9cdebb0abbc3fda8be2e03209877e55b6aa948915ec8fa&worker=Lewis" -dcoin sia

Thanks a million
xxoanser
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
July 06, 2017, 05:49:17 AM
 #12937

Hey pros, where do I put the -dcri value in my batch file?

setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100
EthDcrMiner64.exe -epool us2.ethermine.org:4444 -ewal 0x284a8C28154FcA14E0eC3a9f78D63c43bc92d006.Lewis -epsw x -dpool "http://siamining.com:9980/miner/header?address=5ebb1e912f9f8d05e5c3a7b3e9bbdd9cdebb0abbc3fda8be2e03209877e55b6aa948915ec8fa&worker=Lewis" -dcoin sia

Thanks a million

-dcri 5 (p. example)
linkadinkadoo
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 06, 2017, 06:05:48 AM
 #12938

Can someone please tell me how to get more than 2 mhs average on 1080 and 1080 ti cards with win 10?

Upgrade your windows 10 to the creators update.
xeridea
Sr. Member
****
Offline Offline

Activity: 449
Merit: 251


View Profile WWW
July 06, 2017, 06:20:06 AM
 #12939

Claymore, can you make Ethman allow selecting multiple rigs and doing same thing?  Namely, Enable Main mining, Dual mining, or Disable mining? It would be super useful on occasion. Thanx for making great miners!

Profitability over time charts for many GPUs - http://xeridea.us/charts

BTC:  bc1qr2xwjwfmjn43zhrlp6pn7vwdjrjnv5z0anhjhn LTC:  LXDm6sR4dkyqtEWfUbPumMnVEiUFQvxSbZ Eth:  0x44cCe2cf90C8FEE4C9e4338Ae7049913D4F6fC24
linkadinkadoo
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 06, 2017, 06:32:02 AM
 #12940

Hi guys, today i tried ver 9.5 two of my rigss all good. But the third one when i double click the .bat file it opens and close the comand line window in micro seconds.

I already deactivaded the win defender, dont know why this is happening.

Can someone help me.

Thanks


When the command window opens momentarily, hit the Print Screen button on your keyboard. This will take a snapshot of your entire desktop at that moment. Then open Photoshop, or some other image editing software and paste it in a new file. That will let you read why the miner crashed.
Pages: « 1 ... 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 [647] 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 ... 1410 »
  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!