Bitcoin Forum
April 25, 2024, 07:33:50 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: best rate for mh/s from single card? best rate you've ever gotten including oc?  (Read 3154 times)
Dante (OP)
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
June 09, 2011, 06:01:46 AM
 #1

going to be building a mining rig soon hopefully whats the best card for mining? im thinkiing the 5870 and then upgrading to the 5970 black edition later anything better?
also whats the best hash rate you've ever gotten including oc?
1714030430
Hero Member
*
Offline Offline

Posts: 1714030430

View Profile Personal Message (Offline)

Ignore
1714030430
Reply with quote  #2

1714030430
Report to moderator
1714030430
Hero Member
*
Offline Offline

Posts: 1714030430

View Profile Personal Message (Offline)

Ignore
1714030430
Reply with quote  #2

1714030430
Report to moderator
1714030430
Hero Member
*
Offline Offline

Posts: 1714030430

View Profile Personal Message (Offline)

Ignore
1714030430
Reply with quote  #2

1714030430
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714030430
Hero Member
*
Offline Offline

Posts: 1714030430

View Profile Personal Message (Offline)

Ignore
1714030430
Reply with quote  #2

1714030430
Report to moderator
jme621
Sr. Member
****
Offline Offline

Activity: 360
Merit: 250


View Profile
June 09, 2011, 06:03:01 AM
Last edit: June 09, 2011, 06:14:28 AM by jme621
 #2

pulling 302 on all my 5830s
V2-V3
Full Member
***
Offline Offline

Activity: 227
Merit: 100



View Profile
June 09, 2011, 06:06:37 AM
 #3

450Mhash from an ASUS 5870 @ 975MHz Core 900MHz RAM
masterminer
Newbie
*
Offline Offline

Activity: 17
Merit: 0



View Profile WWW
June 09, 2011, 06:17:25 AM
 #4

755 mHash from a Diamond 6990, o/c switch thrown, and flags -v -w128
Real
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
June 09, 2011, 06:30:35 AM
 #5

389.2 with a 5870 (900mhz gpu), seems low Sad
nemo
Sr. Member
****
Offline Offline

Activity: 500
Merit: 253


View Profile
June 09, 2011, 06:41:28 AM
 #6

800mhash from a 5970 850/300. But it's stable at around 750.
PcChip
Sr. Member
****
Offline Offline

Activity: 418
Merit: 250


View Profile
June 10, 2011, 03:11:41 AM
 #7

358 from a 5850 on stock voltage, I haven't actually found the max overclock yet, just stuck with 900 so far because I'm happy with it.

305 from my Sapphire Xtreme 5830

Legacy signature from 2011: 
All rates with Phoenix 1.50 / PhatK
5850 - 400 MH/s  |  5850 - 355 MH/s | 5830 - 310 MH/s  |  GTX570 - 115 MH/s | 5770 - 210 MH/s | 5770 - 200 MH/s
dingus
Full Member
***
Offline Offline

Activity: 126
Merit: 100



View Profile
June 10, 2011, 03:13:54 AM
 #8

760 million hashes/s on a 5970

ding·us/ˈdiNGgəs/
Noun: Used to refer to something whose name the speaker cannot remember, is unsure of, or is humorously or euphemistically omitting
SomeoneWeird
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile
June 10, 2011, 03:28:37 AM
 #9

760 million hashes/s on a 5970

0_o
jspielberg
Sr. Member
****
Offline Offline

Activity: 490
Merit: 255



View Profile
June 10, 2011, 04:01:44 AM
 #10

I wrote a little script to output my stats every minute.

GPU load :    99%
GPU load :    99%
GPU load :    99%
Sensor 0: Temperature - 84.50 C
Sensor 0: Temperature - 81.00 C
Sensor 0: Temperature - 73.00 C
GHash/s: 1.23415000000000000000
09/06/2011 21:51:26, 421198 khash/s
09/06/2011 21:51:17, 420180 khash/s
09/06/2011 21:51:25, 392772 khash/s

