Bitcoin Forum
May 27, 2024, 08:48:58 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 »
281  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 25, 2013, 06:57:32 PM
Oh, and make sure you are using either v4 or v5 kernel.
282  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 25, 2013, 06:46:13 PM
If you want higher intensities but are getting HW errors, you need to either increase thread concurrency or lookup gap.
283  Alternate cryptocurrencies / Altcoin Discussion / Re: Can someone tell me why yac gpu miner works so well with my 7870LE Tahiti? on: June 22, 2013, 11:17:24 AM
Well, the scrypt-chacha kernel is a curious thing.

I think performance is mostly linked to memory. Ideally you want to access the main memory as little as possible even though the scrypt algorithm is forcing you to do so. Large register files and caches help with that. I haven't looked at the exact specs of all the chips but there may be some differences there.

Wikipedia has a nice table with the specs for the HD 7000 series:
http://en.wikipedia.org/wiki/Radeon_HD_7000_Series

The chip on the 7870 XT is code named Tahiti LE. It has a 256-bit memory bus which puts it behind the 7900 series in memory bandwidth. And it also has less cores than the 7900 series. I would assume they didn't change the Tahiti design but simply disabled some cores and a few memory controllers. Compared to the 7970, they probably have disabled 33% of memory controllers and 25% of cores. So the memory bandwidth is the biggest issue with your card.

Hanzac did a pretty good job with the OpenCL kernel in his initial release. I only improved it by taking some ideas from the normal scrypt kernel. So it has some new ideas and it has some old ideas. Wink I think it may be possible to apply some of Hanzac's tricks to the normal scrypt kernel.

The scrypt-chacha kernel certainly seems to perform differently. For example on my 7790 there doesn't seem to be a "sweet spot" for the combination of engine and memory clock. Admitted, I didn't test this thoroughly, but the kernel seemed to always simply run faster at higher clocks.
284  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][YAC] YACoin ongoing development on: June 20, 2013, 01:36:49 PM
Is it possible that ppl are selling their hard earned yacoins for 0.00016... What a bunch od stupid idiots  Huh

https://bitcointalk.org/index.php?topic=232241.msg2522690#msg2522690

I have 50 BTC ready to be invested in YAC but I ain't gonna be buying unless price drops to 0.000085 or so. Not only that paying more makes no
sense from trader perspective, but investing 50 BTC in altcoin which is still not super strong (lacks huge support by miners) is very risky move.

The price will probably go up a bit in 5 days time because the Nfactor is going to change. Hashing rate will drop to about 50% and difficulty will take a while to adjust.

I have a fun little countdown page for the Nfactor:
http://muuttuja.org/yacoin/countdown/
285  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 19, 2013, 10:23:40 AM
New revision is out. This tries to avoid nasty division and modulo operations. For whatever reason, this is the fastest kernel for my 7790.

scrypt-chacha-v5.cl
https://mega.co.nz/#!A0VCmZbR!LbTRJQ10nnidSn6U5ZZkCD1LXBwV6HjK7lA4aJaO_ng
286  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 19, 2013, 09:39:13 AM
trying v4 now and its actually giving me a huge drop in hash rate. I am down to 165khash at i20 where as I was getting 270 at i12 with the last version.

What's your GPU? v4 adds one division operation which could be slow if your GPU doesn't have a division instruction. I can write code that doesn't use division.
287  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 19, 2013, 09:17:42 AM
Only a small update this time. I added automatic compensation for Nfactor changes. This prevents the GPU from crashing by automatically reducing the thread concurrency within the OpenCL kernel. Intensity will still need to be adjusted when N changes (especially if you start getting HW errors).

scrypt-chacha-v4.cl
https://mega.co.nz/#!Jx8DgRhL!Lmh0-HxHm0AYwcePGFSPWV-9bbwd8WN5OwuWiC4oBh4

Next change of N is scheduled for Tue 25 Jun 2013 18:38:24 (GMT).
288  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 18, 2013, 03:42:08 PM
Alright, I transferred more features from the normal scrypt kernel and got even more speed out of the scrypt-chacha kernel.

Notable changes:
 - Added support for CONCURRENT_THREADS
 - Fixed support for LOOKUP_GAP when it's not a power of 2

scrypt-chacha-v3.cl
https://mega.co.nz/#!cxUUmRga!I3ttCwVJIjt9g14sXW33FhJZLhtTqyWtcGQ2vFI8vsY

