mersenneforum.org  

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

Closed Thread
 
Thread Tools
Old 2013-02-22, 05:01   #529
flashjh
 
flashjh's Avatar
 
"Jerry"
Nov 2011
Vancouver, WA

21438 Posts
Default

So, why <option value="9"> and not <option value="5">?
flashjh is offline  
Old 2013-02-22, 13:37   #530
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

33×192 Posts
Default

Quote:
Originally Posted by flashjh View Post
So, why <option value="9"> and not <option value="5">?
#5 was already in use on the DCTF form for "No P-1 done".

And since HTML options don't have to be linear and I wanted the same number to mean the same thing for both LLTF and DCTF, I figured #9 allowed me room for future expansion.
chalsall is offline  
Old 2013-02-22, 14:08   #531
swl551
 
swl551's Avatar
 
Aug 2012
New Hampshire

23·101 Posts
Default

Quote:
Originally Posted by chalsall View Post
#5 was already in use on the DCTF form for "No P-1 done".

And since HTML options don't have to be linear and I wanted the same number to mean the same thing for both LLTF and DCTF, I figured #9 allowed me room for future expansion.
I already wrote code to deal with the non-linear mapping so changing it now would be a $750.00 rework fee.
swl551 is offline  
Old 2013-02-23, 03:51   #532
swl551
 
swl551's Avatar
 
Aug 2012
New Hampshire

23·101 Posts
Default I hope to have a MISFIT release out by Sunday afternoon.

Just gotta get out of Boston before the next freaking snow storm ****tomorrow**** and get back to my development PC.

Last fiddled with by swl551 on 2013-02-23 at 03:53
swl551 is offline  
Old 2013-02-23, 06:16   #533
flashjh
 
flashjh's Avatar
 
"Jerry"
Nov 2011
Vancouver, WA

1,123 Posts
Default

Quote:
Originally Posted by chalsall View Post
#5 was already in use on the DCTF form for "No P-1 done".

And since HTML options don't have to be linear and I wanted the same number to mean the same thing for both LLTF and DCTF, I figured #9 allowed me room for future expansion.
I was mostly poking fun, but that certianly makes sense
flashjh is offline  
Old 2013-02-23, 21:06   #534
swl551
 
swl551's Avatar
 
Aug 2012
New Hampshire

23×101 Posts
Default

Quote:
Originally Posted by chalsall View Post
#5 was already in use on the DCTF form for "No P-1 done".

And since HTML options don't have to be linear and I wanted the same number to mean the same thing for both LLTF and DCTF, I figured #9 allowed me room for future expansion.
How do I confirm my test fetch actually executed a #9 fetch? (beyond seeing the outbound POST data)

Last fiddled with by swl551 on 2013-02-23 at 21:20
swl551 is offline  
Old 2013-02-23, 21:43   #535
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

33·192 Posts
Default

Quote:
Originally Posted by swl551 View Post
How do I confirm my test fetch actually executed a #9 fetch? (beyond seeing the outbound POST data)
Code:
+---------------------+-------------------------------------------------------------------------------------------------------------+
| Noted               | Note                                                                                                        |
+---------------------+-------------------------------------------------------------------------------------------------------------+
| 2013-02-23 21:02:55 | LF(9) -- N:    5 G:   25 P: 74 L:      5000 H:    888888 -- n:  100 p: 73 l:  57000000 h:  65000000 -- A: 2 | 
| 2013-02-23 21:27:32 | LF(9) -- N:    5 G:    5 P: 68 L:         0 H: 100000000 -- n:  100 p: 71 l:         0 h: 100000000 -- A: 2 | 
| 2013-02-23 21:35:53 | LF(9) -- N:    5 G:    0 P: 73 L:         0 H: 100000000 -- n:    5 p: 73 l:  57000000 h:  65000000 -- A: 5 | 
| 2013-02-23 21:27:51 | LF(9) -- N:    5 G:    0 P: 68 L:         0 H: 100000000 -- n:    5 p: 71 l:         0 h: 100000000 -- A: 5 | 
+---------------------+-------------------------------------------------------------------------------------------------------------+
Values submitted by the client with the POST request: LF (LLTF), (Option), N: Number, G: GHzDays, P: Pledge, L: Low, H: High.
Values passed into the SQL (after possible alternation): n: Number, l: Low, h: High.
Results: A: Number of candidates actually assigned.

Please note that (as you can see from the data) I have implemented option #9 to not increase the Pledge past what is passed, with the exception that any pledge below 71 is always increased to 71. Also, the "Noted" field is in UTC.
chalsall is offline  
Old 2013-02-23, 22:08   #536
swl551
 
swl551's Avatar
 
Aug 2012
New Hampshire

23·101 Posts
Default