So... 1.2341Gh/s with 1 Asus Ares 5870x2 card oc-ed to 940Mhz and 1 XFX 5870 OC-ed to 900Mhz.  They are running a little warm, but not too crazy. Code below:

Code:
for ((;;)); do uptime | sed 's/^ *//'; aticonfig --odgc --adapter=all |grep "GPU" | sed 's/^ *//' | grep '[[:digit:]]*' ; aticonfig --odgt --adapter=all |grep -i Temperature | sed 's/^ *//' |grep " [[:digit:].]* " ; echo -n "GHash/s: " ; echo "( $(tail -n 20 /tmp/bitcoin_1.log |grep hash |tail -1 | awk '{print $3}') + $(tail -n 20 /tmp/bitcoin_2.log |grep hash |tail -1 | awk '{print $3}') + $(tail -n 20 /tmp/bitcoin_3.log |grep hash |tail -1 | awk '{print $3}') )/1000000" | bc -l; tail -n 20 /tmp/bitcoin_1.log |grep hash |tail -1 |grep " [[:digit:]]* " ;tail -n 20 /tmp/bitcoin_2.log |grep hash |tail -1 | grep " [[:digit:]]* " ; tail -n 20 /tmp/bitcoin_3.log |grep hash |tail -1 |grep " [[:digit:]]* "; cat /tmp/bitcoin_*.log |grep checking | sort -nrk 4 | tail -3 |grep " [[:digit:]]* "; grep ".*accepted.*" /tmp/bitcoin_*.log; echo "Blocks: $(~/bitcoin-0.3.21/bin/64/bitcoin getblockcount)" ;echo "Balance: $(~/bitcoin-0.3.21/bin/64/bitcoin getbalance)" ; sleep 60; done

Just have your poclbm processes log to /tmp/bitcoin_[123...].log
hugolp
Legendary
*
Offline Offline

Activity: 1148
Merit: 1001


Radix-The Decentralized Finance Protocol


View Profile
June 10, 2011, 04:30:15 AM
 #11

450Mhash from an ASUS 5870 @ 975MHz Core 900MHz RAM

What miner and flags are you using?


               ▄████████▄
               ██▀▀▀▀▀▀▀▀
              ██▀
             ███
▄▄▄▄▄       ███
██████     ███
    ▀██▄  ▄██
     ▀██▄▄██▀
       ████▀
        ▀█▀
The Radix DeFi Protocol is
R A D I X

███████████████████████████████████

The Decentralized

Finance Protocol
Scalable
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
██▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀██
██                   ██
██                   ██
████████████████     ██
██            ██     ██
██            ██     ██
██▄▄▄▄▄▄      ██     ██
██▀▀▀▀██      ██     ██
██    ██      ██     
██    ██      ██
███████████████████████

███
Secure
      ▄▄▄▄▄
    █████████
   ██▀     ▀██
  ███       ███

▄▄███▄▄▄▄▄▄▄███▄▄
██▀▀▀▀▀▀▀▀▀▀▀▀▀██
██             ██
██             ██
██             ██
██             ██
██             ██
██    ███████████

███
Community Driven
      ▄█   ▄▄
      ██ ██████▄▄
      ▀▀▄█▀   ▀▀██▄
     ▄▄ ██       ▀███▄▄██
    ██ ██▀          ▀▀██▀
    ██ ██▄            ██
   ██ ██████▄▄       ██▀
  ▄██       ▀██▄     ██
  ██▀         ▀███▄▄██▀
 ▄██             ▀▀▀▀
 ██▀
▄██
▄▄
██
███▄
▀███▄
 ▀███▄
  ▀████
    ████
     ████▄
      ▀███▄
       ▀███▄
        ▀████
          ███
           ██
           ▀▀

███
Radix is using our significant technology
innovations to be the first layer 1 protocol
specifically built to serve the rapidly growing DeFi.
Radix is the future of DeFi
█████████████████████████████████████

   ▄▄█████
  ▄████▀▀▀
  █████
