![]() |
|
|
#12 |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17·251 Posts |
I've started an LLR article on the English Wikipedia, using what I got auto-translated from Google as a base.
http://en.wikipedia.org/wiki/Lucas-Lehmer-Riesel Feel free to help improve it. (and to help me understand what starting numbers to use)
|
|
|
|
|
|
#13 |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17·251 Posts |
Is there any way to "queue up" additional files in LLR? If a file is going to run out of things to do in the middle of the night, the computer would be idle for hours.
You could combine the remaining inputs of one file and the new inputs of the next file into one, but would this produce any bad effects as far as the results it generates goes? |
|
|
|
|
|
#14 |
|
Mar 2006
Germany
22×727 Posts |
you can put new k/n-pairs at the end of the LLR-input file (better when stopped) but they must have the same type of testing:
a file like this Code:
309848651713:M:1:6:258 9577 25015 600000000000:M:1:16:258 17798 25004 160802390587:M:1:2:258 6435 126832 600000000000:P:1:16:257 19687 30002 LLR would take all k/n-pairs as Riesel-base 6 (first line!). the only thing you have to do is to divide the results-file in their original portions (for example if you send results here for special ranges). helps this? Last fiddled with by kar_bon on 2008-01-28 at 13:22 |
|
|
|
|
|
#15 |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17×251 Posts |
Well, they'd all be from NPLB, so that wouldn't be a problem. I just wanted to check that it doesn't mess with the results file it makes. Is the results file it makes even necessary to submit anywhere (for NPLB, at least), or is it just useful as a list of the primes I've found?
|
|
|
|
|
|
#16 |
|
Mar 2006
Germany
1011010111002 Posts |
please send all results to Gary, so if a doublecheck is necessary the residues can crosschecked with your results!
the primes you found are listed in an own file you filled in when started LLR under Test -> Input Data -> Output file: this file contains the first line of your testfiles (something like this: 5000000000000:M:1:2:258) and primes found, every line one prime in the form: k <space> n |
|
|
|
|
|
#17 | |
|
May 2007
Kansas; USA
29×359 Posts |
Quote:
Karsten, that would be an interesting request for Jean. Since LLR just ignores subsequent 'header' lines, perhaps he could make it read any header that it comes to and 'switch forms' as it goes. Sometimes I have wanted to test both Riesel and Proth primes in the same file. About results files...I have debated long enough about whether to collect them with this project. I think Karsten and Anon agree that we should collect them. You can do this in one of 2 ways; it doesn't matter to me. You can attach them in a status post here or Email them to me at:gbarnes017 at gmail . com. I'll post something more visible about it. When posting or sending results, if you have combined more than one file in a single results file, just make a quick comment about it. This is less important if the ranges are contiguous but if they are not, one of the ranges can become 'misplaced' in my mass of files if I'm unaware of it ahead of time. Thanks, Gary |
|
|
|
|
|
|
#18 | ||
|
May 2007
Kansas; USA
29·359 Posts |
Quote:
Mini-Geek and Karsten, A light just came on about this. It IS possible to test different forms in a single file that is fed into LLR. If you check the README file, you'll see that if you use ABC format, you can do more than one form: Quote:
I remember reading about this at some point many months ago but completely forgot about it. I don't know that it applies to this project but it might help at Conjectures 'R Us and is good to know for future reference. Gary Last fiddled with by gd_barnes on 2008-01-28 at 21:29 |
||
|
|
|
|
|
#19 |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17·251 Posts |
EDIT: Disregard, I noticed the GUIremote option. That's what was causing the problem, and I'm leaving the rest of the post here in case anyone else has that problem.
Edit2: I just checked, and the download package has that line uncommented. Did I stupidly change that line and then forget about it, or did it come messed up originally, then get fixed later? (Not sure if this is the right place) Why is my LLRnet GUI not connecting? It just endlessly tries to connect, obviously getting nowhere. LLRnet is running, and I can open a console to it just fine, but the GUI doesn't connect. Here's my llr-client/guiconfig.txt files so you can see if a setting is wrong. Code:
--
-- LLRNet - network part of LLR
--
-- (C) 2004-2005 Vincent Penne
--
-- Released under GNU LIBRARY GENERAL PUBLIC LICENSE
-- (See file LICENSE that must be included with this software)
--
--
-- CLIENT CONFIGURATION FILE
--
-- WARNING: comments start with two dashes
--
-- server location
server = "crus.dynip.telepac.pt"
port = 300
-- username
username = "Mini-Geek"
-- uncomment the following line to allow remote control of your client
-- see also options below to configure who can connect
--GUIremote = 1
-- if several clients are running on the same machine, give each of them
-- a different GUI port to listen to
GUIport = 6999
-- GUI clients connection configuration
-- by default, allow only local connections
GUImask = "255.255.255.0"
GUIallow = "192.168.1.0"
-- example allowing any connection on a local network 192.168.1.*
--GUImask = "255.255.255.0"
--GUIallow = "192.168.1.0"
-- GUI password, it is strongly recommended to change it
-- if you don't restrict GUI clients to local connections
GUIpassword = "hi"
-- name of the file containing current job
workFile = "workfile.txt"
-- name of the file containing results to send to the server
tosendFile = "tosend.txt"
-- number of time to retry to send results before going for next WU.
-- set it to 0 for no retries, for user with no permanent connection
-- this is the suggested setting as it will save them precious
-- minutes of useless retries (the program sleep for one minute
-- between two retries)
sendRetries = 0
-- uncomment line below to work only once
--once = 1
-- uncomment the line below for verbose output
--llrVerbose(1)
-- to ask several WU job to the server at a time, set the variable below
-- to something greater than 1 (but no more than 100)
WUCacheSize = 2
-- Uncomment the two functions below to launch some script each
-- time you respectively find a prime, and submit a new result
--function OnPrime(t, k, n)
-- local script = "onprime.sh"
-- if WIN32 then
-- script = "onprime.bat"
-- end
-- execute(format("%s %d %d %d", script, t, k, n))
--end
--function OnSubmit(t, k, n, result, residue)
-- -- notice : result is 0 for a prime, -2 for non prime, and -1 on error
-- local script = "onsubmit.sh"
-- if WIN32 then
-- script = "onsubmit.bat"
-- end
-- execute(format("%s %d %d %d %d %s", script, t, k, n, result, residue))
--end
-- WIN32 specific settings
-- uncomment the line below to hide the tray icon on startup
--hideTrayIcon = 1
-- change this value to a unique name for each client you want to run
-- as service on the same machine
serviceName = "LLRnet"
-- MY TEST
--server = "localhost"
--port = 7000
--username = "zig"
Code:
clientsDesc = {
[1]={
["password"]="hi",
["port"]=6999,
["name"]="Local",
["address"]="192.168.1.19",
["connected"]=308,
},
[2]={
["password"]="hi",
["port"]=6998,
["name"]="Local",
["address"]="localhost",
["connected"]=236,
},
}
Last fiddled with by Mini-Geek on 2008-02-06 at 21:18 |
|
|
|
|
|
#20 |
|
A Sunny Moo
Aug 2007
USA (GMT-5)
3×2,083 Posts |
Mini-Geek, are you using Linux? I've never been able to get the GUI and the LLRnet client to see eye-to-eye on Linux, though it's always worked fine on Windows.
|
|
|
|
|
|
#21 |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
17×251 Posts |
I'm using Windows.
I think I must have commented out that line, not realizing what I was doing. I'm not certain because I downloaded and briefly played around with LLRnet a while ago (that's where my two in the stats came from), and I don't remember for sure what I did or didn't change, but I do remember the GUI didn't work last time, when I did the two. Trying to remember back, yeah I think I commented out the line thinking it meant a remote connection only, not referring to a local connection which just happens to technically be done like a remote. |
|
|
|
|
|
#22 | |
|
A Sunny Moo
Aug 2007
USA (GMT-5)
141518 Posts |
Quote:
Not that I have ever tried it myself, just a hunch.
|
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Software/instructions/questions | gd_barnes | Conjectures 'R Us | 285 | 2021-04-18 22:05 |
| Useless SSE instructions | __HRB__ | Programming | 41 | 2012-07-07 17:43 |
| Questions about software licenses... | WraithX | GMP-ECM | 37 | 2011-10-28 01:04 |
| Instructions to manual LLR? | OmbooHankvald | PSearch | 3 | 2005-08-05 20:28 |
| Instructions please? | jasong | Sierpinski/Riesel Base 5 | 10 | 2005-03-14 04:03 |