![]() |
|
|
#826 |
|
May 2007
Kansas; USA
1041410 Posts |
I got the results (residues) file but not a primes file. The file is too large for me to easily extract the primes. I will need a separate file.
|
|
|
|
|
|
#827 |
|
Jun 2009
68410 Posts |
|
|
|
|
|
|
#828 | |
|
A Sunny Moo
Aug 2007
USA (GMT-5)
186916 Posts |
Quote:
In this case, the command to extract prime results from an LLR results file is: Code:
grep prime! results_file.txt > primes_file.txt If you want just the prime numbers themselves, and not the full line e.g. "k*b^n+c is prime! Time : 0.0 sec.", then use this command instead: Code:
grep prime! results_file.txt | cut -f1 -d ' ' > primes_file.txt Grep and cut are very fast programs, so this technique will scale for even the largest files. (Unlike using find/replace in a text editor, they can work on the file as a "stream", rather than having to load the whole thing into memory and write it back out, which is the bottleneck with that approach.) |
|
|
|
|
|
|
#829 |
|
May 2007
Kansas; USA
2·41·127 Posts |
I would prefer to get the primes file instead of having to create it from a large file. I'd rather not add any more admin time to things.
|
|
|
|
|
|
#830 | |
|
Jun 2009
10101011002 Posts |
Quote:
The primes file is attached. |
|
|
|
|
|
|
#831 |
|
Sep 2011
Germany
26×32×5 Posts |
R3 tested to n=200k (150-200k) (2.147-4G)
454 primes found, 1721 remain in this range Results emailed, Base released |
|
|
|
|
|
#832 |
|
Sep 2011
Germany
26×32×5 Posts |
Reserving R3 to n=500k (300-500k) (4-6G) for BOINC
|
|
|
|
|
|
#833 |
|
Jun 2009
68410 Posts |
I do not understand the following LLR output:
My input looks like this: Code:
23566399112 59508 -1 23566399112 59543 -1 23566399112 59568 -1 Code:
23566399112*3^59508-1 is not prime. RES64: DBDD7F48F65B3879. OLD64: A7B882071AD77B5A Time : 9.327 sec.
Iter: 94407/94407, ERROR: ROUND OFF (0.5) > 0.4
Continuing from last save file.
Unrecoverable error, Restarting with next larger FFT length...
U((N+1)/3) is coprime to N!
Time : 58.448 sec.
23566399112*3^59568-1 is not prime. RES64: B3A7CCFC753017E5. OLD64: 1AF766F55F9047AC Time : 9.324 sec.
Thanks Peter |
|
|
|
|
|
#834 |
|
Sep 2011
Germany
1011010000002 Posts |
23566399112*3^59543-1 is prime! (28420 decimal digits, P = 3) Time : 15.033 sec. (i7-4930k)
|
|
|
|
|
|
#835 |
|
"Mark"
Apr 2003
Between here and the
635610 Posts |
I suggest that you send Jean a note to see why LLR didn't output the results to the screen.
|
|
|
|
|
|
#836 |
|
Jun 2009
22·32·19 Posts |
k=23G to 25G, n=25k to 100k done. Uploading to sendspace right now
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Bases 33-100 reservations/statuses/primes | Siemelink | Conjectures 'R Us | 1694 | 2021-08-06 20:41 |
| Bases 6-32 reservations/statuses/primes | gd_barnes | Conjectures 'R Us | 1398 | 2021-08-06 12:49 |
| Bases 251-500 reservations/statuses/primes | gd_barnes | Conjectures 'R Us | 2305 | 2021-08-04 15:09 |
| Bases 101-250 reservations/statuses/primes | gd_barnes | Conjectures 'R Us | 908 | 2021-08-01 07:48 |
| Sierp base 3 reservations/statuses/primes | gd_barnes | Conjectures 'R Us | 388 | 2020-10-21 19:42 |