Bitcoin Forum
May 02, 2024, 01:02:20 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 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 »
1461  Bitcoin / Mining software (miners) / Re: further improved phatk OpenCL Kernel (> 2% increase) for Phoenix - 2011-07-03 on: July 04, 2011, 10:52:56 AM
No change for me at all unfortunately, not even 0.1 MH/s.  I copied the file in place of phoenix-1.50/kernels/phatk/kernel.cl and restarted my instances of phoenix.

Settings:
Linux
Catalyst 11.6
SDK 2.1
phatk (bundled with phoenix 1.50 with MA tweak)
VECTORS BFI_INT FASTLOOP=false AGGRESSION=12 WORKSIZE=256
Solo mining

5850 Xtreme @ 1.0875V - 970MHz (399.4 MH/s) (75*C)
5850 Xtreme @ 1.1625V - 1050MHz (432.8 MH/s) (60*C)


Why are you using SDK 2.1? The phatk Kernel likes 2.4 best. Your Phoenix settings look good though.
Strange that your MH/s didn't change at all. Did Phoenix apply the BFI_INT patch the first time you startet with the new Kernel?

Dia

I'm using SDK 2.1 because when I compared it with 2.4 I found a slight speed improvement with both phatk and poclbm (much larger with poclbm).

I haven't tried SDK 2.4 since applying the MA patch so that is maybe worth a try.

BFI_INT is definitely being used.  If I restart the command without BFI_INT on my 399.4 MH/s gpu I get 354.5 MH/s instead.


Just tried SDK 2.4 on my 399.4 MH/s gpu.  It went down to 393.7 MH/s (actually 394.3 MH/s but occasionally dropping off to 390-391, I took an average).

Edit: I compared the new kernel with the old one using SDK 2.4 and the improvement was 3.1 MH/s (+0.79%).  This is a nice improvement but not enough to make me move away from SDK 2.1.  Also, SDK 2.4 causes the MH/s to drop suddenly by 3 or 4 MH/s every so often (variance is within 0.5 MH/s with SDK 2.1 for me) and even the peak values I achieve with SDK 2.4, new kernel or not, are below my SDK 2.1 average.

Ah well, good work though.  I sent you some BTC anyway simply because you tried to help me fix my problem.
1462  Bitcoin / Mining software (miners) / Re: further improved phatk OpenCL Kernel (> 2% increase) for Phoenix - 2011-07-03 on: July 04, 2011, 10:49:47 AM
No change for me at all unfortunately, not even 0.1 MH/s.  I copied the file in place of phoenix-1.50/kernels/phatk/kernel.cl and restarted my instances of phoenix.

Settings:
Linux
Catalyst 11.6
SDK 2.1
phatk (bundled with phoenix 1.50 with MA tweak)
VECTORS BFI_INT FASTLOOP=false AGGRESSION=12 WORKSIZE=256
Solo mining

5850 Xtreme @ 1.0875V - 970MHz (399.4 MH/s) (75*C)
5850 Xtreme @ 1.1625V - 1050MHz (432.8 MH/s) (60*C)


Why are you using SDK 2.1? The phatk Kernel likes 2.4 best. Your Phoenix settings look good though.
Strange that your MH/s didn't change at all. Did Phoenix apply the BFI_INT patch the first time you startet with the new Kernel?

Dia

I'm using SDK 2.1 because when I compared it with 2.4 I found a slight speed improvement with both phatk and poclbm (much larger with poclbm).

I haven't tried SDK 2.4 since applying the MA patch so that is maybe worth a try.

BFI_INT is definitely being used.  If I restart the command without BFI_INT on my 399.4 MH/s gpu I get 354.5 MH/s instead.
1463  Bitcoin / Mining software (miners) / Re: further improved phatk OpenCL Kernel (> 2% increase) for Phoenix - 2011-07-03 on: July 04, 2011, 10:37:43 AM
No change for me at all unfortunately, not even 0.1 MH/s.  I copied the file in place of phoenix-1.50/kernels/phatk/kernel.cl and restarted my instances of phoenix.

