mersenneforum.org  

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

Reply
 
Thread Tools
Old 2012-03-04, 00:18   #45
flashjh
 
flashjh's Avatar
 
"Jerry"
Nov 2011
Vancouver, WA

46316 Posts
Default

Quote:
Originally Posted by bcp19 View Post
Just when I got mine set up too :( At least GPU72 is up and we can get assignments if needed.
I won't have that problem ;) I just picked up about 28 days worth of 69-73 (with 7 workers going at it). Maybe I'll find a bunch of factors and it will be out by the time PrimeNet comes up!

Still, you got to test it before PrimeNet went down. It's disappointing that we can't use PrimeNet to try to find the M48 cantidate, but I'm sure it was a good reason to actually get some maintenance done.

Last fiddled with by flashjh on 2012-03-04 at 00:18
flashjh is offline   Reply With Quote
Old 2012-03-10, 00:24   #46
Dubslow
Basketry That Evening!
 
Dubslow's Avatar
 
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88

3·29·83 Posts
Default

I kinda hate to put more work on your plate, but I have a question about spidey:
Code:
if (TalkToPrimeNet("account/\?user_login=${UN}&user_password=${PW}&B1=GO")) {
      ($Success, $Text) = TalkToPrimeNet("manual_result/");

      if ($Success) {
         if ($Text =~ /${UN} logged-in/) {
            Log(1, "Successfully logged into PrimeNet.");
         } else {
            Log(3, "Didn't find our username in the response; not logged in.  Exiting.");
            Log(0, "Response was:\n${Text}\n\n.");
            $Success = 0;
         }
      } else {
         Log(3, "PrimeNet returned a bad response; not logged in.  Exiting.");
         Log(0, "Response was:\n${Text}\n\n.");
      }
   }
Why log in, and then request and parse the /manual_results/ page? Why not just do something like
Code:
      ($Success, $Text) = TalkToPrimeNet("\?user_login=${UN}&user_password=${PW}&B1=GO"); # Obviously remove /account/

      if ($Success) {
         if ($Text =~ /${UN} logged-in/) {
            Log(1, "Successfully logged into PrimeNet.");
         } else ...snip

Last fiddled with by Dubslow on 2012-03-10 at 00:24 Reason: formatting
Dubslow is offline   Reply With Quote
Old 2012-03-10, 03:08   #47
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

9,767 Posts
Default

Quote:
Originally Posted by Dubslow View Post
Why log in, and then request and parse the /manual_results/ page?
I was being overly paranoid. It was to ensure the Cookie issued after the log-in attempt actually resulted in you being logged in.

Otherwise there is a risk the spider could submit results which would be credited to Anonymous, rather than you.

But, as has been discussed, this spider needs some loving care and attention based on what we've learnt thanks to careful observation of users, and James' access to the server's code.
chalsall is offline   Reply With Quote
Old 2012-03-10, 04:05   #48
LaurV
Romulan Interpreter
 
LaurV's Avatar
 
Jun 2011
Thailand

23·17·71 Posts
Default

Quote:
Originally Posted by chalsall View Post
I was being overly paranoid.
I would better vote for the paranoid version... Maybe you all have fast nets in US but there is not the case everywhere around, and we sometimes still end up in having our results reported as anonymous. I hate that (that is why I am still manually reporting, as I said, I am old fashion guy :P, and my hand is trembling from too much smoking, I love the "are you sure you want to format your hdd?" messages). Not because of the credit, but feels a bit like cheated to do the work and report it as anonymous, and that's why...

I vote for the paranoid version.

Last fiddled with by LaurV on 2012-03-10 at 04:08
LaurV is online now   Reply With Quote
Old 2012-03-11, 09:56   #49
debrouxl
 
debrouxl's Avatar
 
Sep 2009

977 Posts
Default

Paranoid would be my vote as well, be it for the spider or the worker programs (Prime95, mfakt*, CUDALucas, etc.) - if the program is 1-2% slower but more reliable, so be it
debrouxl is offline   Reply With Quote
Old 2012-03-11, 19:02   #50
Dubslow
Basketry That Evening!
 
Dubslow's Avatar
 
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88

3·29·83 Posts
Default

It's not the speed, it's the extra strain on PrimeNet that we're worried about.
Dubslow is offline   Reply With Quote
Old 2012-03-14, 06:40   #51
Dubslow
Basketry That Evening!
 
Dubslow's Avatar
 
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88

3×29×83 Posts
Default

I've found the issue with my implementation of the time zone shift: Daylight Savings Time. *headdesk*
Dubslow is offline   Reply With Quote
Old 2012-03-20, 21:22   #52
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
I was being overly paranoid. It was to ensure the Cookie issued after the log-in attempt actually resulted in you being logged in.
Now that I think about it, does PrimeNet actually use cookies? In my experience, I've found that a user (IP?) is logged out after one hour of inactivity. I'm not quite sure about the time limit, but after long enough I am definitely logged out (and my username does not appear).
Dubslow is offline   Reply With Quote
Old 2012-03-20, 21:46   #53
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

9,767 Posts
Default

Quote:
Originally Posted by Dubslow View Post
Now that I think about it, does PrimeNet actually use cookies?
Definitely.
chalsall is offline   Reply With Quote
Old 2012-04-26, 13:02   #54
bcp19
 
bcp19's Avatar
 
Oct 2011

7·97 Posts
Default

Chalsall, the last few days, I have noticed that my 'problem' machine has been acting weird with the spider. In the log, no number is showing up indicating GHz Days credit about 1/2 the time. Today I saw something like "uninitialized?(un-something) variable $GHzDays...". It works fine on my other machine, so I doubt it is the code, but was wondering if you had any thoughts. In case you are wondering, I refer to it as a problem machine because it tends to fail intermittantly when trying to use the internet whlie under a heavy load(and with P95/mfaktc running, it is always under a heavy load).
bcp19 is offline   Reply With Quote
Old 2012-04-26, 13:09   #55
flashjh
 
flashjh's Avatar
 
"Jerry"
Nov 2011
Vancouver, WA

100011000112 Posts
Default

Quote:
Originally Posted by bcp19 View Post
Chalsall, the last few days, I have noticed that my 'problem' machine has been acting weird with the spider. In the log, no number is showing up indicating GHz Days credit about 1/2 the time. Today I saw something like "uninitialized?(un-something) variable $GHzDays...". It works fine on my other machine, so I doubt it is the code, but was wondering if you had any thoughts. In case you are wondering, I refer to it as a problem machine because it tends to fail intermittantly when trying to use the internet whlie under a heavy load(and with P95/mfaktc running, it is always under a heavy load).
I've had the same problem, but I have my system setup to rename the 'not submitted' file back to results.txt so it just sends it again later. Since the server started having problems I noticed the submission spider fails around once a day - it is still working thought with the rename batch file.
flashjh is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
GPU to 72 spider poaching exponents? ixfd64 GPU to 72 2 2014-07-27 20:38
It Seems The Great Spider ... Dubslow Forum Feedback 13 2012-06-01 13:39
Automatic temperature control TObject Software 13 2012-04-27 19:33
Went from 8 workers to 4 workers on v26.6 upgrade dmoran Software 13 2011-05-23 12:36
Manual submission of automatic assignment result tichy PrimeNet 4 2010-12-17 09:57

All times are UTC. The time now is 10:26.


Mon Aug 2 10:26:46 UTC 2021 up 10 days, 4:55, 0 users, load averages: 1.62, 1.39, 1.23

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.