█████████▀
▀▀█████▀▀
  ████
  ████
  ████

Facebook

███

             ▄▄
       ▄▄▄█████
  ▄▄▄███▀▀▄███
▀▀███▀ ▄██████
    █ ███████
     ██▀▀▀███
           ▀▀

Telegram

███

▄      ▄███▄▄
██▄▄▄ ██████▀
████████████
 ██████████▀
   ███████▀
 ▄█████▀▀

Twitter

██████

...Get Tokens...
RedLine888
Full Member
***
Offline Offline

Activity: 236
Merit: 109


View Profile
June 10, 2011, 05:34:00 AM
 #12

450Mhash from an ASUS 5870 @ 975MHz Core 900MHz RAM
Damn, you're fast!

What flags, kernel, OS, SDK, Drivers are you using?

Thanks
Crayon
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
June 10, 2011, 05:57:21 AM
 #13

400Mhash/s on a 5850 1000/340 @ 1.2v

-v -w 256 -f 1

SDK v2.1
mistersaturn
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 10, 2011, 06:03:52 AM
 #14

828 mhashes/sec @ xfx 5970 black edition, OCed to 925/1300.
LegitBit
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile
June 10, 2011, 06:21:00 AM
 #15

340MHs on a 5830.

Core 1030 / Mem 340 Stock volt, air cooled. Using Phakt kernel, Worksize 128 fastloop off

63C Shader Temp with PCIE slot base Frequency upped to 102mhz and an ambient room temp of 71F

Unstable after about 3 hours, so bumped down to 960 with the same memory and am getting a stable 288MHs.

Donate : 1EiAKUmTVtqXsaGLKQQVvLT9DDnHsT7jTZ (Block Explorer)
SomeoneWeird
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile
June 10, 2011, 07:56:14 AM
 #16

340MHs on a 5830.

Core 1030 / Mem 340 Stock volt, air cooled. Using Phakt kernel, Worksize 128 fastloop off

63C Shader Temp with PCIE slot base Frequency upped to 102mhz and an ambient room temp of 71F

Unstable after about 3 hours, so bumped down to 960 with the same memory and am getting a stable 288MHs.

NICE! What brand was that 5830?
dingus
Full Member
***
Offline Offline

Activity: 126
Merit: 100



View Profile
June 10, 2011, 08:05:44 AM
 #17

828 mhashes/sec @ xfx 5970 black edition, OCed to 925/1300.
What kind of setup do you have? I don't believe you can sustain such a high hash rate. And, why do you overclock your memory? It does nothing for your hashes/second and just increases heat.

ding·us/ˈdiNGgəs/
Noun: Used to refer to something whose name the speaker cannot remember, is unsure of, or is humorously or euphemistically omitting
monstrs
Hero Member
*****
Offline Offline

Activity: 555
Merit: 504



View Profile
June 10, 2011, 08:11:57 AM
 #18

800mhash from a 5970 850/300. But it's stable at around 750.

What flags and OS, miner are you using? Thats crazy score for 5870 !! My can get 427 MH/s with 1000/347.
dingus
Full Member
***
Offline Offline

Activity: 126
Merit: 100



View Profile
June 10, 2011, 08:13:05 AM
 #19

800mhash from a 5970 850/300. But it's stable at around 750.

What flags and OS, miner are you using? Thats crazy score for 5870 !! My can get 427 MH/s with 1000/347.
Read again, the card is a 5970.

ding·us/ˈdiNGgəs/
Noun: Used to refer to something whose name the speaker cannot remember, is unsure of, or is humorously or euphemistically omitting
nemo
Sr. Member
****
Offline Offline

Activity: 500
Merit: 253


View Profile
June 10, 2011, 08:16:00 AM
 #20

828 mhashes/sec @ xfx 5970 black edition, OCed to 925/1300.

Nice mhash, I'm guessing water cooled? Does the memory have to be so high? I thought it did nothing.
Pages: [1] 2 »  All
  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!