Settings:
Linux
Catalyst 11.6
SDK 2.1
phatk (bundled with phoenix 1.50 with MA tweak)
VECTORS BFI_INT FASTLOOP=false AGGRESSION=12 WORKSIZE=256
Solo mining

5850 Xtreme @ 1.0875V - 970MHz (399.4 MH/s) (75*C)
5850 Xtreme @ 1.1625V - 1050MHz (432.8 MH/s) (60*C)
1464  Bitcoin / Mining software (miners) / Re: Script to lower clock when overheating on: July 02, 2011, 08:36:40 PM
Looks neat. Apparently there is Autominer that does stuff like this (and more) based on a collection of scripts.

Thanks for the tip, but after coming this far I think I'm pretty comfortable with writing my own scripts.  I might look at the code for ideas.
1465  Bitcoin / Mining software (miners) / Re: Script to lower clock when overheating on: July 02, 2011, 06:47:20 PM
A nice idea.

I took what you did and extended it for my own purposes.  I'm not at all proficient with shell scripting and have just hacked this together - any criticism is welcome.

Caution: The constants at the beginning are appropriate for my miner and may not be appropriate for yours.  This script should not be run without being read and understood.

{
#!/bin/bash
# Scale the gpu clocks to keep temperature within preset bounds.

clock_step=10
sleep_time=60
card_0_min_temp=76
card_0_max_temp=79
card_0_min_clock=820
card_0_max_clock=970
card_1_min_temp=61
card_1_max_temp=64
card_1_min_clock=900
card_1_max_clock=1050

while :
do
   echo "------"
   echo
   card_0_clock=`aticonfig --adapter=0 --od-getclocks | grep Clocks | awk '{print $4}'`
   card_0_temp=`aticonfig --adapter=0 --od-gettemperature | grep -o [0-9][0-9].[0-9][0-9] | sed 's/\..*$//'`
   card_0_load=`aticonfig --adapter=0 --od-getclocks | grep -o [0-9]*% | sed 's/%//'`
   card_1_clock=`aticonfig --adapter=1 --od-getclocks | grep Clocks | awk '{print $4}'`
   card_1_temp=`aticonfig --adapter=1 --od-gettemperature | grep -o [0-9][0-9].[0-9][0-9] | sed 's/\..*$//'`
   card_1_load=`aticonfig --adapter=1 --od-getclocks | grep -o [0-9]*% | sed 's/%//'`
   echo "card_0_clock =" $card_0_clock
   echo "card_0_temp =" $card_0_temp
   echo "card_0_load =" $card_0_load
   echo "card_1_clock =" $card_1_clock
   echo "card_1_temp = " $card_1_temp
   echo "card_1_load =" $card_1_load
   echo

   if [ $card_0_temp -gt $card_0_max_temp ] && [ $(expr $card_0_clock - $clock_step) -ge $card_0_min_clock ]
      then echo "Card 0 is too hot; attempting to lower the clock speed."
      aticonfig --adapter=0 --od-setclocks=$(expr $card_0_clock - $clock_step),0
      echo
   fi
   if [ $card_0_load -gt 50 ] && [ $card_0_temp -lt $card_0_min_temp ] && [ $(expr $card_0_clock + $clock_step) -le $card_0_max_clock ]
      then echo "Card 0 is too cold; attempting to increase the clock speed by" $clock_step"MHz."
      new_clock=$(expr $card_0_clock + $clock_step)
      if [ $new_clock -lt $card_0_min_clock ]
         then new_clock=$card_0_min_clock
      fi
      aticonfig --adapter=0 --od-setclocks=$new_clock,0
      echo
   fi
   if [ $card_1_temp -gt $card_1_max_temp ] && [ $(expr $card_1_clock - $clock_step) -ge $card_1_min_clock ]
      then echo "Card 1 is too hot; attempting to lower the clock speed by" $clock_step"MHz."
      aticonfig --adapter=1 --od-setclocks=$(expr $card_1_clock - $clock_step),0
      echo
   fi
   if [ $card_1_load -gt 50 ] && [ $card_1_temp -lt $card_1_min_temp ] && [ $(expr $card_1_clock + $clock_step) -le $card_1_max_clock ]
      then echo "Card 1 is too cold; attempting to increase the clock speed by" $clock_step"MHz."
      new_clock=$(expr $card_1_clock + $clock_step)
      if [ $new_clock -lt $card_1_min_clock ]
         then new_clock=$card_1_min_clock
      fi
      aticonfig --adapter=1 --od-setclocks=$new_clock,0
      echo
   fi

   sleep $sleep_time
done
}
1466  Other / CPU/GPU Bitcoin mining hardware / Re: Differences in 5850's on: July 02, 2011, 08:18:23 AM
Why would you want to run a 5850 at 425mh/s?

