Author

Topic: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record - page 209. (Read 685214 times)

sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
It'd be nice if the dev. post updates or replies to our post at least once every other day for an active involvement.
member
Activity: 114
Merit: 10
Is your miner publicly available?

I can now say with absolute certainty, that if I had my current solo miner implementation on launch day, I would have solved the first 576 blocks in under 15 minutes using only 20 Intel E5-2697 v2 CPUs  Shocked

Was the launch really all that fair? I guess we will never know.

The implementations from gatra, dga, and jh00 will be just as fast if they used slightly larger primorials and AVX2 instructions for multiple-precision arithmetic. So in a few weeks from now, the performance advantage from all of the miners should be negligible.

I will begin work on an Nvidia GPU (sm_20 - sm_35) version this weekend. Also, I plan on releasing that version in binary format with a small developer's fee if the performance gain against a high-end CPU is significant. Sorry, I do not know how to program AMD GPUs for HPC related to multiple-precision arithmetic (Karatsuba multiplication + Montgomery Reduction).

Credit where due - I really wanted to make an alternate, pre-computation and memory-heavy approach to this work, but I've given up.  It's tough to beat straightforward sieving, and you (@supercomputing) were right - I ended up just going to a big primorial with a highly optimized sieve.  I haven't rewritten any of the routines currently handled by gmp (and my GMP is probably compiled horribly), but my pool miner is now somewhere in that ballpark.  I've solved 14 or so blocks in 24 hours using 14 machines, which is about in the same range you mentioned for your miner.  Block 17920 is an example, if you're curious to extract my primorial.

I'd still love to find a more satisfying way to crack this nut, though.  But for now, the sieves and fast prime tests have it.

Gatra, thank you for creating Riecoin.  It's terribly fun, has one of the more intellectually interesting proof-of-work cores (as does XPM, in fairness), and I hope it starts producing record prime tuples one of these days.  I'm planning on proposing high-speed RIC sieving cores as a class project for our parallel computing class next week.  Should be fun!

  -Dave


I've not had time to spend on this recently but I was hoping that a large pre-sieved static file (i.e network heavy) would address botnet mining.  By making the payload to large to efficiently ship to victims it would reduce their effective return compared to legit miners and force them to look at another coin.

--
bsunau7
member
Activity: 84
Merit: 10
Hello RIC guys and Ladies.

Just some thoughts from a "small fish" on mining and day trading.

First of all I believe in RIC. I think that the Rieman "thing" has potential. I have many computer science / mathematics friends that are really hyped by the idea.

I tried to mine it and I can say that ... MAN, IT IS REALLY DIFFICULT TO MINE IT.

So, a while ago I bought some of them at the price range of 0,00052-0,00055. Really, I can not understand how a miner can dump it in that price. A day trader OK, but a miner?

Anyway, I stay on RIC till 0,003 at least. It may go down to 1 satoshi, you never know, but it is a risk that I am more than willing to take.

Many thanks for your attention.      
full member
Activity: 314
Merit: 100
Riecoin low price is ridiculous. I guess its because of Ypool monopoly?

I think part of the problem is Riecoin launched right around the Mt. Gox fiasco coming to a head, which has cast a pale over alt-coins, especially young ones.
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
Riecoin low price is ridiculous. I guess its because of Ypool monopoly?
dga
hero member
Activity: 737
Merit: 511
Is your miner publicly available?

I can now say with absolute certainty, that if I had my current solo miner implementation on launch day, I would have solved the first 576 blocks in under 15 minutes using only 20 Intel E5-2697 v2 CPUs  Shocked

Was the launch really all that fair? I guess we will never know.

The implementations from gatra, dga, and jh00 will be just as fast if they used slightly larger primorials and AVX2 instructions for multiple-precision arithmetic. So in a few weeks from now, the performance advantage from all of the miners should be negligible.

I will begin work on an Nvidia GPU (sm_20 - sm_35) version this weekend. Also, I plan on releasing that version in binary format with a small developer's fee if the performance gain against a high-end CPU is significant. Sorry, I do not know how to program AMD GPUs for HPC related to multiple-precision arithmetic (Karatsuba multiplication + Montgomery Reduction).

Credit where due - I really wanted to make an alternate, pre-computation and memory-heavy approach to this work, but I've given up.  It's tough to beat straightforward sieving, and you (@supercomputing) were right - I ended up just going to a big primorial with a highly optimized sieve.  I haven't rewritten any of the routines currently handled by gmp (and my GMP is probably compiled horribly), but my pool miner is now somewhere in that ballpark.  I've solved 14 or so blocks in 24 hours using 14 machines, which is about in the same range you mentioned for your miner.  Block 17920 is an example, if you're curious to extract my primorial.

