mersenneforum.org  

Go Back   mersenneforum.org > Factoring Projects > Cunningham Tables

Reply
 
Thread Tools
Old 2007-12-12, 08:34   #23
smh
 
smh's Avatar
 
"Sander"
Oct 2002
52.345322,5.52471

4A516 Posts
Default

also taking 3M - 4M
smh is offline   Reply With Quote
Old 2007-12-12, 09:09   #24
xilman
Bamboozled!
 
xilman's Avatar
 
"π’‰Ίπ’ŒŒπ’‡·π’†·π’€­"
May 2003
Down not across

47×229 Posts
Default

Quote:
Originally Posted by JHansen View Post
If you have a cat, grep and tail available you can do

Code:
cat *.cand | grep e-13 | sort -k 10 | tail
to automagically retrieve the lines containing the ten highest scores.

--
Cheers,
Jes
That is almost the same command that I used when searching for the latest polynomial, but with these changes:

Code:
cat *.cand | grep '_E ' | sort -n -k 10 | tail
Then if the Murphy_E goes over a power of ten (from 9e-13 to 1e-12 say), youu don't miss the larger values.


Paul
xilman is offline   Reply With Quote
Old 2007-12-12, 09:37   #25
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

2×132×19 Posts
Default

Quote:
Then if the Murphy_E goes over a power of ten (from 9e-13 to 1e-12 say), you don't miss the larger values.
In that case you want -g not -n; with just -n, 9e-13 sorts as greater than 1e-12.
fivemack is offline   Reply With Quote
Old 2007-12-13, 18:41   #26
Andi47
 
Andi47's Avatar
 
Oct 2004
Austria

2·17·73 Posts
Default

Taking 10M to 12M. (the very first thing I will do with GGNFS)

P.S.: Beginner's question: What do the -p and -n options do?

Last fiddled with by Andi47 on 2007-12-13 at 18:52 Reason: Extended my range to 12M - some work for a second CPU
Andi47 is offline   Reply With Quote
Old 2007-12-13, 20:34   #27
jasonp
Tribal Bullet
 
jasonp's Avatar
 
Oct 2004

3×1,181 Posts
Default

Quote:
Originally Posted by Andi47 View Post
P.S.: Beginner's question: What do the -p and -n options do?
-p specifies the number of factors in the high-order coefficient of the rational polynomial. -n specifies the largest norm allowed for polynomials that are generated. Notice that pol51opt has a smaller value for -n, because the first stage generates a huge number of somewhat good polynomials but the standards are higher when the polynomials are allowed to be optimized like pol51opt does.

This is a common problem with searching in general: you want to break things up such that each stage gets rid of the vast majority of choices, but every choice that's ignored could possibly have become much better if you stuck with it and tried to optimize it (which is expensive). One reason the polynomial selection tools run so fast is that the value of -n given to them is extremely stringent, so that very nearly nothing survives the first stage. Making -n a little bit bigger can give 100x the amount of output.

For example, when searching for a polynomial for a C100 the first stage runs in 5 seconds and the second stage runs in 30 seconds when using the recommended value of -n. Given that the sieving will take 4-8 hours, it would be nice to spend maybe 10 minutes instead of .5 minutes, looking for a better polynomial.

Last fiddled with by jasonp on 2007-12-13 at 20:38
jasonp is offline   Reply With Quote
Old 2007-12-13, 20:50   #28
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

2×132×19 Posts
Default

I picked the -n value for pol51m0b so that it would produce a comfortable number of outputs: I'd run a small search with -n 2e25, which produced several megabytes of output from a range of length 1000, ran polopt, then checked that a smaller value of -n gave a more reasonable number of outputs and hadn't killed off all the good hits from the larger n.

The parameters in polopt were again picked so that it ran at about the same speed as pol51m0b, with the Murphy value picked as the score for about the tenth-best polynomial coming out of a smallish run.

Anyone got 6e-13 or higher yet?
fivemack is offline   Reply With Quote
Old 2007-12-13, 20:52   #29
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

2·132·19 Posts
Default

Quote:
Originally Posted by Andi47 View Post
Taking 10M to 12M. (the very first thing I will do with GGNFS)
Just a little note: I will usually see reservations made here, but if you make them on the factoring-forum thread

http://www.mersenneforum.org/showthread.php?t=9730

