mersenneforum.org  

Go Back   mersenneforum.org > Great Internet Mersenne Prime Search > PrimeNet

Reply
 
Thread Tools
Old 2008-10-30, 22:45   #12
Graff
 
Graff's Avatar
 
Jul 2006
USA (UT-5) via UK (UT)

22·59 Posts
Default

Quote:
Originally Posted by mdettweiler View Post
Ah, I think that's your problem. P-1 assignments can be specified a number of different ways. First of all, the option to specify by Mersenne exponent or by k*b^n+c. For a Mersenne exponent, you'd do it like this:

Pfactor=exponent,factor_depth,is_doublecheck
or, if you'd rather specify B1/B2 yourself:
Pminus1=exponent,B1,B2
Just tried the second form. Didn't work.
Graff is offline   Reply With Quote
Old 2008-10-30, 22:57   #13
mdettweiler
A Sunny Moo
 
mdettweiler's Avatar
 
Aug 2007
USA (GMT-5)

141518 Posts
Default

Quote:
Originally Posted by Graff View Post
Just tried the second form. Didn't work.
Did you try it in the first of the two forms you quoted from my message (Pfactor=exponent,factored_depth,is_doublecheck)? I'm pretty sure that the PrimeNet server *only* assigns "automatic B1/B2" P-1 assignments, so as before with the k*b^n+c thing, it would otherwise probably consider it an invalid assignment.

(Note: I would imagine that the PrimeNet server may, in the future, use pre-chosen B1/B2 values for the "P-1 factor small" work choice option. However, that is currently "reserved for future use", so presumably it wouldn't accept such assignments for the time being.)

Last fiddled with by mdettweiler on 2008-10-30 at 22:59
mdettweiler is offline   Reply With Quote
Old 2008-10-31, 00:22   #14
Graff
 
Graff's Avatar
 
Jul 2006
USA (UT-5) via UK (UT)

22·59 Posts
Default

Quote:
Originally Posted by mdettweiler View Post
Did you try it in the first of the two forms you quoted from my message (Pfactor=exponent,factored_depth,is_doublecheck)? I'm pretty sure that the PrimeNet server *only* assigns "automatic B1/B2" P-1 assignments, so as before with the k*b^n+c thing, it would otherwise probably consider it an invalid assignment.

(Note: I would imagine that the PrimeNet server may, in the future, use pre-chosen B1/B2 values for the "P-1 factor small" work choice option. However, that is currently "reserved for future use", so presumably it wouldn't accept such assignments for the time being.)
I just tried the P-1 option in the Advanced menu. For test purposes,
I just clicked OK. Checked the worktodo.ini file and
there was an entry:

Pminus1=1,2,1061,-1,1000000,0

Went to manual communication option to report new completion
dates. Got the same error as before: "unsupported assignment work
type".

So it seems to be that the V5 server does expect (and should support)
Pminus1 lines formatted as above.
Graff is offline   Reply With Quote
Old 2008-10-31, 00:28   #15
mdettweiler
A Sunny Moo
 
mdettweiler's Avatar
 
Aug 2007
USA (GMT-5)

3×2,083 Posts
Default

Quote:
Originally Posted by Graff View Post
I just tried the P-1 option in the Advanced menu. For test purposes,
I just clicked OK. Checked the worktodo.ini file and
there was an entry:

Pminus1=1,2,1061,-1,1000000,0

Went to manual communication option to report new completion
dates. Got the same error as before: "unsupported assignment work
type".

So it seems to be that the V5 server does expect (and should support)
Pminus1 lines formatted as above.
Hmm...interesting. Maybe the P-1 option in the Advanced menu is intended primarily for non-PrimeNet work?

At any rate, I would imagine that PrimeNet v5 *should* accept "Pminus1=exponent,b1,b2" format lines, at least (if not Pminus1=k,b,n,c,b1,b2 lines, also)--a very useful application of this that comes to mind would be for extending the P-1 bounds on lower exponents that have not yet been factored.

Oh, wait, I just thought of something: maybe PrimeNet will support the Pminus1= lines once the "P-1 small" work choice (currently reserved for "future use") has been made available? In the meantime, maybe it really does only accept Pfactor= lines (which can't be entered through the Advanced menu)?
mdettweiler is offline   Reply With Quote
Old 2008-11-01, 00:07   #16
Graff
 
Graff's Avatar
 
Jul 2006
USA (UT-5) via UK (UT)

22·59 Posts
Default

Quote:
Originally Posted by mdettweiler View Post
Hmm...interesting. Maybe the P-1 option in the Advanced menu is intended primarily for non-PrimeNet work?
That's probably true...

Quote:
Originally Posted by mdettweiler View Post
At any rate, I would imagine that PrimeNet v5 *should* accept "Pminus1=exponent,b1,b2" format lines, at least (if not Pminus1=k,b,n,c,b1,b2 lines, also)--a very useful application of this that comes to mind would be for extending the P-1 bounds on lower exponents that have not yet been factored.
Apparently, the k,b,n,c,B1,B2 form does work. I forgot to delete a
worktodo.add file on one of my machines last night and was surprised
this morning to find one core working on the P-1 job I had been testing
out (no, it wasn't M1061...).
The prime.log file still shows "unsupported assignment work type" and
the P-1 job didn't show up in my V5 assignments.
But the job completed and the credit showed up in my V5 results and
in my stats.
Graff is offline   Reply With Quote
Old 2008-11-01, 00:50   #17
mdettweiler
A Sunny Moo
 
mdettweiler's Avatar
 
Aug 2007
USA (GMT-5)

3·2,083 Posts
Default

Quote:
Originally Posted by Graff View Post
Apparently, the k,b,n,c,B1,B2 form does work. I forgot to delete a
worktodo.add file on one of my machines last night and was surprised
this morning to find one core working on the P-1 job I had been testing
out (no, it wasn't M1061...).
The prime.log file still shows "unsupported assignment work type" and
the P-1 job didn't show up in my V5 assignments.
But the job completed and the credit showed up in my V5 results and
in my stats.
Hmm...I guess that does work after all. Glad you finally got it to work (at least somewhat)! Just curious, though, did you actually see the newly completed P-1 job show up in the "Factoring Limits" report page?

Last fiddled with by mdettweiler on 2008-11-01 at 00:50
mdettweiler is offline   Reply With Quote
Old 2008-11-01, 01:49   #18
Graff
 
Graff's Avatar
 
Jul 2006
USA (UT-5) via UK (UT)

22·59 Posts
Default

Quote:
Originally Posted by mdettweiler View Post
Hmm...I guess that does work after all. Glad you finally got it to work (at least somewhat)! Just curious, though, did you actually see the newly completed P-1 job show up in the "Factoring Limits" report page?
Yup! It shows up in the Factoring Limits and Exponent Status page.
Graff is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Feromant_CUDA: worktodo file feromant FermatSearch 1 2017-07-13 16:25
Error in Worktodo file GARYP166 Information & Answers 34 2009-11-30 16:35
WorkToDo File storm5510 Software 9 2009-08-18 00:18
N/A in my worktodo.txt file? uigrad PrimeNet 13 2008-11-10 13:12
worktodo.ini clowns789 Software 7 2003-10-21 03:57

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


Tue Jul 27 08:16:47 UTC 2021 up 4 days, 2:45, 0 users, load averages: 1.64, 1.84, 1.78

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.