mersenneforum.org  

Go Back   mersenneforum.org > Prime Search Projects > Conjectures 'R Us

Reply
Thread Tools
Old 2017-02-10, 06:45   #1244
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

29·359 Posts
Default

Quote:
Originally Posted by MisterBitcoin View Post
S7 has reached n=25K.
The prime-list and k´s remaining is attached.
I will need the primes for n<=2500 for this range before I can post anything as complete.

Last fiddled with by gd_barnes on 2017-02-10 at 07:21
gd_barnes is online now   Reply With Quote
Old 2017-02-10, 15:48   #1245
MisterBitcoin
 
MisterBitcoin's Avatar
 
"Nuri, the dragon :P"
Jul 2016
Good old Germany

811 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
I will need the primes for n<=2500 for this range before I can post anything as complete.

I´m mailed this 1,5 months ago. I'm re-sending it right now.
MisterBitcoin is offline   Reply With Quote
Old 2017-02-10, 19:57   #1246
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

29·359 Posts
Default

Quote:
Originally Posted by MisterBitcoin View Post
I´m mailed this 1,5 months ago. I'm re-sending it right now.
Sorry about that.
gd_barnes is online now   Reply With Quote
Old 2017-02-10, 20:57   #1247
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

101000101010112 Posts
Default

Quote:
Originally Posted by MisterBitcoin View Post
S7 has reached n=25K.
The prime-list and k´s remaining is attached.
Your k's remaining list is incorrect. For k=10M-50M there were 5143 k's remaining at n=2500. You found 4433 unique k's with primes for n=2500-25K. There should be 710 k's remaining at n=25K. Your file has 742 k's remaining.

I need for you to do two things for future submissions, especially for these large-conjectured bases:

1. Please remove all primes that are duplicates for each k. Only the smallest prime for each k should be included. This will allow you to do #2.
2. Please balance your k's remaining before posting. Take the number of k's remaining at nmin and subtract the primes found after removing duplicates in #1. That should be your number of k's remaining at nmax.

This will save me a lot of work. It looks very strange when there are more primes in the primes file than there are k's remaining at nmin.

You can prevent #1 by using the stop-on-prime option for PFGW and/or LLR. This seems to be an ongoing problem on this project and I cannot stress it enough. Your computers did a lot of extra work here.

So that you can test out your own processes, I have attached the corrected primes and k's remaining files.

Thanks.
Attached Files
File Type: txt prime-sierp-base7-10M-50M-2.5K-25K.txt (83.0 KB, 226 views)
File Type: txt remain-sierp-base7-10M-50M-25K.txt (11.1 KB, 53 views)
gd_barnes is online now   Reply With Quote
Old 2017-02-11, 11:58   #1248
rebirther
 
rebirther's Avatar
 
Sep 2011
Germany

B3A16 Posts
Default

Reserving R15 to n=400k (200-400k) (0-10M) for BOINC
rebirther is offline   Reply With Quote
Old 2017-02-11, 16:32   #1249
MisterBitcoin
 
MisterBitcoin's Avatar
 
"Nuri, the dragon :P"
Jul 2016
Good old Germany

811 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
Your k's remaining list is incorrect. For k=10M-50M there were 5143 k's remaining at n=2500. You found 4433 unique k's with primes for n=2500-25K. There should be 710 k's remaining at n=25K. Your file has 742 k's remaining.

I need for you to do two things for future submissions, especially for these large-conjectured bases:

1. Please remove all primes that are duplicates for each k. Only the smallest prime for each k should be included. This will allow you to do #2.
2. Please balance your k's remaining before posting. Take the number of k's remaining at nmin and subtract the primes found after removing duplicates in #1. That should be your number of k's remaining at nmax.

This will save me a lot of work. It looks very strange when there are more primes in the primes file than there are k's remaining at nmin.

You can prevent #1 by using the stop-on-prime option for PFGW and/or LLR. This seems to be an ongoing problem on this project and I cannot stress it enough. Your computers did a lot of extra work here.

So that you can test out your own processes, I have attached the corrected primes and k's remaining files.

Thanks.

I removed every 24 hours all primed k´s using srfile (with -d). [Thats the reason why some k´s have more than 1 prime]
The prp-tests are done by pfgw, using "-f0 -l" (logging it just for myself)
I wonder how there some solved k´s still in my remain-file.

About the "stop on prime": Whats the command for the this and will it stop the whole process or just an that k?

