mersenneforum.org  

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

Reply
 
Thread Tools
Old 2020-04-01, 00:15   #1651
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

101·103 Posts
Default

Quote:
Originally Posted by rogue View Post
The range was sieved (not by me) slightly above 25000, but I don't know the limit. It might have been 25050 or 25100, but since I didn't do the sieving, I don't know what the max n was. If there are primes above 25000, why can't you use them? If you want, I'll try to remove those n from the remaining tests I have.

As for the duplicates, that is possible. There were times that pfgw was stopped abnormally, but when restarted had an invalid ini file. It is likely that caused the problem as it didn't restart in the correct place. I have never been able to track down the cause of that issue to get it resolved. I'll check the future ranges for duplicates before I sent them.

I will grab the primes you mentioned to remove those k from testing, but it is likely that I already tested some of them. I'll endeavor to remove those k from future submissions.

OK thanks for any cleanup that you can do.

I could choose to use the primes for n>25K but not only do I not know the exact search depth I don't know if all or part of the ranges were searched to that depth. For a base this big I'll choose to keep it cleaner.

Why not use LLR instead of PFGW? That's what I use for base 3. LLR's StopOnPrime option never forgets k's found prime on restarts.

Last fiddled with by gd_barnes on 2020-04-01 at 00:15
gd_barnes is online now   Reply With Quote
Old 2020-04-01, 12:21   #1652
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24·397 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
OK thanks for any cleanup that you can do.

I could choose to use the primes for n>25K but not only do I not know the exact search depth I don't know if all or part of the ranges were searched to that depth. For a base this big I'll choose to keep it cleaner.

Why not use LLR instead of PFGW? That's what I use for base 3. LLR's StopOnPrime option never forgets k's found prime on restarts.
Since I maintain pfgw, I tend to use it over llr with the number_primes option. Most of the remaining ranges are being tested with PRPNet, but I had to make some updates to PRPNet to handle a large number of conjectures on a single server when using the onekperclient option. The PRPNet clients will use llr for this form. I have 32 ranges left, 26 of which will be tested using PRPNet. I can do one of those ranges in less than 10 days. Those ranges won't have duplicates, but I do have to eliminate the k with primes per the other post.
rogue is offline   Reply With Quote
Old 2020-04-01, 14:14   #1653
KEP
Quasi Admin Thing
 
KEP's Avatar
 
May 2005

3C616 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
Why not use LLR instead of PFGW? That's what I use for base 3. LLR's StopOnPrime option never forgets k's found prime on restarts.
It is my experience, especially since base 3 is very primeproductive, that at some point the advantages LLR has towards PFGW is somewhat partially or fully eliminated due to the constant reading and writing of a new .ini file for LLR. LLR writes a new .ini file for each new line it handles in the inputfile and PFGW appears to write once every minute. Things might have changed, but it might be worth investigating wich program actually does best for such small n test - even though PFGW tent to be 15% slower per test - because PFGW might actually do better compared to LLR, especially as the amount of primes grow, due to the smaller .ini file
KEP is offline   Reply With Quote
Old 2020-04-01, 15:25   #1654
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24·397 Posts
Default

Quote:
Originally Posted by KEP View Post
It is my experience, especially since base 3 is very primeproductive, that at some point the advantages LLR has towards PFGW is somewhat partially or fully eliminated due to the constant reading and writing of a new .ini file for LLR. LLR writes a new .ini file for each new line it handles in the inputfile and PFGW appears to write once every minute. Things might have changed, but it might be worth investigating wich program actually does best for such small n test - even though PFGW tent to be 15% slower per test - because PFGW might actually do better compared to LLR, especially as the amount of primes grow, due to the smaller .ini file
That is correct. pfgw writes to the ini file once per minute.
rogue is offline   Reply With Quote
Old 2020-04-01, 16:00   #1655
VBCurtis
 
VBCurtis's Avatar
 
"Curtis"
Feb 2005
Riverside, CA

28×19 Posts
Default

