Bitcoin Forum
May 27, 2024, 11:42:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 [84] 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 ... 158 »
  Print  
Author Topic: Any word on amd vega hash rates?  (Read 202650 times)
bytiges
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
November 09, 2017, 01:45:55 PM
 #1661

hwinfo64 works fine with vega, no speed decrease or lockups. Just disable GPU I2C Support in settings.
I think I made it stable. I disabled all "weird stuff" from hwinfo, including direct hardware access, i2c ecc. Don't know exactly what, but it's showing temperatures and not blocking any more Smiley
cryptonist
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
November 09, 2017, 02:34:19 PM
 #1662

Monero hashrate drops when you disconnect your monitor (even if you are on IGP), or the screen power shut down after a while.
Simple disable screen power shut down, and do not disconnect your display while mining.

I tried this but still get hashrate drop. Does the monitor still need to be on as well?

I can't use IGPU as my monitor only has DP input.

I can confirm... my hashrate drop issue still exists. I even have a dummy HDMI dongle and also set power profile to max performance (never turn off monitor). Still no go. Performance drops after 10-12 hours. I even reduced the overclocks, but no success.

I did notice that when the performance drops, the fan speed also decreases. Although I have set fan RPM to MINIMUM 3500 RPM under Wattman/Overdrive tool. Can someone suggest why the fan speed might be decreasing automatically and if there is a way to sustain a high RPM? Maybe it DOES have to do with the card thinking the system is idle, so "let's power down"Huh But that doesn't explain the power profile or the HDMI dongle (the HDMI dongle has worked in other situations, so not sure why it wouldn't with Vega).

Hopefully, someone can figure out a fix. Very annoying to reboot or restart the miner every 10-12 hours.

Thanks!
Kompik
Sr. Member
****
Offline Offline

Activity: 463
Merit: 250


View Profile
November 09, 2017, 03:35:32 PM
 #1663

Is there any way to enable HBCC without opening radeon settings? The window always gets stuck so i cannot use wattman or other radeon settings ( even win reinstall didnt help). I am thinking of some registry or config edit? Thanks it would be much help!

Bitrated user: Kompik.
Ledipaa
Newbie
*
Offline Offline

Activity: 62
Merit: 0


View Profile
November 09, 2017, 03:50:00 PM
 #1664

Is there any way to enable HBCC without opening radeon settings? The window always gets stuck so i cannot use wattman or other radeon settings ( even win reinstall didnt help). I am thinking of some registry or config edit? Thanks it would be much help!


Suppose you havent seend Mythics post... You dont actually need that piece of garbage named watman for anything anymore Smiley


I hadn't originally planned on putting this out there, but some other asshole decided to charge a fee for this info. Fuck that guy. Here's a fix for reduced hashrate and a method for running 4+ Vega at full speed while mining XMR.

Basic Users:

1. Use the Blockchain drivers.
2. Open up your device manager.
3. Open up the "Display Adapters" dropdown.
4. Right click on one of your Vega's.
5. Disable it.
6. Wait a few seconds.
7. Right click on the Vega you just disabled.
8. Re-enable it.
9. Repeat steps 4-8 for the rest of your cards.
10. Enjoy mining at full speed with as many Vega as you damn well please. Probably.

Advanced Users:

The previously described process is a bit of a pain in the ass. Let's automate it.

New Procedure

1. Get your hands on the Windows Device Console (Devcon.exe). This will let you disable/enable devices from console.
2. Create a batch file in the same folder as devcon.exe with the following lines in it:
Code:
cd %~dp0
timeout /t 5
devcon.exe disable "PCI\VEN_1002&DEV_687F"
timeout /t 5
devcon.exe enable "PCI\VEN_1002&DEV_687F"
3. This will selectively disable/enable all the Vega cards you currently have in your system. Thanks to bytiges for noting that killing all the display adapters might not be a good idea for those using iGPU.
4. Run the batch file as an administrator at login, or whenever you lose hashrate on your cards. Enjoy never having to toggle the HBCC switch again.

