Bitcoin Forum
June 19, 2024, 11:39:59 PM *
News: Voting for pizza day contest
 
   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 »
  Print  
Author Topic: Hashrate RX 470  (Read 134988 times)
ivanpop
Newbie
*
Offline Offline

Activity: 62
Merit: 0


View Profile
August 25, 2016, 12:44:46 PM
 #121

So I get Polaris BIOS editor, I edit my original BIOS and flash it back to the card. And if the card doesn't start and is not seen by the computer, what should I do?
Subw
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500


View Profile
August 25, 2016, 02:33:16 PM
 #122

switch to second bios (if any)
Grim
Sr. Member
****
Offline Offline

Activity: 504
Merit: 252


View Profile
August 25, 2016, 03:35:13 PM
 #123

I have a RX 470 Nitro and tried to set the core voltage to 950 mv but the lowest it runs at seems to be 1.000 mv.

If you set anything below 1.000 mv it isn't applied.

Anyone else noticed this?


I tried to run something like 950 mv @ 1050 mhz.
(I did mod the bios)
blue1984 (OP)
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
August 25, 2016, 03:51:42 PM
 #124

@grim

I had the same Problem
beks1
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
August 25, 2016, 05:49:19 PM
 #125

Sapphire Releases TriXX Utility 6.0.0

http://www.sapphiretech.com/catapage_tech.asp?cataid=291&lang=eng
blue1984 (OP)
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
August 25, 2016, 05:57:51 PM
 #126

Same as wattman ?
Grim
Sr. Member
****
Offline Offline

Activity: 504
Merit: 252


View Profile
August 25, 2016, 06:28:56 PM
 #127

@grim

I had the same Problem

you had? did you solve the issue?

Grim
Sr. Member
****
Offline Offline

Activity: 504
Merit: 252


View Profile
August 25, 2016, 06:32:11 PM
 #128

You can, but you need to offset the voltage, not use the DPM mV.


May I ask if that is true for all rx4.. cards? (reference as well as custom models)

Actually I would prefer to overwrite dpm states with true values ...
blue1984 (OP)
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
August 25, 2016, 06:38:09 PM
 #129

@wolf0
How can i set the offset in the bios ?
bobben2
Full Member
***
Offline Offline

Activity: 279
Merit: 104


View Profile
August 25, 2016, 07:35:11 PM
 #130

@wolf0
How can i set the offset in the bios ?

Hex editor.

You can, but you need to offset the voltage, not use the DPM mV.


May I ask if that is true for all rx4.. cards? (reference as well as custom models)

Actually I would prefer to overwrite dpm states with true values ...

It's actually better to offset even on other GPUs - overwriting the DPM state's index into the voltage table is a heavy-handed way to do it, IMO - better to let the offset step down the voltage.


Hi Wolf,
It sounds like you have got this right..
I am trying as well...  Could you pls shed some light on the undervolt detail?

If I look in the source code of the Polaris editor there is a data structure definition there called

unsafe struct ATOM_SCLK_ENTRY
        {
            public Byte ucVddInd;
            public UInt16 usVddcOffset;
            public UInt32 ulSclk;
            public UInt16 usEdcCurrent;
            public Byte ucReliabilityTemperature;
            public Byte ucCKSVOffsetandDisable;
            public UInt32 ulSclkOffset; // Polaris Only, remove for compatibility with Fiji
        };

So this is the table structure for the core clock values for each DPM state.
So I wrote my own utility  since undervolt editing is missing in the editor itself.
I tried to assign -16 to  usVddcOffset field in the DPM7 entry hoping to get a 100 mV undervolt, but it had no effect.
I am also curious about the ucCKSVOffsetandDisable field.  It is zero. Should be non-zero to "enable" undervolting to work?

Fellow miners, get your thens and thans in order and help other forum readers understand what you are writing. Remember the grammar basics:  B larger THAN A (comparator operator). If something THEN ....
bobben2
Full Member
***
Offline Offline

Activity: 279
Merit: 104


View Profile
August 25, 2016, 07:58:25 PM
 #131

@wolf0
How can i set the offset in the bios ?

Hex editor.

You can, but you need to offset the voltage, not use the DPM mV.


May I ask if that is true for all rx4.. cards? (reference as well as custom models)

