Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - reorder

Pages: 1 ... 20 21 22 23 24 25 26 [27]
391
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 25, 2013, 09:39:41 am »
That's not hpm, hpm is hashes per minute, or are you certain there's on average exactly one collision per try? I don't blame you for the stats inflation though - the pools started it.
Well, that depends on which hashes you meter. What you mean must probably be called 'works per minute', it is related to cpm linearly on average and the coefficient must be >1 (average number of collisions in a work is just a tad less than 1). So, it is a deflation instead :)

392
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 25, 2013, 09:15:21 am »
Is that actually HPM, as in hashes per minute, or collisions per minute (which coyote miner prints as hpm for some reason)?

Coyote: collisions per minute reported as hpm (at least on github which is 12 days old! - the binary probably multiplies this by 2 also, otherwise coyote miner would be two times slower)
Beeer and ypool: collisions per minute * 2 reported as col/m

Which one is it?

edit:
http://bitsharestalk.org/index.php?topic=965.0
Ok, so 520HPM is impossible on amazon instance. So it's actually col/m*2 for all public miners.

So unless you specifically modified a miner to report true hpm you're getting 500 col/m. Did you?

It is real hpm, or cpm*2.

393
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 25, 2013, 07:06:27 am »
huh? now was any of that real? can we see some vid of it working at least?
Sorry, I hate it when a helicopter does not explode in a movie, and do not have a spare helicopter at hand. Now, if you find this amusing, here is how it looks like:
Code: [Select]
Sun Nov 24 22:21:29 2013 Worker 0 505.567078 hpm  --> Upstream RPC result: True
Sun Nov 24 22:21:30 2013 Worker 0 505.573132 hpm  --> Upstream RPC result: True
Sun Nov 24 22:21:31 2013 Worker 1 504.408057 hpm  --> Upstream RPC result: True
Sun Nov 24 22:21:33 2013 Worker 1 504.419294 hpm  --> Upstream RPC result: True
Sun Nov 24 22:21:34 2013 Worker 1 504.401926 hpm  --> Upstream RPC result: True
Sun Nov 24 22:21:34 2013 Worker 0 505.529154 hpm  --> Upstream RPC result: True
Not even a mining porn, really.

394
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 24, 2013, 09:17:16 pm »
Python is significantly slower than C.  Buyer beware.  Personally i would wait for a C implementation than buy a python one.
Sorry, but so what? You do not need ultra performance to send 10-20 packets of data/sec over network :) Most pools are running python, for that matter.

Anyway, sold.

EDIT: sold exclusively.

Right, and i should take whatever a salesman says at face value too.  There's a reason that all decent miners are written in C, and it certainly can't be hand-waved away by some silly argument about network performance.

Not selling anymore, but still. There are multiple reasons for that indeed, speed being not on the list. Think poclbm and how it is still alive and well.

395
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 24, 2013, 06:11:51 pm »
Python is significantly slower than C.  Buyer beware.  Personally i would wait for a C implementation than buy a python one.
Sorry, but so what? You do not need ultra performance to send 10-20 packets of data/sec over network :) Most pools are running python, for that matter.

Anyway, sold.

EDIT: sold exclusively.

396
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 24, 2013, 01:53:22 pm »
Call it nitpicking, but it is written in Python using pyopencl :) My plan is to try to get some reward for the work first. Mining is apparently not an option anymore (not with my 2 noisy 7870s), so I am selling the miner. The buyer, if there will be one, can opensource it of course at his discretion.

EDIT: sold exclusively.

397
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 24, 2013, 12:30:12 pm »
By the way, looks like there is currently no bounty for GPU miner implementation, so anyone interested in bargaining for it please PM. Just keep in mind it is not a turnkey thing, python/pyopencl and very basic network.

EDIT: sold exclusively.

398
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 24, 2013, 08:48:58 am »
So how about some actually useful information regrading the GPU miner then?

I don't have any information other than the algorithm I would implement given the time:

Generate 512 MB of birthdays (512 Hashes) in parallel
Use the GPU to sort them
Use the GPU to find collisions

Someone who wants an open source GPU miner could easily pay to have one developed for them and it would cost about $10,000 or perhaps less.   Considering what people are paying Amazon for cloud computing, it only makes sense that someone would develop this.

I have implemented a GPU miner, and this algo (with bitonic parallel sorting which is considered best for the task) yields just 160hpm on 7870 at best. There are better ways, currently I can squeeze >500hpm out of the card at stock clocks.

Thank you for sharing.  So with an optimized algorithm you can get about a 3x gain from the GPU vs a CPU as many CPUs are getting 160 HPM.   Will you share your algorithm?

Just a hashtable, fast and dirty in a sense that it may skip valid collisions.

So if you accept losses due to race conditions then you gain on average.  Sounds like how I optimized my CPU miner.

Curiously, the more you are willing to lose, the more you gain. HPM was increasing as I went from full sort to cuckoo hashtable to plain synchronized hashtable to unsynchronised one. And then the same with worsening the hash function and reducing the table size.

399
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 24, 2013, 08:15:34 am »
So how about some actually useful information regrading the GPU miner then?

I don't have any information other than the algorithm I would implement given the time:

Generate 512 MB of birthdays (512 Hashes) in parallel
Use the GPU to sort them
Use the GPU to find collisions

Someone who wants an open source GPU miner could easily pay to have one developed for them and it would cost about $10,000 or perhaps less.   Considering what people are paying Amazon for cloud computing, it only makes sense that someone would develop this.

I have implemented a GPU miner, and this algo (with bitonic parallel sorting which is considered best for the task) yields just 160hpm on 7870 at best. There are better ways, currently I can squeeze >500hpm out of the card at stock clocks.

Thank you for sharing.  So with an optimized algorithm you can get about a 3x gain from the GPU vs a CPU as many CPUs are getting 160 HPM.   Will you share your algorithm?

Just a hashtable, fast and dirty in a sense that it may skip valid collisions.

400
BitShares PTS / Re: GPU Miners are here... if rumors are to be believed!
« on: November 24, 2013, 07:56:09 am »
So how about some actually useful information regrading the GPU miner then?

I don't have any information other than the algorithm I would implement given the time:

Generate 512 MB of birthdays (512 Hashes) in parallel
Use the GPU to sort them
Use the GPU to find collisions

Someone who wants an open source GPU miner could easily pay to have one developed for them and it would cost about $10,000 or perhaps less.   Considering what people are paying Amazon for cloud computing, it only makes sense that someone would develop this.

I have implemented a GPU miner, and this algo (with bitonic parallel sorting which is considered best for the task) yields just 160hpm on 7870 at best. There are better ways, currently I can squeeze >500hpm out of the card at stock clocks.

Pages: 1 ... 20 21 22 23 24 25 26 [27]