Outdated Procedure

1. Get your hands on the Windows Device Console (Devcon.exe). This will let you disable/enable devices from console.
2. Run the command devcon.exe FindAll * to generate a list of all the currently attached devices and their hardware IDs.
3. Search your newly generated list for "Radeon RX Vega." You should find something like this:
Code:
PCI\VEN_1002&DEV_687F&SUBSYS_0B361002&REV_C3\6&3AAC35E3&0&000000E7 : Radeon RX Vega
4. The part to the left of the colon is what you need. Shocking, I know. Put that thing into a batch file that looks something like this:
Code:
@echo on
cd C:\Users\Mythic\Desktop\Startup
timeout /t 5
devcon.exe disable PCI\VEN_1002&DEV_687F&SUBSYS_0B361002&REV_C3\6&3AAC35E3&0&000000E7
timeout /t 15
devcon.exe enable PCI\VEN_1002&DEV_687F&SUBSYS_0B361002&REV_C3\6&3AAC35E3&0&000000E7
timeout /t 15
OverdriveNTool.exe -p0Vega0 -p1Vega1 -p2Vega2 -p3Vega3 -p4Vega4 -p5Vega5 -p6Vega6
timeout /t 10
cd C:\Users\Mythic\Desktop\xmr-stak-amd
xmr-stak-amd.exe
5. Run your batch file at startup as an administrator. Enjoy never having to toggle the HBCC switch again.

FAQ:

Q: So, Mythic, how exactly does this enable HBCC on cards 5-7?

A: It doesn't! HBCC Does nothing to improve your hashrate! Turns out the drivers are just shit and are bugged when Windows first boots up. Who would have guessed?

Q: But Mythic, does that mean I don't need 16 GB of ram to run my cards at full speed?

A: Correct! 4 GB of ram is completely sufficient!

Q: If I wanted to donate some pizza money to the broke ass college student that typed this up, how would I do so?

A: You ask the best questions! I doubt I'll get anything before more well known people/websites copy everything I just said (with no credit, obviously), but here are some addresses just in case.
          XMR: 42e8AWjcirkBDzCNnSjPxeGJeht71kFfWcoxxCWsxe8HZqP29NruDsxcvVSjbKw17AUDepopK7ZYCUn mRvcGS9kBT5XWhMQ
          ETH: 0x74Ed2CA095Dd3aE98D88d5ca1dDb77E752152938
Permonik
Member
**
Offline Offline

Activity: 275
Merit: 11


View Profile
November 09, 2017, 04:03:54 PM
 #1665

Hi guys,
I am just received new bios from asrock for h110 pro htc+.
It was because of my discusion with them about problem with booting with more than 9x vega64.
Unfortunatelly my rig with vegas is in a remote area. Is there someone who can try this bios?
Quubik
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
November 09, 2017, 05:05:14 PM
 #1666

Did some further testing regarding power draw today on single card test bed with an i3 8100 65W processor and a random Seasonic Bronze 430W PSU.

Card used: Vega56 flashed to 64. @ 800mv floor.


Idle powerdraw : 67-72W

Cryptonight powerdraw : 191-195W @ 1950H / 1400mhz / 1100Mhz

Etherium single mining powerdraw: 215-220W @ 44Mh /1200Mhz /1100Mhz

Etherium/DCR dual mining powerdraw: 255-260W @ 44Mh & 1250Mhs / 1200Mhz / 100Mhz


So roughly around:

125W per card for CryptoNight @ 1950

150W per card for Etherium @ 44Mh

190W per card for Dual mining @ 44Mh / 1250Mh

aid77
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
November 09, 2017, 06:23:35 PM
 #1667

Did some further testing regarding power draw today on single card test bed with an i3 8100 65W processor and a random Seasonic Bronze 430W PSU.

