mersenneforum.org

mersenneforum.org (https://www.mersenneforum.org/index.php)
-   Msieve (https://www.mersenneforum.org/forumdisplay.php?f=83)
-   -   Polynomial selection stage question (https://www.mersenneforum.org/showthread.php?t=13681)

rawbinary 2010-08-02 04:25

Polynomial selection stage question
 
Hello.
I'm trying to factor 154 digits number using python driver for GGNFS and MSIEVE. I'm also using GPU version of msieve on GeForce 470 GTX. Unfortunately I can run it only 14 hours in a day. But msieve sets time limit of polynomial selection to 287.50 hours.
To move to next stage I should get ".fb" file, that msieve generates at end of poly-selection. However I have ran msieve in a while some hours and got "project.dat.p" file with intermediate results.
So can I make up own ".fb"-file by hands based on best e-value from "project.dat.p" or this privilege given only to msieve?
My project.dat.p file: [URL]http://paste2.org/p/935980[/URL]

Batalov 2010-08-02 06:20

I had a similar problem.
Here's a possible solution - [URL="http://www.microsoft.com/technet/sysinternals/utilities/ProcessExplorer.mspx"]ProcessExplorer[/URL]
It lets you put your process to sleep for the day and then wake it up when you are leaving for the night.

[SIZE=1]You can also suspend that pesky M$oft dialog "You have not rebooted your computer since the last update: reboot now / reboot later" that jumps out every few minutes and sooner a later gets under your mouse click.[/SIZE]

Batalov 2010-08-02 06:25

You can also find the best poly so far by doing

[FONT=Fixedsys]grep -n alp dat.p | sort +6rg | head
261:# norm 5.449549e-015 alpha -6.140948 e 3.020e-012
231:# norm 5.088774e-015 alpha -5.937988 e 2.892e-012[/FONT]

#-> that shows that your best polynomial start at line 261

Then do
[FONT=Fixedsys]tail +261 dat.p | head[/FONT]
and add it to your .poly file

jasonp 2010-08-02 12:10

[QUOTE=Batalov;223656]You can also suspend that pesky M$oft dialog "You have not rebooted your computer since the last update: reboot now / reboot later" that jumps out every few minutes and sooner a later gets under your mouse click.[/QUOTE]
Slightly off-topic, but this is also controlled by a registry entry that you can edit if you have administrative privileges on the machine. If not, you can always drag the window so that only its title bar is visible on your desktop; the warning is only repeated if you do something to the dialog box, so this will stop it annoying you temporarily.

Random Poster 2010-08-02 22:12

[quote=jasonp;223671]Slightly off-topic, but this is also controlled by a registry entry that you can edit if you have administrative privileges on the machine. If not, you can always drag the window so that only its title bar is visible on your desktop; the warning is only repeated if you do something to the dialog box, so this will stop it annoying you temporarily.[/quote]
Or you could just turn off automatic updates. There's not much point of getting updates if you aren't willing to reboot (or shut down) the computer afterwards, and updates are only released once per month so downloading them manually shouldn't be too difficult.

frmky 2010-08-02 22:49

Should I worry about "error: size score computation failed" messages? I got two in the last run.

On a 178.6-digit number (i.e., log[SUB]10[/SUB](N) = 178.6) I found the following polynomial scores after about 5 days x 4 GPUs = 20 GPU-days using Telsa C1060's:

# norm 1.307908e-17 alpha -8.505804 e 7.968e-14 rroots 3
# norm 1.182218e-17 alpha -8.638512 e 7.515e-14 rroots 3
# norm 1.164100e-17 alpha -8.585526 e 7.442e-14 rroots 3
# norm 1.252224e-17 alpha -8.335315 e 7.438e-14 rroots 3
# norm 1.076992e-17 alpha -8.016579 e 7.060e-14 rroots 3
# norm 1.060567e-17 alpha -7.846450 e 6.966e-14 rroots 5
# norm 1.065377e-17 alpha -7.716075 e 6.936e-14 rroots 5
# norm 1.061400e-17 alpha -8.249336 e 6.926e-14 rroots 5

How do these compare to your expectations?

jasonp 2010-08-02 23:00

I've gone to a lot of trouble to get rid of those errors, but I guess they still crop up very rarely. It just means the code aborted two polynomials because the numerical integrator couldn't converge

Batalov 2010-08-02 23:03

Ah, the famous "crap" got a new name?

frmky 2010-08-02 23:07

[QUOTE=jasonp;223761]I've gone to a lot of trouble to get rid of those errors, but I guess they still crop up very rarely. It just means the code aborted two polynomials because the numerical integrator couldn't converge[/QUOTE]

No worries. If you want to look into it, the number was 2,1195+ and I believe this is the line from the msieve.dat.m file:
17400 16121870647111176931 74778552341263563683890185954076125

The full errors were
integrator failed 2.031708e-21 6.429909e-25
error: size score computation failed
integrator failed 8.527355e-23 6.756194e-25
error: size score computation failed

jasonp 2010-08-02 23:09

[QUOTE=Batalov;223764]Ah, the famous "crap" got a new name?[/QUOTE]
This annoyance predates the GPU code; actually I hope one of jrk's patches removed the crap for good.

Greg: thanks, I'll try to find out what exploded here. Actually this is the first report of an integration error in a long time.

jrk 2010-08-02 23:14

[QUOTE=frmky;223758]On a 178.6-digit number (i.e., log[SUB]10[/SUB](N) = 178.6) I found the following polynomial scores after about 5 days x 4 GPUs = 20 GPU-days using Telsa C1060's:

# norm 1.307908e-17 alpha -8.505804 e 7.968e-14 rroots 3
# norm 1.182218e-17 alpha -8.638512 e 7.515e-14 rroots 3
# norm 1.164100e-17 alpha -8.585526 e 7.442e-14 rroots 3
# norm 1.252224e-17 alpha -8.335315 e 7.438e-14 rroots 3
# norm 1.076992e-17 alpha -8.016579 e 7.060e-14 rroots 3
# norm 1.060567e-17 alpha -7.846450 e 6.966e-14 rroots 5
# norm 1.065377e-17 alpha -7.716075 e 6.936e-14 rroots 5
# norm 1.061400e-17 alpha -8.249336 e 6.926e-14 rroots 5[/QUOTE]
I'd say anything above about 7.7e-14 for a number that size is pretty nice.

jrk 2010-08-02 23:22

[QUOTE=Batalov;223764]Ah, the famous "crap" got a new name?[/QUOTE]
No, this is not the same thing. Hopefully the "crap" should be gone as of 1.46 (it was a thread synchronization issue in the GPU kernel). Let us know if you see it happen again.

Batalov 2010-08-02 23:41

The 7.97e-14 flare was [I]very[/I] nice.

I would drop this search because it is so good and go to your other three gnfs's, maybe? Some of them may take the natural term of your life to select... /paraphrasing the Beautiful Mind quote/
[SIZE=1]...at least my life and at least with my ancient card.[/SIZE]


All times are UTC. The time now is 23:25.

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