I'd still love to find a more satisfying way to crack this nut, though.  But for now, the sieves and fast prime tests have it.

Gatra, thank you for creating Riecoin.  It's terribly fun, has one of the more intellectually interesting proof-of-work cores (as does XPM, in fairness), and I hope it starts producing record prime tuples one of these days.  I'm planning on proposing high-speed RIC sieving cores as a class project for our parallel computing class next week.  Should be fun!

  -Dave
sr. member
Activity: 278
Merit: 250
Riecoin GPU miner update:

RIC mining performance is disappointing - Nvidia's GTX 780 Ti is only 3x faster than Intel's Core i7-4770K. But the Ti is 8x faster than the 4770K when used for XPM mining, so there is still hope. Apparently,  Nvidia's compiler still works best with small kernels. Modular multiplication for XPM and RIC uses 12 and 42 machine words respectively on the GPU device. The next step will be to write smaller kernels for the RIC core, but I will not be able to get back to this hobby for about a month from now.

It would be interesting to find out the difference in performance for a RIC core between a GTX 780 Ti and a Radeon 290x. I have reason to believe that the GTX 780 Ti's performance should far exceed that of the 290x. But without an optimized RIC core for the 290x, it will be difficult to tell by how much. Hopefully someone who has excellent OpenCL programming skills can provide to us performance figures for the 290x .

Sorry for the typos, my smart phone screen is small.

Your compare your GPU results with which CPU miner? The fastest?

Yes, Core i7-4770K with AVX2 instructions for modular multiplication (Karatsuba multiplication followed by Montgomery Reduction) - sliding window modular exponentiation.
hero member
Activity: 1778
Merit: 520
Indeed, need more then 1 pool!!!!!!!!!
legendary
Activity: 1154
Merit: 1001
Riecoin GPU miner update:

RIC mining performance is disappointing - Nvidia's GTX 780 Ti is only 3x faster than Intel's Core i7-4770K. But the Ti is 8x faster than the 4770K when used for XPM mining, so there is still hope. Apparently,  Nvidia's compiler still works best with small kernels. Modular multiplication for XPM and RIC uses 12 and 42 machine words respectively on the GPU device. The next step will be to write smaller kernels for the RIC core, but I will not be able to get back to this hobby for at about a month from now.

It would be interesting to find out the difference in performance for a RIC core between a GTX 780 Ti and a Radeon 290x. I have reason to belief that the GTX 780 Ti's performance should far exceed that of the 290x. But without an optimized RIC core for the 290x, it will be difficult to tell by how much. Hopefully someone who has excellent OpenCL programming skills can provide to us performance figures for the 290x .

Sorry for the typos, my smart phone screen is small.

Awesome stuff. Any chance you'd want a beta tester with GTX 750 TI? Also got a 770, will be happy to try it out on both!

Cheers,
Myagui
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
How about getting Riecoin on another pool? Any updates on that?
sr. member
Activity: 392
Merit: 250
Riecoin GPU miner update:

RIC mining performance is disappointing - Nvidia's GTX 780 Ti is only 3x faster than Intel's Core i7-4770K. But the Ti is 8x faster than the 4770K when used for XPM mining, so there is still hope. Apparently,  Nvidia's compiler still works best with small kernels. Modular multiplication for XPM and RIC uses 12 and 42 machine words respectively on the GPU device. The next step will be to write smaller kernels for the RIC core, but I will not be able to get back to this hobby for at about a month from now.

It would be interesting to find out the difference in performance for a RIC core between a GTX 780 Ti and a Radeon 290x. I have reason to belief that the GTX 780 Ti's performance should far exceed that of the 290x. But without an optimized RIC core for the 290x, it will be difficult to tell by how much. Hopefully someone who has excellent OpenCL programming skills can provide to us performance figures for the 290x .

Sorry for the typos, my smart phone screen is small.

Your compare your GPU results with which CPU miner? The fastest?
sr. member
Activity: 278
Merit: 250
Riecoin GPU miner update:

RIC mining performance is disappointing - Nvidia's GTX 780 Ti (Classified) is only 3x faster than Intel's Core i7-4770K (AVX2). But the Ti is 8x faster than the 4770K when used for XPM mining, so there is still hope. Apparently,  Nvidia's compiler still works best with small kernels. Modular multiplication for XPM and RIC uses 12 and 42 machine words respectively on the GPU device. The next step will be to write smaller kernels for the RIC core, but I will not be able to get back to this hobby for about a month from now.