How to use:
1. Download the new kernel file.
2. Rename to scrypt-chacha.cl.
3. Copy to your GPU miner folder.
4. Delete any .bin files.
5. Restart your miner.
6. Look up settings from the Litecoin wiki.

The tuning parameters are now compatible with the scrypt kernel. You can look up optimal settings on the Litecoin wiki:
https://github.com/litecoin-project/litecoin/wiki/Mining-hardware-comparison

My settings for a 7790:
Code:
./yacminer --scrypt -w 128 --lookup-gap 2 -I 17 --thread-concurrency 8000 -g 1
289  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 17, 2013, 09:24:53 PM
You are right, intensity 13 works!  And I have received a bit of a boost on the 7970, awesome job thanks man! Cheesy  Keep up the good work Smiley

If your 7970 has enough memory, you can try even higher intensities. You just need to double thread concurrency with each increase of intensity.

Try something like this:
Code:
./yacmine --scrypt -w 256 --lookup-gap 2 -I 14 --thread-concurrency 16416 -g 1

This needs more than 1 GB of RAM.

Or even higher:
Code:
./yacmine --scrypt -w 256 --lookup-gap 2 -I 15 --thread-concurrency 32832 -g 1

Intensity 15 needs more than 2 GB of RAM.
290  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 17, 2013, 08:00:56 PM
Try a lower intensity if it's freezing. Also make sure you replaced scrypt-chacha.cl and that the .bin files are gone. The settings I posted will crash your GPU with the old kernel.
291  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 17, 2013, 07:31:05 PM
i thought the original already had lookup gap

No, there was no actual support for it in the OpenCL code.
292  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Yet another GPU miner release! [YAC] on: June 17, 2013, 07:14:17 PM
I added support for LOOKUP_GAP to the scrypt-chacha kernel. This allows higher intensities and higher efficiency. I'm getting 35% more khashes/s out of my 7790.

scrypt-chacha.cl with support for LOOKUP_GAP
https://mega.co.nz/#!l0sixSoQ!Xzzic2-GwMfGu3kefL8A1HmZuC8fuE3tlKiHdVO8-7M

How to use:
1. Download the new kernel file.
2. Rename to scrypt-chacha.cl.
3. Copy to your GPU miner folder.
4. Delete any .bin files.
5. Restart your miner.
6. Adjust intensity.

My miner settings for a 7790:
Code:
./yacmine --scrypt -w 256 --lookup-gap 2 -I 13 --thread-concurrency 8208 -g 1
293  Other / Beginners & Help / Re: How many of you have had coins stolen? on: June 15, 2013, 11:07:17 AM
0 coins stolen.
294  Other / Beginners & Help / Re: so many new alt coins created on: June 15, 2013, 11:03:26 AM
It's a new gold rush over and over again.
295  Other / Beginners & Help / Re: bcchanger.com Legit? on: June 15, 2013, 10:55:54 AM
Looks like the site is just listing sell/buy requests from different people. There's no listing fee, so my guess is that the site operates on ad revenue. Site itself looks legit. Whether you want to trust all the different people is another matter.
296  Other / Beginners & Help / Re: Hello, I'm in newbie jail. on: June 15, 2013, 09:10:32 AM
Yeah, it's a bit annoying being a newbie if you've been lurking for a long time.
297  Other / Beginners & Help / Re: Devcoin on: June 15, 2013, 09:07:33 AM
i read up on devcoin now, but confused.   Devcoin creation never stops?  No matter wat, new coins are always created?   So its inflation coin, and all the coins are decreasing in value on every block?   Am I wrong?  I think not.

That's correct. There's no limit on how many coins will be issued. The supply will be steady for as long as people keep mining them.
298  Alternate cryptocurrencies / Speculation (Altcoins) / Re: Will Litecoin pass 10$ by the end of June? on: June 15, 2013, 08:59:38 AM
Litecoin goes up and down with Bitcoin and lately Bitcoin has been going down.
299  Other / Beginners & Help / Re: The Official "First Word that Pops Into Your Head" Thread™ | Get Out of Jail! on: June 15, 2013, 08:56:22 AM
Yacoin
300  Other / Beginners & Help / Re: Devcoin on: June 15, 2013, 08:55:44 AM
Devcoin is merged mined with Bitcoin. Most of the minted coins are sent to the Devcoin admins who hand them out to people.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!