You literally earn just a few cents more, but cut the card's effective lifespan to a few months. The stock frequency is 725, it wont last for long OC'ed to something such as 950mhz (or more).

I'd rather take the 0.02BTC less per day and have the card last longer at 380-400 mhash. If mining ever becomes unprofitable you can sell those cards even a year down the road.

Maybe people fail to realize warranty doesn't cover overclocking and volting

Ye I completely agree, besides those last 5-10% ppl get out of their 5850 cards beyond 350-360 MH/s almost doesn't even pay for itself, since they more often than not require so high voltage that the extra power draw almost eats up the extra BTC generated, ppl need to consider that increasing the frequency of a card (without touching the voltage) is a linear increase in power consumption while upping the voltage increases it exponentially. However saying that any 58xx core is perfectly safe running 24/7 for months/years with anything below 1.165V (5870 stock voltage) as long as they are properly cooled, the problem comes to the VRMs since they mostly have under dimensioned cooling and on some non reference cards you cant even find out at what temperature they are running. Just cause your core temp is at a healthy sub 75C level doesn't mean the VRMs aren't being toasted and will be the first part to fail. As a personal rule I never bother to take the cards further than they will do on stock voltage just cause of the diminishing returns.

Yes, I'm worried about my VRM's.  I don't know how to find their temperature so they could be frying as we speak.

Honestly, I'm just seeing how far my card will go (and enjoying trying to keep ahead of the reference 5850 guys) while I await the power meter that I ordered.
1467  Bitcoin / Mining / Re: Linux vs Windows for Dedicated Mining on: July 02, 2011, 07:36:05 AM
Check my MinerPE approach, for single gpus setups is by far the best option, much better than linux. But for multiple gpu rigs the best option is Linux on a pendrive.

Care to elaborate?  What is MinerPE?  Do you have any stats which will convince us that MinerPE is superior to other approaches?

fair enoght.

pros:
*Easy to setup: 10 minutes from first boot to mining, incluiding overcloking.

*Easy to update software in the farm: (5 minutes to update a up to 252 pcs farm, another 15-30m to reboot afterwards, depending on network speed and pcs)
 -Adding Phoenix hashrate mod??? just update the kernel.cl file in server and reboot the farm
 -Updating drivers and SDK??? update the files in the server and reboot the farm.

*MSI Afterburner support on every pc in the farm, oc settings are saved and stored.

*VNC Server support on every client on the farm.

*PXE boot, no pendrives or HDDs, just LAN boot.

*Easy to mod, 90% of the work is on batch files, making it trivial to mod or add funtions.

*No problem with corrupted files on client pcs on the farm, so you will never worried again about some client not booting because a file is corrupted.

cons:
*Only 1 VGA is supported.
*Its not Linux (?)

Anyway, check the video.
http://www.youtube.com/watch?v=xN52sWA1BBM

Cool, I particularly like the network booting.  This gives Windows an 'easy and quick to configure' bonus over Linux which I won't deny.  If you are setting up even a moderate sized farm and/or are just looking for maximum profit (and your time is valuable) then this could be a good choice.