KEP's point makes sense when the tests are really fast, but his "at some point" has it backward- at some exponent value, the LLR test takes more than a minute each, so for any n larger than that value LLR is writing to the ini file less than once a minute and thus less than PFGW.

I thought this was among the many reasons PFGW is often used for new-base work and small tests, while LLR is strongly favored for large-test work.
VBCurtis is offline   Reply With Quote
Old 2020-04-01, 17:56   #1656
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24×397 Posts
Default

I have gone thru the list of primes and the list of candidates to be tested and have removed all n > 25000 and all k which have a prime per post 1631. Future submissions from me for this base should be clean. I tried to be careful so as to avoid making mistakes.
rogue is offline   Reply With Quote
Old 2020-04-01, 18:58   #1657
KEP
Quasi Admin Thing
 
KEP's Avatar
 
May 2005

2×3×7×23 Posts
Default

Quote:
Originally Posted by VBCurtis View Post
KEP's point makes sense when the tests are really fast, but his "at some point" has it backward- at some exponent value, the LLR test takes more than a minute each, so for any n larger than that value LLR is writing to the ini file less than once a minute and thus less than PFGW.
I assumed that Gary was actually doing small base 3 tests.

You are correct, the value of the exponent does in fact matter. But for n<50K and maybe n<100K for base 3, I would think that PFGW is the fastest alternative, simply because the input/output read/write of the .ini file takes too long as the ini file grows due to the growing number of primed k's. But as always, just like with multithreading and everything else that is somewhat system dependant, test locally and figure out what actually is most optimal program to use. And yes, one of the reason PFGW is used for starting up bases is among other features, the reason that PFGW writes once a minute (Thanks Mark for clearing that) in stead of several times a second, when doing very small tests
KEP is offline   Reply With Quote
Old 2020-04-01, 19:29   #1658
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

101×103 Posts
Default

I was doing small base 3 tests (n=25K-50K). I did not know there was much time difference between the two. Anyway I still prefer LLR because I am stopping the programs frequently to do other stuff and I don't want to have to worry about whether the program will "lose" the knowledge that previous primes were found.
gd_barnes is online now   Reply With Quote
Old 2020-04-02, 02:57   #1659
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24·397 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
I was doing small base 3 tests (n=25K-50K). I did not know there was much time difference between the two. Anyway I still prefer LLR because I am stopping the programs frequently to do other stuff and I don't want to have to worry about whether the program will "lose" the knowledge that previous primes were found.
When using number_primes with pfgw, it will read pfgw.log and avoid candidates that could be filtered by those primes. At least that is the way it is supposed to work.

I use srsieve2 to reformat the output as ascending k then ascending n. It makes it a lot easier to work with the input file and it allows one to compute a better estimate as to when processing of the file will be completed.
rogue is offline   Reply With Quote
Old 2020-05-01, 09:18   #1660
pepi37
 
pepi37's Avatar
 
Dec 2011
After milion nines:)

144810 Posts
Default Progress update

K4 S53 at 1.575M
pepi37 is online now   Reply With Quote
Old 2020-05-07, 12:35   #1661
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24×397 Posts
Default

Here is the next batch of R66 primes. All k thru 44451283 are tested to n=25000.
Attached Files
File Type: 7z r66_primes.7z (42.5 KB, 180 views)
rogue is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Riesel base 3 reservations/statuses/primes KEP Conjectures 'R Us 1107 2021-07-26 18:37
Bases 501-1030 reservations/statuses/primes KEP Conjectures 'R Us 3913 2021-07-26 09:58
Bases 251-500 reservations/statuses/primes gd_barnes Conjectures 'R Us 2300 2021-07-25 07:38
Bases 6-32 reservations/statuses/primes gd_barnes Conjectures 'R Us 1397 2021-07-25 07:07
Bases 101-250 reservations/statuses/primes gd_barnes Conjectures 'R Us 905 2021-07-18 16:55

All times are UTC. The time now is 09:51.


Tue Jul 27 09:51:55 UTC 2021 up 4 days, 4:20, 0 users, load averages: 2.34, 2.20, 2.03

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.