Bitcoin Forum
May 07, 2024, 10:53:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 17 18 19 20 21 22 23 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 ... 311 »
  Print  
Author Topic: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record  (Read 684952 times)
bidji29
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
February 13, 2014, 03:27:15 PM
 #1321

Quote
[15:08] jh00: @coinhunter not really, but I want to launch Riecoin support before I go to bed in 14 hours

jh00 is the owner of ypool Smiley


He also said there is huge improvment possible in the Riecoin algo, up to 100x perf

http://www.freebieservers.com/  100% FREE GAME SERVERS
1715122439
Hero Member
*
Offline Offline

Posts: 1715122439

View Profile Personal Message (Offline)

Ignore
1715122439
Reply with quote  #2

1715122439
Report to moderator
1715122439
Hero Member
*
Offline Offline

Posts: 1715122439

View Profile Personal Message (Offline)

Ignore
1715122439
Reply with quote  #2

1715122439
Report to moderator
You get merit points when someone likes your post enough to give you some. And for every 2 merit points you receive, you can send 1 merit point to someone else!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715122439
Hero Member
*
Offline Offline

Posts: 1715122439

View Profile Personal Message (Offline)

Ignore
1715122439
Reply with quote  #2

1715122439
Report to moderator
1715122439
Hero Member
*
Offline Offline

Posts: 1715122439

View Profile Personal Message (Offline)

Ignore
1715122439
Reply with quote  #2

1715122439
Report to moderator
SkillRoad
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 13, 2014, 03:27:50 PM
 #1322

has anyone found some coins here? i was mining 24 h and no luck

Yes, I found a 35 RIC block with my i7 4770 (before block 1152), since then, nothing.  Grin

do you mine with wallet or standalone miner?

With the official standalone miner (win64).
6strings
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250



View Profile
February 13, 2014, 03:36:33 PM
 #1323

You'll need more than $100 credit... there was someone with 120K cores on AWS, costing $1,200 an HOUR, and he wasn't finding much

this is what i'v been thinking lately :


    



Good you've only been thinking it , not writing it down , cause man , is this a blasphemy towards the English language.


well ......... people see what i ment with this right ?

By millionaire you mean $100 USD and an AWS account?

Edit: And I forgot, Amazon will give a free $100 evaluation credit.

Can you pm me where to get this credit? The power of 60 promo seems to be over.
CSM00
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
February 13, 2014, 03:39:20 PM
 #1324

You'll need more than $100 credit... there was someone with 120K cores on AWS, costing $1,200 an HOUR, and he wasn't finding much

this is what i'v been thinking lately :


    



Good you've only been thinking it , not writing it down , cause man , is this a blasphemy towards the English language.


well ......... people see what i ment with this right ?

By millionaire you mean $100 USD and an AWS account?

Edit: And I forgot, Amazon will give a free $100 evaluation credit.

Can you pm me where to get this credit? The power of 60 promo seems to be over.

I was thinking of the Powerof60 credit - I actually used that for "real" work (EMR) a long time ago, didnt know it had went away.
cabin
Sr. Member
****
Offline Offline

Activity: 604
Merit: 250


View Profile
February 13, 2014, 03:42:50 PM
 #1325

Current n-1 improvement (already mentioned elsewhere):

Run rminerd with a larger sieve.  12% improvement in going from 1Mb (default) to 2Mb on xeon class machines (i.e with large caches).  For example

Code:
./rminerd -q -o http://10.10.10.10:28332 -O awallet:apassword -t 8 -i 2097152 

Regards,

--
bsunau7

Next n-1 improvement is a small one (1-2% depending on how sieve size used) and was found before I focused on the time critical code:

Replace all

Code:
  if( mpz_probab_prime_p ( bnTarget, MR_TESTS) )

With

Code:
  if( mpz_millerrabin ( bnTarget, MR_TESTS) )

mpz_probab_prime_p is a wrapper around mpz_millerrabin which includes tests for small primes.  The sieve which riecoin uses has already sieved the numbers so no need to double sieve.

I would expect this to make more than a few % points on small memory systems.

Regards,

--
bsunau7

could you compile a windows version pls ?

I compiled a windows version of the fermat build if you want to give it a try:
https://www.dropbox.com/s/hz6ns6s85silqw0/cpuminer-rminerd-fermat.zip

So far it is the fastest variation I have found. It is based on this code:
https://github.com/iddumied/cpuminer-rminerd-fermat
paulus51
Sr. Member
****
Offline Offline

Activity: 616
Merit: 321



View Profile
February 13, 2014, 04:01:54 PM
 #1326

Current n-1 improvement (already mentioned elsewhere):

Run rminerd with a larger sieve.  12% improvement in going from 1Mb (default) to 2Mb on xeon class machines (i.e with large caches).  For example