However, it may well be that one can achieve better MH/s or MH/J in Linux and I think there are a few people on these forums who value the extra MH/s more than the 2-3 hours time configuring the miner.  Indeed I doubt I'm alone in actually enjoying the configuration and tweaking.
1468  Bitcoin / Mining / Re: Linux vs Windows for Dedicated Mining on: July 02, 2011, 12:25:34 AM
Check my MinerPE approach, for single gpus setups is by far the best option, much better than linux. But for multiple gpu rigs the best option is Linux on a pendrive.

Care to elaborate?  What is MinerPE?  Do you have any stats which will convince us that MinerPE is superior to other approaches?
1469  Other / CPU/GPU Bitcoin mining hardware / Re: Differences in 5850's on: July 02, 2011, 12:17:10 AM
I've just had a play and my cards are currently at:

970/330@1.0875V (400 MH/s - 83C - 50% fan)
1030/330@1.1625V (425 MH/s - 65C - 50% fan)
(The first card is sucking in hot air from the back of the second card).

I haven't truly verified the stability of the system yet but the cards have been running well for 2 hours now.  From what I've read on these forums it is VERY hard to get a refenence 5850 up to 425 MH/s so I would suggest that the Sapphire 5850 Xtreme cards are quite a bit better than the reference 5850s.
1470  Other / CPU/GPU Bitcoin mining hardware / Re: Record hashrate for a 5850? (me, showing off) on: July 01, 2011, 11:19:20 PM
1.2375V!  That's pretty serious.

How are you cooling your voltage regulators?

Is this a reference 5850?
1471  Other / CPU/GPU Bitcoin mining hardware / Re: Differences in 5850's on: July 01, 2011, 11:09:53 PM
I would try higher voltage and core speed but I've not yet found a way to set anything higher than 900 MHz core speed in Linux.
works using catalyst 11.6. with 11.5 you'd have to flash the bios.

Yep.  I discovered this just a few hours ago.  Thanks anyway though.
1472  Other / CPU/GPU Bitcoin mining hardware / Re: coolers/fan for sapphire 5850 xtreme on: July 01, 2011, 06:05:14 AM
Also, the coolers largely obstruct the fan connector on the cards and the fan connectors are 3-pin (the board supplies 4-pin) so you'll need to connect the fans to the motherboard or something. 
no need just put the cable this the original connector, take the plastic off the wire, double them and insert them on the Zamlan connector holes the apply duck tape, and if you get a fan that have 4 pins is even better 

True, you could do this.  But it does mean cannibalising the stock coolers.  Also, I don't think the card will be able to control the speed of the fans after doing this but I could be wrong.

Whacking them into the motherboard was an easy solution for me because I had two 3-pin fan connectors on the board not in use anyway and the cards only need minimum fan speeds with these coolers (temps are 64C and 49C respectively, the hotter card is taking in air from just behind the cooler card).

I'm sure you could get a 4-pin molex to 2x3-pin fan connectors adapter and use that too and use the fan mate 2 which comes with the Zalman VF3000A to force minimum fan speed at all times.
1473  Other / CPU/GPU Bitcoin mining hardware / Re: Differences in 5850's on: June 30, 2011, 05:51:46 PM
I like the Sapphire Xtreme's in Linux too.  I have 2 and they are both running at 900/300 at 1.01V (735 MH/s total).  I would try higher voltage and core speed but I've not yet found a way to set anything higher than 900 MHz core speed in Linux.
1474  Other / CPU/GPU Bitcoin mining hardware / Re: coolers/fan for sapphire 5850 xtreme on: June 30, 2011, 05:48:30 PM
I found the fans on my 2 Sapphire 5850 xtreme's too loud so I replaced them with Zalman VF3000A coolers.  The stock coolers work perfectly well but are of no use to me at all and just sitting in a box Sad.