Quote:
Originally Posted by chalsall View Post
Code:
+---------------------+-------------------------------------------------------------------------------------------------------------+
| Noted               | Note                                                                                                        |
+---------------------+-------------------------------------------------------------------------------------------------------------+
| 2013-02-23 21:02:55 | LF(9) -- N:    5 G:   25 P: 74 L:      5000 H:    888888 -- n:  100 p: 73 l:  57000000 h:  65000000 -- A: 2 | 
| 2013-02-23 21:27:32 | LF(9) -- N:    5 G:    5 P: 68 L:         0 H: 100000000 -- n:  100 p: 71 l:         0 h: 100000000 -- A: 2 | 
| 2013-02-23 21:35:53 | LF(9) -- N:    5 G:    0 P: 73 L:         0 H: 100000000 -- n:    5 p: 73 l:  57000000 h:  65000000 -- A: 5 | 
| 2013-02-23 21:27:51 | LF(9) -- N:    5 G:    0 P: 68 L:         0 H: 100000000 -- n:    5 p: 71 l:         0 h: 100000000 -- A: 5 | 
+---------------------+-------------------------------------------------------------------------------------------------------------+
Values submitted by the client with the POST request: LF (LLTF), (Option), N: Number, G: GHzDays, P: Pledge, L: Low, H: High.
Values passed into the SQL (after possible alternation): n: Number, l: Low, h: High.
Results: A: Number of candidates actually assigned.

Please note that (as you can see from the data) I have implemented option #9 to not increase the Pledge past what is passed, with the exception that any pledge below 71 is always increased to 71. Also, the "Noted" field is in UTC.
[per my interpretation] I had ghosted pledge when #9 option is selected. I just now un-ghosted that form value (based on statement above) and submitted a #9 option with pledge 74 and got back

Factor=2013-2-23,62029573,72,73

[per my interpretation] #9 was supposed to dole out what is needed most and not pay attention to pledge, low and high (reason they are ghosted on the MISFIT form). Only count or GhzDays were to be honored ensuring enough assignments were send back.

I really do want GPU72 to decide what is needed most this current implementation is somewhere in the middle and not what I expected.

Scott
swl551 is offline  
Old 2013-02-23, 22:20   #537
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

33·192 Posts
Default

Quote:
Originally Posted by swl551 View Post
I really do want GPU72 to decide what is needed most this current implementation is somewhere in the middle and not what I expected.
Please see my post #513, paragraph #4 above.

The pledge field is honored in so far as GPU72 will decide what it wants to do up to that pledge level, but no further. This is to allow MISFIT users to say they're willing to go to 74, but if only 73 is sustainable at the moment (as it is currently), that's what will be assigned.

Conversely, if a MISFIT user is only willing to go to 73 (or 72, or 71) when (if) 74 is WMS, they will only be assigned work to 73 (or 72, or 71).
chalsall is offline  
Old 2013-02-23, 22:24   #538
Dubslow
Basketry That Evening!
 
Dubslow's Avatar
 
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88

3×29×83 Posts
Default

Quote:
Originally Posted by chalsall View Post
The pledge field is honored in so far as GPU72 will decide what it wants to do up to that pledge level, but no further. This is to allow MISFIT users to say they're willing to go to 74, but if only 73 is sustainable at the moment (as it is currently), that's what will be assigned.

Conversely, if a MISFIT user is only willing to go to 73 (or 72, or 71) when (if) 74 is WMS, they will only be assigned work to 73 (or 72, or 71).
Shouldn't that be what WMS does? #9 I thought was going to be GPU272 decides everything. Edit: Or, if a user has any restrictions at all, then they shouldn't be using "Let GPU272 decide".

Last fiddled with by Dubslow on 2013-02-23 at 22:27
Dubslow is offline  
Old 2013-02-23, 22:32   #539
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

33×192 Posts
Default

Quote:
Originally Posted by Dubslow View Post
Shouldn't that be what WMS does? #9 I thought was going to be GPU272 decides everything. Edit: Or, if a user has any restrictions at all, then they shouldn't be using "Let GPU272 decide".
A reasonable argument.

I'm happy to implement whatever is decided by consensus.
chalsall is offline  
Closed Thread



Similar Threads
Thread Thread Starter Forum Replies Last Post
questions about misfit jschwar313 MISFIT 1 2016-02-02 00:32
Help with Misfit TheMawn MISFIT 18 2015-06-21 22:00
Misfit feature request. Aramis Wyler MISFIT 15 2015-03-04 21:13
MISFIT 2.9 swl551 MISFIT 44 2014-12-15 12:46
MISFIT for MFAKTx swl551 MISFIT 186 2014-02-05 23:27

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


Tue Jul 27 08:29:48 UTC 2021 up 4 days, 2:58, 0 users, load averages: 1.83, 1.81, 1.77

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.