Actually I would prefer to overwrite dpm states with true values ...

It's actually better to offset even on other GPUs - overwriting the DPM state's index into the voltage table is a heavy-handed way to do it, IMO - better to let the offset step down the voltage.


Hi Wolf,
It sounds like you have got this right..
I am trying as well...  Could you pls shed some light on the undervolt detail?

If I look in the source code of the Polaris editor there is a data structure definition there called

unsafe struct ATOM_SCLK_ENTRY
        {
            public Byte ucVddInd;
            public UInt16 usVddcOffset;
            public UInt32 ulSclk;
            public UInt16 usEdcCurrent;
            public Byte ucReliabilityTemperature;
            public Byte ucCKSVOffsetandDisable;
            public UInt32 ulSclkOffset; // Polaris Only, remove for compatibility with Fiji
        };

So this is the table structure for the core clock values for each DPM state.
So I wrote my own utility  since undervolt editing is missing in the editor itself.
I tried to assign -16 to  usVddcOffset field in the DPM7 entry hoping to get a 100 mV undervolt, but it had no effect.
I am also curious about the ucCKSVOffsetandDisable field.  It is zero. Should be non-zero to "enable" undervolting to work?

Finally! Someone willing to do some research! :3

It might have had no effect because it's defined as a uint32, but actually should be interpeted as a 32-bit SIGNED integer.

Since you're the first one to actually work at the suggestion, I'll tell you this: ucCKSVOffsetandDisable is a bitmask. Bits 0 - 6 are a voltage offset, and 7 is enable/disable.


Ok,  So bits 0-6 is a 7-bit signed value?   with range -64 -- +63   
If not, then how would I get to a negative offset of say -100mV?


Fellow miners, get your thens and thans in order and help other forum readers understand what you are writing. Remember the grammar basics:  B larger THAN A (comparator operator). If something THEN ....
Longsnowsm
Hero Member
*****
Offline Offline

Activity: 868
Merit: 517


View Profile
August 25, 2016, 08:02:54 PM
 #132

I downloaded the Trixx Sapphire app and tried it and it does not appear to give us any control over the 470 cards other than the power limit which we have under Wattman so no help at all from what I can see. It will let you slide the controls and looks like it is doing something, but you go to the hardware monitor and you will see the gpu and memory are still at stock settings.  Only the power limit made any real change in the output of the hardware monitor page.   So far Trixx is useless, we had this much control in Wattman.
h311m4n
Sr. Member
****
Offline Offline

Activity: 487
Merit: 266



View Profile
August 26, 2016, 06:12:12 AM
 #133

Quick question: got my 2 Sapphire RX470 8Gb yesterday. How do you guys dump the BIOS? Atiflash from a bootable stick doesn't list any cards. Am I stuck using atiflash on Windows to get to the Bios on these RX4's?
B1tUnl0ck3r
Sr. Member
****
Offline Offline

Activity: 854
Merit: 277

liife threw a tempest at you? be a coconut !


View Profile
August 26, 2016, 08:22:56 PM
 #134

I downloaded the Trixx Sapphire app and tried it and it does not appear to give us any control over the 470 cards other than the power limit which we have under Wattman so no help at all from what I can see. It will let you slide the controls and looks like it is doing something, but you go to the hardware monitor and you will see the gpu and memory are still at stock settings.  Only the power limit made any real change in the output of the hardware monitor page.   So far Trixx is useless, we had this much control in Wattman.

Sad to read it. However what ever a software says, I think it's better to check with a watt-meter at the wall... it's always more accurate in my opinion.

When the people of the world will get that covid was intentionally released to frame china, steal the election from trump, assure massive bail outs and foster the forced vaccination agendas...they will forget, like 911, wmds in irak, uss liberty or pedogate.
Longsnowsm
Hero Member
*****
Offline Offline

Activity: 868
Merit: 517


View Profile
August 26, 2016, 08:33:22 PM
 #135

I downloaded the Trixx Sapphire app and tried it and it does not appear to give us any control over the 470 cards other than the power limit which we have under Wattman so no help at all from what I can see. It will let you slide the controls and looks like it is doing something, but you go to the hardware monitor and you will see the gpu and memory are still at stock settings.  Only the power limit made any real change in the output of the hardware monitor page.   So far Trixx is useless, we had this much control in Wattman.