Code:
./rminerd -q -o http://10.10.10.10:28332 -O awallet:apassword -t 8 -i 2097152 

Regards,

--
bsunau7

Next n-1 improvement is a small one (1-2% depending on how sieve size used) and was found before I focused on the time critical code:

Replace all

Code:
  if( mpz_probab_prime_p ( bnTarget, MR_TESTS) )

With

Code:
  if( mpz_millerrabin ( bnTarget, MR_TESTS) )

mpz_probab_prime_p is a wrapper around mpz_millerrabin which includes tests for small primes.  The sieve which riecoin uses has already sieved the numbers so no need to double sieve.

I would expect this to make more than a few % points on small memory systems.

Regards,

--
bsunau7

could you compile a windows version pls ?

I compiled a windows version of the fermat build if you want to give it a try:
https://www.dropbox.com/s/hz6ns6s85silqw0/cpuminer-rminerd-fermat.zip

So far it is the fastest variation I have found. It is based on this code:
https://github.com/iddumied/cpuminer-rminerd-fermat

ok i am testing now , thanks i let you know how it works out, btw now 95 mhash/s
ikom
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
February 13, 2014, 04:09:48 PM
 #1327

What value are u using for the --max-prime? Using --benchmark I got the best results (number of found blocks, not knumber/s) with --max-prime=100
Feel free to donate if this helps to you Smiley

RIC RT6Yu5tK3FNrW9m6vb4WUc6Wk5j3VPp6fR
Hoshiz
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
February 13, 2014, 04:48:52 PM
 #1328

Run 48 cores since the lauch. 1 Block found 50 coins, i need to do somenthing or the coins send automatic to the wallet?.

Sorry for the bad english... thx  Grin
Lubliana777
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 13, 2014, 04:58:20 PM
 #1329


Riecoin has been listed on Newaltex.com (RIE/BTC)

https://www.newaltex.com/exchange/rie_btc

Help us increase the trading volume
cabin
Sr. Member
****
Offline Offline

Activity: 604
Merit: 250


View Profile
February 13, 2014, 05:07:51 PM
 #1330

What value are u using for the --max-prime? Using --benchmark I got the best results (number of found blocks, not knumber/s) with --max-prime=100
Feel free to donate if this helps to you Smiley

RIC RT6Yu5tK3FNrW9m6vb4WUc6Wk5j3VPp6fR

I've been using 11000. Gives me stats like these on a slow duo core:

[2014-02-13 12:03:20] Expected days to block: 91.6 337.5 2-chains/hour
[2014-02-13 12:03:20] accepted: 0 of 0 in 31 seconds
[2014-02-13 12:03:29] thread 0: 914358273 hashes, 90 Mh/s
[2014-02-13 12:03:29] thread 1: 854589441 hashes, 90 Mh/s

I think if it is too low you will get a lot of false positives for primes.
truckythin
Hero Member
*****
Offline Offline

Activity: 781
Merit: 501



View Profile
February 13, 2014, 05:17:10 PM
 #1331


Riecoin has been listed on Newaltex.com (RIE/BTC)

https://www.newaltex.com/exchange/rie_btc

Help us increase the trading volume


oh no, pls DONT ADD THIS COIN, we only prefer cryptsy or bter or mcxnow.
i'm very afraid of small exchange with ton of zero, it could kill the potential coin.
Supercomputing
Sr. Member
****
Offline Offline

Activity: 278
Merit: 250


View Profile
February 13, 2014, 05:17:28 PM
 #1332

So difficulty is currently at 774 bits or 234 decimal digits and I haven't found a block in over 24 hours. At this number size, expect about one (1) out of every 540 integers to be prime. Well, until we optimize the segmented sieve of Eratosthenes further for finding prime sextuplets, it is back to Primecoin mining for me. The miners released with this coin are a joke.

So many people have pointed out that unless you have massive amounts of processing power, this coin is not for you. It is a shame because a lot of people will be left out.

It is going to be interesting to see how a pool miner will be implemented - there are a lot of  2 - 4 chains, but very few 5 - 6 chains.

Electrical Engineering & Computer Science
http://www.eecs.mit.edu/
Lubliana777
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 13, 2014, 05:20:52 PM
 #1333


Riecoin has been listed on Newaltex.com (RIE/BTC)

https://www.newaltex.com/exchange/rie_btc

Help us increase the trading volume


oh no, pls DONT ADD THIS COIN, we only prefer cryptsy or bter or mcxnow.
i'm very afraid of small exchange with ton of zero, it could kill the potential coin.

This makes no sense at all, please elaborate.
dga
Hero Member
*****
Offline Offline

Activity: 737
Merit: 511


View Profile WWW
February 13, 2014, 05:24:10 PM
 #1334