I gonna check if my process contains some problems whichs creates work. I´m realy sorry about that.
MisterBitcoin is offline   Reply With Quote
Old 2017-02-11, 20:06   #1250
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

2×47×101 Posts
Default

Quote:
Originally Posted by MisterBitcoin View Post
I removed every 24 hours all primed k´s using srfile (with -d).
If you change the input file's contents without stopping the running process, you will get unpredictable results. It applies to most programs: prime95, ecm, llr, pfgw, etc. Only a few programs are working in a different mode - they open file, read line #N, do the workunit, then re-open file, attempt to remove the input line (or move the "*" marker, in case of "Cyclo"). prime95 does something in between; it does not re-open the file, it deletes the line and rewrites the file (so your external changes to the file are lost).

Most programs read open files in buffered mode; they don't get notified that the file (for which they have an open file handle) changed. They only know that they've already read 4Kb (or other buffer size) from that file, and until they need more input they will not re-read. When they do, they will read from offset 4Kb. As a consequence, you can even get the program to output data for "input lines" that were never in the input file (that happens if the 4Kb boundary was in the middle of the line when you changed the file: then the line is combined from a chunk that was read before and an unrelated chunk that was read later).

Bottom line: don't use this method of input file pruning.
Batalov is offline   Reply With Quote
Old 2017-02-12, 06:50   #1251
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

29·359 Posts
Default

Quote:
Originally Posted by MisterBitcoin View Post
I removed every 24 hours all primed k´s using srfile (with -d). [Thats the reason why some k´s have more than 1 prime]
The prp-tests are done by pfgw, using "-f0 -l" (logging it just for myself)
I wonder how there some solved k´s still in my remain-file.

About the "stop on prime": Whats the command for the this and will it stop the whole process or just an that k?

I gonna check if my process contains some problems whichs creates work. I´m realy sorry about that.
If you are using PFGW, use this in the header of the sieve file:

ABC $a*7^$b+1 // {number_primes,$a,1}

If you are using LLR, use this in the llr.ini file (you don't need to change the sieve file):
StopOnPrimedK=1

Those commands in the header or .ini file will cause the programs to stop running tests for a k after a prime is found. That way you don't ever have to stop it and remove k's with primes.

Note that in most older versions of PFGW if you stop the program in the middle it will "forget" which k's have primes. I think in the newer versions it will not forget. You can experiment with it.

Once you do this, you will never go back, especially for small tests. It's a pain to constantly stop the program and remove k's from the sieve file.
gd_barnes is online now   Reply With Quote
Old 2017-03-11, 16:13   #1252
rebirther
 
rebirther's Avatar
 
Sep 2011
Germany

2·3·479 Posts
Default

R15 tested to n=400k (200-400k) (0-10M)

5 primes found, 9 remain in this range

5149158*15^249605-1
5255502*15^257491-1
3889018*15^275603-1
3347624*15^347109-1
9535278*15^375675-1

Results emailed, Base released
rebirther is offline   Reply With Quote
Old 2017-03-29, 23:24   #1253
wombatman
I moo ablest echo power!
 
wombatman's Avatar
 
May 2013

110111101012 Posts
Default

S26 is in progress and well past n=750,000 (with n=1M as the final). The remaining candidates are split into 4 files. I estimate about 4600 candidates remaining between the 4 split parts.
wombatman is offline   Reply With Quote
Old 2017-04-01, 00:45   #1254
Cruelty
 
Cruelty's Avatar
 
May 2005

23×7×29 Posts
Default status report

S10 tested till n=1.99M
R10 tested till n=1.75M
Cruelty is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Bases 33-100 reservations/statuses/primes Siemelink Conjectures 'R Us 1693 2021-08-01 08:40
Bases 101-250 reservations/statuses/primes gd_barnes Conjectures 'R Us 908 2021-08-01 07:48
Bases 251-500 reservations/statuses/primes gd_barnes Conjectures 'R Us 2304 2021-07-31 18:19
Bases 501-1030 reservations/statuses/primes KEP Conjectures 'R Us 3918 2021-07-30 17:32
Riesel base 3 reservations/statuses/primes KEP Conjectures 'R Us 1107 2021-07-26 18:37

All times are UTC. The time now is 19:12.


Sun Aug 1 19:12:42 UTC 2021 up 9 days, 13:41, 0 users, load averages: 1.81, 2.37, 2.13

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.