Sad to read it. However what ever a software says, I think it's better to check with a watt-meter at the wall... it's always more accurate in my opinion.

I was hoping we would get control over gpu core and memory speeds.  It does look like the undervolt setting does something in Trixx, but appears to be the extent of it so far.  Not the kind of control I was hoping for.
z0n0
Legendary
*
Offline Offline

Activity: 1274
Merit: 1006



View Profile
August 26, 2016, 09:17:20 PM
 #136

Are there any modified ROMs publicly shared for 470 4gb versions?
Marvell1
Legendary
*
Offline Offline

Activity: 2450
Merit: 1102


Leading Crypto Sports Betting & Casino Platform


View Profile
August 27, 2016, 08:23:39 AM
 #137

Are there any modified ROMs publicly shared for 470 4gb versions?

There are a re few but due to the fact all the cards seem so different its risky to flash them to anything but the sapphire 470s since only those
ones have dual bios

we need people to make specific roms for the

- MSI OC cards 4GB
- MSI OC cards 8GB,
- Saphire Nitro 4GB (one exists for the 8GB),
-ASUS
-XFX dual 4GB
-XFX dual 8GB
-Powercolor Devil 4GB


..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
ivanpop
Newbie
*
Offline Offline

Activity: 62
Merit: 0


View Profile
August 27, 2016, 12:26:37 PM
 #138

asus rx 470 4Gb
win7 x64
@1140core/7504gddrr5 (hynix ajr R0C)
26.5mh/s
 Cool

Same card.
930core/7920mem
22.5mh/s
B1tUnl0ck3r
Sr. Member
****
Offline Offline

Activity: 854
Merit: 277

liife threw a tempest at you? be a coconut !


View Profile
August 27, 2016, 12:28:02 PM
 #139

I downloaded the Trixx Sapphire app and tried it and it does not appear to give us any control over the 470 cards other than the power limit which we have under Wattman so no help at all from what I can see. It will let you slide the controls and looks like it is doing something, but you go to the hardware monitor and you will see the gpu and memory are still at stock settings.  Only the power limit made any real change in the output of the hardware monitor page.   So far Trixx is useless, we had this much control in Wattman.

Sad to read it. However what ever a software says, I think it's better to check with a watt-meter at the wall... it's always more accurate in my opinion.

I was hoping we would get control over gpu core and memory speeds.  It does look like the undervolt setting does something in Trixx, but appears to be the extent of it so far.  Not the kind of control I was hoping for.

A card without gpu voltage control (without bios flash or mod) is a clear no buy for me. I would even more like to be able to tweak memory voltage to get the most of the chips... be it in efficiency or raw power...

When the people of the world will get that covid was intentionally released to frame china, steal the election from trump, assure massive bail outs and foster the forced vaccination agendas...they will forget, like 911, wmds in irak, uss liberty or pedogate.
niko2004x
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile
August 28, 2016, 12:10:34 AM
 #140

I downloaded the Trixx Sapphire app and tried it and it does not appear to give us any control over the 470 cards other than the power limit which we have under Wattman so no help at all from what I can see. It will let you slide the controls and looks like it is doing something, but you go to the hardware monitor and you will see the gpu and memory are still at stock settings.  Only the power limit made any real change in the output of the hardware monitor page.   So far Trixx is useless, we had this much control in Wattman.

Sad to read it. However what ever a software says, I think it's better to check with a watt-meter at the wall... it's always more accurate in my opinion.

I was hoping we would get control over gpu core and memory speeds.  It does look like the undervolt setting does something in Trixx, but appears to be the extent of it so far.  Not the kind of control I was hoping for.

A card without gpu voltage control (without bios flash or mod) is a clear no buy for me. I would even more like to be able to tweak memory voltage to get the most of the chips... be it in efficiency or raw power...

Easy in Linux. They have a sysfs entry that lets you control all of it through the PowerPlay table.

Here's a screen of a tool I wrote to do so (NSFW): https://ottrbutt.com/tmp/wolfamdctrl-priv.png

Needs more work and options, though.

Does it work?
I tried to change vddci and mvdd to values below 1000 (by setting new pp_table) and
according power meter and temperature measurements nothing happened.
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 »
  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!