It would be interesting to find out the difference in performance for a RIC core between a GTX 780 Ti and a Radeon 290x. I have reason to believe that the GTX 780 Ti's performance should far exceed that of the 290x. But without an optimized RIC core for the 290x, it will be difficult to tell by how much. Hopefully someone who has excellent OpenCL programming skills can provide to us performance figures for the 290x .

Sorry for the typos, my smart phone screen is small.

Edit: fixed a couple typos
hero member
Activity: 583
Merit: 505
CTO @ Flixxo, Riecoin dev
Is it just me or do riecoin-qt and riecoind take 5-10 minutes to start up every time?

Try the latest client if you are not already using it, I think is version 0.8.7.

+1

You can also try running with "-checkblocks=1"
sr. member
Activity: 278
Merit: 250
Is it just me or do riecoin-qt and riecoind take 5-10 minutes to start up every time?

Try the latest client if you are not already using it, I think is version 0.8.7.
hero member
Activity: 630
Merit: 501
New website for RIC ready for review next Monday!

2 days til Gatra Thursdays - Stratum Mining? . . . We'll see whats up.
hero member
Activity: 630
Merit: 501
Now some of you may disagree, but Bitcointalk is probably one of the most important altcoin sites to post announcements on. It is where newbs and active investors come to chat with one another and look at the next coin to invest in (At least for me it is). Even if there is an altcoin forum, it is less attractive to join in on that forum than bitcointalk. So what I suggest for the members of Riecoin community is to make as much post on Riecoin thread on Bitcointalk.com as possible. We should always be on page 1. Most people are lazy. Lazy enough not to look at page 2 unless desperate (somewhat like Google searches). If we are always on Page 1 of Bitcointalk.com, Riecoin will become more noticed and people will look at it often. If we can increase page count by at least 2 per day, it would be a vast improvement in reaching our audiences. Right now, we are at like 0.5ish page count a day. We are on page 1 maybe 5-6 times a day? It should be always. I will do my best in making Riecoin on page 1 but I need your help since I wont always be on.

Yes good point, I've taken to just reposting things on both forums when its worth telling people.
sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
Now some of you may disagree, but Bitcointalk is probably one of the most important altcoin sites to post announcements on. It is where newbs and active investors come to chat with one another and look at the next coin to invest in (At least for me it is). Even if there is an altcoin forum, it is less attractive to join in on that forum than bitcointalk. So what I suggest for the members of Riecoin community is to make as much post on Riecoin thread on Bitcointalk.com as possible. We should always be on page 1. Most people are lazy. Lazy enough not to look at page 2 unless desperate (somewhat like Google searches). If we are always on Page 1 of Bitcointalk.com, Riecoin will become more noticed and people will look at it often. If we can increase page count by at least 2 per day, it would be a vast improvement in reaching our audiences. Right now, we are at like 0.5ish page count a day. We are on page 1 maybe 5-6 times a day? It should be always. I will do my best in making Riecoin on page 1 but I need your help since I wont always be on.
This idea sounds good, but no spamming!  Wink
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
Now some of you may disagree, but Bitcointalk is probably one of the most important altcoin sites to post announcements on. It is where newbs and active investors come to chat with one another and look at the next coin to invest in (At least for me it is). Even if there is an altcoin forum, it is less attractive to join in on that forum than bitcointalk. So what I suggest for the members of Riecoin community is to make as much post on Riecoin thread on Bitcointalk.com as possible. We should always be on page 1. Most people are lazy. Lazy enough not to look at page 2 unless desperate (somewhat like Google searches). If we are always on Page 1 of Bitcointalk.com, Riecoin will become more noticed and people will look at it often. If we can increase page count by at least 2 per day, it would be a vast improvement in reaching our audiences. Right now, we are at like 0.5ish page count a day. We are on page 1 maybe 5-6 times a day? It should be always. I will do my best in making Riecoin on page 1 but I need your help since I wont always be on.
sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
Remember! We have our own forum. Join the growing community at Riecointalk.org
*riecointalk.com

But riecointalk.org does redirect to riecointalk.com, does that mean Riecointalk.com owns Riecointalk.org? If so, why do we use a .COM domain name? com stands for commercial  Huh
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
Remember! We have our own forum. Join the growing community at Riecointalk.org
Jump to: