![]() |
|
|
#859 | |
|
Oct 2011
7·97 Posts |
Quote:
Looks like it is a good idea to both expand the P-1 bounds AND extend the TF a few extra bits in finding factors in the lower ranges. So, if an exponent was P-1'd to say 30000/600000 and you want to extend it to 85000/1500000, is there a 'shortcut' to extending it or does it still have to do all the work again? |
|
|
|
|
|
|
#860 | |
|
"James Heinrich"
May 2004
ex-Northern Ontario
11×311 Posts |
Quote:
Short answer: If you're planning to methodically work P-1 to progressively higher bounds it can be done somewhat efficiently to minimize wasted work, but it's not particularly easy. If you want to redo P-1 that someone else did but to higher bounds, then you're out of luck, just start fresh. |
|
|
|
|
|
|
#861 |
|
Oct 2011
7·97 Posts |
I kind of had that feeling from what I had read, thank you for clarifying lt for me.
|
|
|
|
|
|
#862 |
|
"Åke Tilander"
Apr 2011
Sandviken, Sweden
2×283 Posts |
undoc.txt
"By default P-1 work does not delete the save files when the work unit completes. This lets you run P-1 to a higher bound at a later date. You can force the program to delete save files by adding this line to prime.txt: KeepPminus1SaveFiles=0" I am a little confused by this information in undoc.txt. I think that by default the P-1 save files are deleted? At least I cannot find any save files from my completed P-1s. If I want to keep all save files should I add: "KeepPminus1SaveFiles=1" Can this variable (KeepPminus1SaveFiles) have other values then 0, 1 and if so what is the significance of the other values? |
|
|
|
|
|
#863 |
|
"James Heinrich"
May 2004
ex-Northern Ontario
11·311 Posts |
Before v26(?) it was normal that the savefiles are deleted after the assignment is complete. Since v26.? the KeepPminus1SaveFiles option has been added, with the default value of keeping the savefiles; if you don't want to keep them you should add KeepPminus1SaveFiles=1 to prime.txt
It's an on/off switch (1 means they're kept, 0 means they're deleted), no other values make sense. |
|
|
|
|
|
#864 | |
|
"Mark"
Feb 2003
Sydney
10001111012 Posts |
Quote:
Code:
Pfactor=k,b,n,c,how_far_factored,num_primality_tests_saved Pminus1=k,b,n,c,B1,B2 for example Pfactor=1,2,2700067,-1,61,10 Pminus1=1,2,2700067,-1,150000,3000000 I think the KeepPminus1SaveFiles option must apply to p-1 work done with Pminus1 lines, not Pfactor lines. My prime.txt files do not have "KeepPminus1SaveFiles" in them, I have Pfactor lines, and the save files go away when the work is done. A long time ago I tried using Pminus1 lines and I had to delete the save files manually. |
|
|
|
|
|
|
#865 |
|
Romulan Interpreter
Jun 2011
Thailand
72×197 Posts |
Copy/Paste typo?
Last fiddled with by LaurV on 2011-11-15 at 14:06 |
|
|
|
|
|
#866 |
|
"James Heinrich"
May 2004
ex-Northern Ontario
11·311 Posts |
|
|
|
|
|
|
#867 | |
|
"James Heinrich"
May 2004
ex-Northern Ontario
65358 Posts |
Quote:
http://mersenne-aries.sili.net/6853967 http://mersenne-aries.sili.net/6854297 |
|
|
|
|
|
|
#868 |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
1C3516 Posts |
Those exponents are too close to be a coincidence. Probably somebody was running P95 with hardware errors. (Now that I think about it, how much does P95 in terms of error catching for non LL work?)
|
|
|
|
|
|
#869 |
|
Oct 2011
2A716 Posts |
Might not be hardware error, if you look at the P-1 work done in the lower ranges, you'll see some completed to 85K/1.5M while others are 30K/30K. If someone new started doing P-1 work with not much memory available, they'd probably have gotten several exponents in a row and not have done good P-1 work.
|
|
|
|