then I can summarise them all in a convenient table and delete them, to make the thread tidier when the archivists from the planet Yammel come around in the twenty-ninth century to admire it. I thought asking the gerbils for editing power on one forum was already sufficiently presumptuous.
fivemack is offline   Reply With Quote
Old 2007-12-16, 11:27   #30
Andi47
 
Andi47's Avatar
 
Oct 2004
Austria

2·17·73 Posts
Default

Quote:
Originally Posted by fivemack View Post
I picked the -n value for pol51m0b so that it would produce a comfortable number of outputs: I'd run a small search with -n 2e25, which produced several megabytes of output from a range of length 1000, ran polopt, then checked that a smaller value of -n gave a more reasonable number of outputs and hadn't killed off all the good hits from the larger n.

The parameters in polopt were again picked so that it ran at about the same speed as pol51m0b, with the Murphy value picked as the score for about the tenth-best polynomial coming out of a smallish run.

Anyone got 6e-13 or higher yet?
I have found a nice poly at 6.74e-13 - posted in the factoring forum thread.

P.S.: With some good polynomials reported at >6e-13, it would be sufficient to set -e 6e-13 or so in the poly51opt line?
Andi47 is offline   Reply With Quote
Old 2007-12-16, 14:49   #31
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

2×132×19 Posts
Default

6.74e-13 is very impressive.

Yes, it would be fine to set -e 6e-13, but all it'll do is make the .cand file shorter rather than speeding up the run. I quite like setting the threshold so that the .cand file grows by a few lines an hour, so I know where everything's got up to at any moment.

I would be interested to see what the shape of the distribution of E-values both in absolute terms and as a function of x5 looks like, for which the smaller filter value is useful - if people have kept their .cand files, could I ask them to mail them (compressed) to tom@womack.net

Last fiddled with by akruppa on 2007-12-16 at 20:13 Reason: gentleman's email address restored
fivemack is offline   Reply With Quote
Old 2007-12-16, 15:59   #32
Andi47
 
Andi47's Avatar
 
Oct 2004
Austria

2·17·73 Posts
Default

Quote:
Originally Posted by fivemack View Post
Yes, it would be fine to set -e 6e-13, but all it'll do is make the .cand file shorter rather than speeding up the run.
Making the .cand file shorter was exactly my intention with suggesting -e 6e-13.

Quote:
I quite like setting the threshold so that the .cand file grows by a few lines an hour, so I know where everything's got up to at any moment.

I would be interested to see what the shape of the distribution of E-values both in absolute terms and as a function of x5 looks like, for which the smaller filter value is useful - if people have kept their .cand files, could I ask them to mail them (compressed) to tom (Γ€t) womack (dot) net
OK, I will keep -e 4.5e-13. If you want, I can mail the zipped .cand files to you as soon as they are finished. (currently pol51opt is at ~70% for 11-12M and at ~11% for 10-11M, doing these ranges on two different nodes.)

P.S.: You should obscure your mail address to avoid massive spam (spambots).

Last fiddled with by Andi47 on 2007-12-16 at 16:00
Andi47 is offline   Reply With Quote
Old 2007-12-16, 16:24   #33
xilman
Bamboozled!
 
xilman's Avatar
 
"π’‰Ίπ’ŒŒπ’‡·π’†·π’€­"
May 2003
Down not across

47·229 Posts
Default

Quote:
Originally Posted by Andi47 View Post
P.S.: You should obscure your mail address to avoid massive spam (spambots).
OTOH, just get an efficient spam filter to read your mail for you. That way you get benefit from easy accessibility to your intended correspondents.

However, it does assume that the marginal cost of the bandwidth and cpu caused by the spam is minimal. It is for me, but YMMV.

Paul
xilman is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Large Sequence Project direction henryzz Aliquot Sequences 17 2013-08-09 00:15
Year Over Year TF Progress petrw1 Factoring 3 2013-03-20 19:34
Top 10 GMP-ECM for the year bdodson GMP-ECM 142 2013-03-01 12:54
What year is it? E_tron Lounge 3 2004-12-31 13:43
1 Year QuintLeo Lounge 14 2003-11-14 07:56

All times are UTC. The time now is 08:14.


Tue Jul 27 08:14:27 UTC 2021 up 4 days, 2:43, 0 users, load averages: 2.41, 1.93, 1.80

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.