Note:  Although the Zalman VF3000A coolers are excellent they are not designed for the Xtreme cards.  Each card will block two pci slots and the cooler will extend 4cm beyond the end of the card so make sure you have room before ordering one of these.  Also, the coolers largely obstruct the fan connector on the cards and the fan connectors are 3-pin (the board supplies 4-pin) so you'll need to connect the fans to the motherboard or something.  On the plus side, if your gpus are still the loudest element of your computer then I have to say you must have a VERY quiet PSU.
1475  Bitcoin / Mining software (miners) / Re: 3% faster mining with phoenix+phatk, diablo, or poclbm for everyone on: June 30, 2011, 01:33:04 PM
359 -> 367 (2.2%) on my two 5850's (900/300 1.01V).

Thank you kindly.
1476  Bitcoin / Mining / Re: Mining Userbars on: June 29, 2011, 09:41:59 AM
Fixed the numbering, no longer has a billion places after the decimal. Also added GH/s notation for people pulling over 1000MH/s.

Everyone knows that a Gigahash/byte is 1024 of the Mega's, right?  I hope you just typed 1000MH/s as a round number.

EDIT: I see you are using API tokens, so the pools are reporting what they are reporting.  Tongue

I disagree.  Technically kilo as a prefix means 1000 in all cases.  There is an informal understanding that in some situations to do with bit and byte, the prefixes represent 1024, but this is officially incorrect (according to SI) and kibi, mebi, gibi, et cetera should be used instead.

There is certainly no issue with the unit 'hash'.  Like 'watt' and 'hertz', the prefixes work in base 1000.
1477  Bitcoin / Mining / Re: Linux vs Windows for Dedicated Mining on: June 27, 2011, 08:34:09 PM
Ha Windows 7 is so easy to pirate - Windows 7 loader  Cheesy

Also if you flash your card to an OC'ed ROM it will work in Linux too.

Silk road is one thing but software piracy?  Are we really that dastardly?  I am shocked!
1478  Bitcoin / Mining / Re: Linux vs Windows for Dedicated Mining on: June 27, 2011, 07:29:19 PM
I would suggest Windows would allow you to get better hash rates because you will have much more control over the card (card creators consider Windows before Linux in general and there are many tools out there to tweak your cards which only run on Windows).

I'm in the middle of configuring a 2x5850 (Sapphire Xtreme) mining rig and would love to clock the cores past 900 MHz but I've found no way of doing that on Linux (Windows users can either flash the bios or use Sapphire's TriXX).

Of course, this all assumes you already have a valid Windows OS License.  If you do not have a Windows OS License then the cost of this will probably outweigh any benefit from greater power over your cards.
1479  Bitcoin / Mining / Re: pool hopping on: June 25, 2011, 09:27:24 PM
Thanks. Very informative.  Can I give you 0.005 btc?

Of course.

1LyVjLv5aBwUw8864jYRZEGibLRRuqdnjT

You're welcome.
1480  Bitcoin / Mining / Re: pool hopping on: June 25, 2011, 10:40:07 AM
I give up. What is pool hopping?

I believe 'pool hopping' refers to switching pools at certain times to take advantage of the proportional payout system.

With the proportional payout system, the pool mining effort is divided into rounds, each round ending when the pool finds a block.  The pool asks users to submit shares (solutions for an artifical, low difficulty).  At the end of the round the 50 BTC reward is divided between the users, weighted by the shares they have submitted.  (transaction fees are almost always kept by the pool and there may also be a fee).

One issue with this is that as a round goes on, the shares become less and less valuable.  A miner can make quite a lot more (I'd guess a bit more than 120% of solo mining in real-world conditions) by connecting to a small number of large proportional-payout pools and always channeling his shares to the pool with the youngest round.  Proportional pools try to combat this by not immediately publishing when a new round has begun but this is not 100% effective.

To be clear, the pools do not lose money because of this (or other tricks such as griefing), the other pool users do.  Also, some people view this tactic as a form of cheating so you may find pool operators trying to block or ban you for such behaviour.

Switching pools when one goes down so that your miner is always busy is typically not seen as a form of cheating.
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!