So difficulty is currently at 774 bits or 234 decimal digits and I haven't found a block in over 24 hours. At this number size, expect about one (1) out of every 540 integers to be prime. Well, until we optimize the segmented sieve of Eratosthenes further for finding prime sextuplets, it is back to Primecoin mining for me. The miners released with this coin are a joke.

So many people have pointed out that unless you have massive amounts of processing power, this coin is not for you. It is a shame because a lot of people will be left out.

It is going to be interesting to see how a pool miner will be implemented - there are a lot of  2 - 4 chains, but very few 5 - 6 chains.

EECS in your .signature tag and not interested in doing the optimization? *grins*  If only the release happened during IAP.

The difficulty is high, but - solo mining is hard, period.  An optimized sieve won't change the difficulty of solo mining.

What the optimized sieve will do is level the playing field.  Right now there's a factor of 14x difference, at least, between the best private miners and the released one.  It's great fun for people who like to tweak the code, but probably not the best long-term thing for the coin.

jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
February 13, 2014, 05:53:25 PM
 #1335


Riecoin has been listed on Newaltex.com (RIE/BTC)

https://www.newaltex.com/exchange/rie_btc

Help us increase the trading volume

poloniex would be a much better  small exchange to be on. they have google authenticator 2FA and Tristan the dev is top notch. You can email him poloniex@gmail.com and ask to add RIE (or is it RIC?)

http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
paulus51
Sr. Member
****
Offline Offline

Activity: 616
Merit: 321



View Profile
February 13, 2014, 05:54:04 PM
 #1336

LOL Huh? is this funny or what ??


are we all mining for others ??




{
"height" : 2284,
"bestblock" : "5985761e09c43d6692e5125dc89779d8a746778106ea0d5ed090027b1a8909d0",
"transactions" : 2120,
"txouts" : 2172,
"bytes_serialized" : 148284,
"hash_serialized" : "c9c648d7272b2c387c01e0bdab2fc9985fd3f72afdcf6625742cb21b2c65cf98",
"total_amount" : 71024.99999744
}


HuhHuhHuh
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
February 13, 2014, 06:07:39 PM
 #1337

Is there a blockchain scanner?

If we are already on block 2284 -> 2284 * 2.5 min = ~4 days
It seems that blocks are being found more than twice as fast as expected.

Still 70,000 coins in first 2 days doesnt seem like that many, especially considering the number of people mining it.

http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
keepwalking1234
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
February 13, 2014, 06:08:07 PM
 #1338

hi

everybody

although we are listed on a exchange platform, but it’s a new platform.

so do not sell all your coins, the platform do not have so many user to buy RIE!

Your dreams are waiting to be realized.
crendore
Sr. Member
****
Offline Offline

Activity: 363
Merit: 250


View Profile
February 13, 2014, 06:10:51 PM
 #1339

LOL Huh? is this funny or what ??


are we all mining for others ??




{
"height" : 2284,
"bestblock" : "5985761e09c43d6692e5125dc89779d8a746778106ea0d5ed090027b1a8909d0",
"transactions" : 2120,
"txouts" : 2172,
"bytes_serialized" : 148284,
"hash_serialized" : "c9c648d7272b2c387c01e0bdab2fc9985fd3f72afdcf6625742cb21b2c65cf98",
"total_amount" : 71024.99999744
}


HuhHuhHuh

How is this even possible?
Quote
Since this is a new PoW, it is very hard to define a starting difficulty that avoids instamining. To overcome this and contribute to a fair launch, the first 576 blocks will have no reward and the next 576 will linearly increase and reach the full reward at block 1152, after 4 difficulty adjustments were performed. Besides avoiding instamining, this should allow time for those who want to compile their own clients.

This mean, for the first 576 blocks no reward. then there was essentially 1/2 of 50 per block for the next 576 blocks.
So total coins right now: 14400 + 56600 = 71000

Ohhh i get it now. that's the total amount of coins in existence, not the total amount of transfer in that block.

paulus51
Sr. Member
****
Offline Offline

Activity: 616
Merit: 321



View Profile
February 13, 2014, 06:13:56 PM
 #1340

well i dont know muts about this all but you can see for your self in console
type :   gettxoutsetinfo   <enter>

results :

{
"height" : 2286,
"bestblock" : "bdecef8a7979e6f5dd9061ee58824830708744b57bb34ad6e5dae3ce030774dc",
"transactions" : 2123,
"txouts" : 2175,
"bytes_serialized" : 148458,
"hash_serialized" : "e560084d0d4564daac0ef2e46540780d5a72e1692ebaf96b638ab897955ae482",
"total_amount" : 71124.99999744
}


so in my eyes strange right ? or do i miss something here?
Pages: « 1 ... 17 18 19 20 21 22 23 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 ... 311 »
  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!