Card used: Vega56 flashed to 64. @ 800mv floor.


Idle powerdraw : 67-72W

Cryptonight powerdraw : 191-195W @ 1950H / 1400mhz / 1100Mhz

Etherium single mining powerdraw: 215-220W @ 44Mh /1200Mhz /1100Mhz

Etherium/DCR dual mining powerdraw: 255-260W @ 44Mh & 1250Mhs / 1200Mhz / 100Mhz


So roughly around:

125W per card for CryptoNight @ 1950

150W per card for Etherium @ 44Mh

190W per card for Dual mining @ 44Mh / 1250Mh



What settings are you using?
bytiges
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
November 09, 2017, 06:39:07 PM
 #1668


So roughly around:

125W per card for CryptoNight @ 1950

150W per card for Etherium @ 44Mh

190W per card for Dual mining @ 44Mh / 1250Mh


How did you calculate those numbers ?

125W per Cryptonight looks like the difference between the card idling but powered in the rig and mining.

What you really need is the diff between no card in the rig and mining.

My Vegas will pull ~30-35W just sitting there doing nothing so the real power usage is ~150-160W per card (@93% efficiency, pull from the wall).  For comparison, by MB, CPU, memory and M2 sata disk pull about 25-30W when idling (!)

Please also specify if your numbers include the power supply efficiency or not (and that efficiency if they do).

I haven't seen real 125W pulled from the wall per card yet, unless you severely undervolt and underclock, but then bye bye 2K h/s
bytiges
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
November 09, 2017, 06:41:36 PM
 #1669

Hi guys,
I am just received new bios from asrock for h110 pro htc+.
It was because of my discusion with them about problem with booting with more than 9x vega64.
Unfortunatelly my rig with vegas is in a remote area. Is there someone who can try this bios?

I would be tempted, but I pulled a straight 36 hours from my 8 vega rig without issues and would not like to touch anything.

bill121
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
November 09, 2017, 07:30:14 PM
 #1670

Should all the tach lights stay on while mining or is it normal.for them to change? The last light on one of my cards 'blinks' on and off constantly while another does it every few seconds. The other two stay full on all the time. The cards run around the same temp and fans and are stable.on Wattman ( other than the occasional spike of GPU clock speed ). Is this normal or could it damage the card if ran long enough like that?



Ledipaa
Newbie
*
Offline Offline

Activity: 62
Merit: 0


View Profile
November 09, 2017, 07:52:55 PM
 #1671

Should all the tach lights stay on while mining or is it normal.for them to change? The last light on one of my cards 'blinks' on and off constantly while another does it every few seconds. The other two stay full on all the time. The cards run around the same temp and fans and are stable.on Wattman ( other than the occasional spike of GPU clock speed ). Is this normal or could it damage the card if ran long enough like that?

The LEDs indicate current load, so its telling your cards load isnt 100% all the time. I believe this is normal in every situation from mining to gaming. Mine did the same before I undervolted/clocked the cards with registry mod.
makeitcryptos
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
November 09, 2017, 08:41:07 PM
 #1672

$624 usd for vega liquid on ebay sold by newegg, how many should I buy? Shocked Grin
Quubik
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
November 09, 2017, 08:54:16 PM
Last edit: November 09, 2017, 09:32:06 PM by Quubik
 #1673


So roughly around:

125W per card for CryptoNight @ 1950

150W per card for Etherium @ 44Mh

190W per card for Dual mining @ 44Mh / 1250Mh


How did you calculate those numbers ?

125W per Cryptonight looks like the difference between the card idling but powered in the rig and mining.

What you really need is the diff between no card in the rig and mining.

My Vegas will pull ~30-35W just sitting there doing nothing so the real power usage is ~150-160W per card (@93% efficiency, pull from the wall).  For comparison, by MB, CPU, memory and M2 sata disk pull about 25-30W when idling (!)

Please also specify if your numbers include the power supply efficiency or not (and that efficiency if they do).

I haven't seen real 125W pulled from the wall per card yet, unless you severely undervolt and underclock, but then bye bye 2K h/s


They were just rough calculations using the difference between idle and load. Yeah, in the end therewill be some overhead to add but thats gonna be constant. On a full rig im idlig 22.5 w a card

I mainy wanted to see the difference between the algos.


The psu was crap also. This weekend I am going to power one card completly of of a dedicated decent psu. Just have to find on with a decent efficiency urve @  150w Grin

Also going to test the rajintek morpheus on one.That bloody Delta fan alone can pull 28w at full rpm. Mostly hoping for lover leakage though.
almost30
Newbie
*
Offline Offline

Activity: 164
Merit: 0


View Profile
November 09, 2017, 09:04:33 PM
 #1674

/ simple question \

6x Vega 64 how much daily profit in real life !  Grin
l1xx
Member
**
Offline Offline

Activity: 115
Merit: 10


View Profile
November 09, 2017, 11:51:23 PM
 #1675

Does anyone know a way to get a real time log file out of XMR STAK ?
You can do xmr-stak-amd.exe >> log.txt , it will work , but you'll see nothing on the cmd screen nor in the log file before the programm is actually closed.

So any idea how to do this?
djkice
Member
**
Offline Offline

Activity: 99
Merit: 10


View Profile
November 10, 2017, 03:12:33 AM
 #1676

anyone mining equihash? what hash rates/settings/miner?

asking because might jump on BTG bandwagon for a little. sure some others maybe interested also.
VladimirT
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
November 10, 2017, 04:59:11 AM
 #1677

Monero hashrate drops when you disconnect your monitor (even if you are on IGP), or the screen power shut down after a while.
Simple disable screen power shut down, and do not disconnect your display while mining.

When i disconnect monitor , my hashrate still stable. But when i run gpu-z or hwinfo --> drop. I don't know why. I prefer mining without it, and hashrate seems to be stable around five days.
https://s1.postimg.org/59pinvrs6n/vega.jpg
Try it.

car1999
Full Member
***
Offline Offline

Activity: 350
Merit: 100


View Profile
November 10, 2017, 05:34:31 AM
 #1678

Does anyone know a way to get a real time log file out of XMR STAK ?
You can do xmr-stak-amd.exe >> log.txt , it will work , but you'll see nothing on the cmd screen nor in the log file before the programm is actually closed.

So any idea how to do this?
you might want to use tee.
https://en.m.wikipedia.org/wiki/Tee_(command)
ingyenfrag
Newbie
*
Offline Offline

Activity: 84
Merit: 0


View Profile
November 10, 2017, 06:15:55 AM
 #1679

Monero hashrate drops when you disconnect your monitor (even if you are on IGP), or the screen power shut down after a while.
Simple disable screen power shut down, and do not disconnect your display while mining.

I tried this but still get hashrate drop. Does the monitor still need to be on as well?

I can't use IGPU as my monitor only has DP input.

There is no need for connected display, but don't disconnect while mining to avoid hashrate drop. I'm using it with remote desktop, no display connected to the rig.

I forget to mention that the hashrate drops as well when you try to monitor your vga sensors. I don't know why.
Funny fact: while you're running GPU-Z sensor tab when you start the miner client it won't affect the hashrate until you don't touch the GPU-Z. If you for example change for another VGA in GPU-Z the hashrate drops.
Then you have to disable and enable GPU(s) again to run properly. Weird bug.
Jackkyy
Full Member
***
Offline Offline

Activity: 252
Merit: 100


View Profile
November 10, 2017, 07:50:09 AM
 #1680

GPU-Z down hashrate
when I run vega 64 with GPU-z
my hashrate start 2000 and after few min 1-2 drop 5-10 %
I don't run GPU-z and all work stable
Pages: « 1 ... 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 [84] 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 ... 158 »
  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!