Join PrimeGrid
Returning Participants
Community
Leader Boards
Results
Other
drummers-lowrise
|
Message boards :
Generalized Fermat Prime Search :
GFN-14 Consecutive Primes Hunt Season is open!
Author |
Message |
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Project status
GFN-14 search finished 10 Jan 2021. All candidates up to b=400M were tested, finding or confirming total of 10304 primes.
Project description
Some time ago, PrimeGrid discovered an interesting beast - a pair of consecutive GFN-15 primes. Numbers 87888966^32768+1 and 87888968^32768+1 are both primes. Such numbers form an OEIS sequence A118539. Early, only numbers up to GFN-12 were known. Quickly we discovered that our GFN-13/14 prime search also found not only one, but two GFN-13 pairs: 103859114/103859116 and 111359046/111359048! But...
There are no such pair known for GFN-14 yet. Therefore, a hunt for GFN-14 consecutive pair is open!
How it works
We'll use our existing private GFN-13/14 server. The change is almost transparent to existing users. Early we've tested all possible candidates sequentially, to find all possible primes from 0 to upper software limit. Now only one candidate from a group - consecutive pair or triplet - will be loaded into the system. If candidate becomes composite, it'll cancel whole group. If it happens to be a prime, it's neighbors will also be loaded into the system for additional testing.
We will test candidates from 22M (not loaded yet into the system) to 400M (Genefer GPU software limit) until we find a pair or reach end of the range. There are about 7,000,000 candidates to test. Tasks are very small (less then minute on GPU, 5-15 minutes on CPU), so, with active participation, whole range could be tested in few months. It's also possible that we'll find such pair tomorrow. It's a question of luck, like on conjectures. After end of the hunt, server will be returned to standard sequential search mode for all remaining candidates.
Tasks are available for CPU and GPU for all major platforms. CPU tasks has lower limit (currently estimated about 100M) and will be disabled near this point.
How to participate
To participate, please register at GFN-13/14 Boinc server at http://boincvm.proxyma.ru:30080/test4vm/
- Go to URL above;
- Click on "Your account" on left panel;
- Click on the "or create an account" link in the bottom left part of the page;
- In the "Invitation Code" field, enter PrimeGrid
- Fill other fields in usual way. It's preferred to use same email address as on PrimeGrid, it's required for possible transfer of credit (if it ever happens, see below).
- After registration, connect your Boinc client to the project using URL above. It's recommended to use "weak account key" in place of of true password. Your can get your key on "Your account" page, click on "Account keys"
For new users, your account will be automatically configured to work on GFN-14 project with GFN-13 project as backup (in case of temporary shortage of work). Existing users should manually select GFN-14 project, disable GFN-13 and enable "If no work for selected applications is available, accept work from other applications?" option if they like to keep GFN-13 as backup project.
The server is compatible with PrimeGrid and supports extra venues (Sun...Pluto). Note: this is not a PrimeGrid server. Although all discussion and support happens here on PrimeGrid forum, the server is running on my own resources.
Schedule
There is no specific start time. Instead, the hunt starts as soon as leading edge reaches 22M. There are some "standard" canidates from 21M to 22M which can be used to test and tune your systems. Time required to purge these candidates is unpredictable and strongly depends on participation level, it can be anywhere from 2 to 7 says.
Optimizing performance
CPU - it seems that hyperthreading improves overall performance, at least on Intel CPUs.
GPU - First, check GPU usage (using free tool GPU-Z on Windows or NVIDIA control panel on Linux). If GPU usage is less then 70-80%, you have to configure your system to run few tasks at once, otherwise modern GPUs will not be fully utilized.
Second, you MUST keep one CPU core free to feed GPU. Unfortunately, Genefer requires significant amount of CPU time for low GFNs (not a full core, but still noticeable). Hypethreading helps here, one hypethread core is more then enough for this.
To limit number of CPU cores, use your Boinc client configuration dialog. Also you can manually create cc_config.xml file in the Boinc data directory. Example:
<cc_config>
<options>
<ncpus>3</ncpus>
</options>
</cc_config>
In this example, we'll tell Boinc to use 3 CPU cores (out of 4). Please change this number according to your CPU. If you already have cc_config.xml file, edit or add "<ncpus>" line inside "<options>" block.
Next, in the Boinc data directory, under projects/boincvm.proxyma.ru.... subfolder, create app_config.xml with following content:
<app_config>
<app_version>
<app_name>gfn13</app_name>
<plan_class>opencl_nvidia_gfn_101</plan_class>
<avg_ncpus>0.01</avg_ncpus>
<ngpus>0.25</ngpus>
<cmdline>-x ocl4</cmdline>
</app_version>
<app_version>
<app_name>gfn14</app_name>
<plan_class>opencl_nvidia_gfn_101</plan_class>
<avg_ncpus>0.01</avg_ncpus>
<ngpus>0.25</ngpus>
<cmdline>-x ocl4</cmdline>
</app_version>
</app_config>
AMD/ATI users please replace opencl_nvidia_gfn_101 with opencl_ati_gfn_101
This will run 4 GPU tasks. (ngpus=0.25). This is enough for low- and middle-class GPUs. 3 tasks are enough to get good utilization and 4th task is added to avoid "drops" on the utilizaton graph when one of tasks was finished and being reloaded. For optimal performance, please check that GPU utilization is at least 80%. You can use freeware GPU-Z utility. If you want to run more tasks, edit "<ngpus>" ratio - set it to 0.2 to run 5 tasks, and so on. Note: you will not reach optimal performance without free CPU core.
Don't forget to ask Boinc to reload configuration files after you've created or edited them.
Running PrimeGrid as backup project
It's a good idea to crunch something even if project server has temporary gone offline. Go to PrimeGrid Preferences page and set "Resource Share" to 0. If GFN server becomes out work or unreachable, your Boinc client will automatically switch to PrimeGrid tasks until GFN server recovers.
Credit
Credit is assigned according to PrimeGrid rules. But this is not a PrimeGrid server, so credit stays here. Only if we could convince Michael to transfer credit back to PG accounts :))) (to the GFN or PSA, during hunt period only). But even if we do, it will be manual procedure which will happen rarely (for example, each 10 days), similar to PSA. So why it's necessary to have same email address here and on PG - for automatic account matching.
Happy hunting everybody!
Edit: simplified app_config | |
|
|
Great idea - out of interest, how what fraction of the candidates that pass (normal) sieving are consecutive? i.e. how much faster will this search proceed than the normal GFN prime search?
- Iain
____________
Twitter: IainBethune
Proud member of team "Aggie The Pew". Go Aggie!
3073428256125*2^1290000-1 is Prime! | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Great idea - out of interest, how what fraction of the candidates that pass (normal) sieving are consecutive? i.e. how much faster will this search proceed than the normal GFN prime search?
wc -l sel021.txt hunt022.txt
106431 sel021.txt
18474 hunt022.txt
So, about 5,7 times faster. May become even better because sieving is still in progress (but very close to the optimal point).
| |
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 242 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
Yay!
It would be most fun (and april spirit), if we find a consecutive pair in the normal 21M candidates before the hunt.
P.S. Based on benchmarks that I run when first joined the private server, I'm using -x ocl5 for gfn14 gpu tasks rather than ocl4.
P.P.S. This is "old" ocl4, by the way, known as ocl2 in current versions of genefer. The project uses an older genefer v.3.3.1. You can try using a newest version with app_info.xml, but in my experience (again, running the benchmarks with numbers from the project), genefer331 is tiny bit faster on these numbers.
P.P.P.S. Genefer employs the GPU fully while running, but running multiple GPU tasks at the same time deals with the downtime between previous task spinning down and the next one spinning up. Since the length of the tasks can be <30 sec, the 5-7 sec of that downtime is worth filling by a parallel task, if you're maximizing throughput. | |
|
|
This is a fun project to run with a pair of GTX 970s. Just watch the wus fly by.
However I am having heat problems with CPU tasks and I don't find an option not to use CPU.
So, in the example xml file you gave us, which line needs to be modified to run 1 CPU only.
Is it possible to exclude CPU usage?
Thanks for the instructions you gave. I know little about all the computer stuff but I managed to get this up and running.
____________
https://signature.statseb.fr/sig-2259.png | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
However I am having heat problems with CPU tasks and I don't find an option not to use CPU.
So, in the example xml file you gave us, which line needs to be modified to run 1 CPU only.
Is it possible to exclude CPU usage?
There are at least two methods.
1. On the site, go to "Your account" -> "PRIVATE GFN SERVER preferences" -> "Edit preferences" and uncheck "Use CPU" checkbox. Don't forget to press "Update" button when done. Repeat this for all required venues, if you have more then one. You should not receive CPU tasks from this server anymore.
2. Read above about cc_config.xml and edit <ncpus> line, set it to desired value (1). This setting is global for all servers and projects you participate. I'm sure there was a GUI settings editor in Boinc client, but unfortunately cannot point you to exact menu, all my crunchers are command-line. Check possible settings menus, or may be somebody else could point you to exact location.
| |
|
|
Thanks for the reply.
I made the mistake on the account page of looking in the computing options rather than the server options for the ability to deselect CPU usage.
I made the change and all is well.
Thanks again.
____________
https://signature.statseb.fr/sig-2259.png | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Leading edge just passed 22M, first twin candidates are sent to clients. The hunt is open! Good luck everyone!
| |
|
Azmodes Volunteer tester
 Send message
Joined: 30 Dec 16 Posts: 184 ID: 479275 Credit: 2,197,541,354 RAC: 615
                       
|
Is there a way to check if I have discovered any primes, pairs or otherwise?
____________
Long live the sievers.
+ Encyclopaedia Metallum: The Metal Archives + | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Is there a way to check if I have discovered any primes, pairs or otherwise?
If somebody discovers a pair, it mean that we've completed the search (we need only one pair to fill gap in OEIS sequence).
As for "normal" primes, You have found 17 primes so far, two of them during hunt stage, and also did good number of double-checks. These primes are small, with just a few good GPUs you may find tens and hundreds of them each month. So why I post only monthly summaries (number of primes and doublechecks discovered by each user) in our main forum thread.
But specially for this hunt, I will make an online statistic page (it will be automatically updated daily). It should take 2-3 days, I'm not a PHP/HTML expert at all. I'll post here once it's ready.
| |
|
Azmodes Volunteer tester
 Send message
Joined: 30 Dec 16 Posts: 184 ID: 479275 Credit: 2,197,541,354 RAC: 615
                       
|
Cool, thanks.
____________
Long live the sievers.
+ Encyclopaedia Metallum: The Metal Archives + | |
|
|
But specially for this hunt, I will make an online statistic page (it will be automatically updated daily). It should take 2-3 days, I'm not a PHP/HTML expert at all. I'll post here once it's ready.
This good news, thank you stream, looking forward to it. | |
|
|
408 error happening again, is there something wrong?
____________
| |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
But specially for this hunt, I will make an online statistic page (it will be automatically updated daily). It should take 2-3 days, I'm not a PHP/HTML expert at all. I'll post here once it's ready.
This good news, thank you stream, looking forward to it.
Well, I made simple statistic page to start with. Check it out (also there is a link from main project page). Data is updated every 6 hours.
| |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
408 error happening again, is there something wrong?
Alas, still no idea. From my point of view everything is working as expected. The only suspicious message in logs is from Apache:
(70007)The timeout specified has expired: [client ****] AH01224: Timeout during reading request entity data
There were 131 of such messages yesterday (with 129,000 good requests to web server) and 120 of them were from one IP address which belongs to you (I found this address in scheduler logs). So either it's something wrong in the network between you and me, either you have lot of hosts using same outbound router/proxy and could trigger this rare glitch more often.
EDIT: I found that default Apache configuration has quite strict request timeout - 10 seconds. I've increased this value, let's see if it changes something. | |
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 242 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
P.S. Based on benchmarks that I run when first joined the private server, I'm using -x ocl5 for gfn14 gpu tasks rather than ocl4.
P.P.S. This is "old" ocl4, by the way, known as ocl2 in current versions of genefer. The project uses an older genefer v.3.3.1. You can try using a newest version with app_info.xml, but in my experience (again, running the benchmarks with numbers from the project), genefer331 is tiny bit faster on these numbers.
first ocl5 and then ocl3 quiсkly went beyond their b limit in the hunt today, so only -x ocl4 is viable for it now. Which is what was in stream's original post anyway, I don't think anyone followed my "advice", heh.
Current leading edge tasks are about 23.8M right now | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Well, I made simple statistic page to start with. Check it out (also there is a link from main project page). Data is updated every 6 hours.
Oops, I forgot that output from validator was unsorted. After fixing this bug, distribution of initial finds / doublechecks between users changed a bit :) | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
On statistic page, you can now click on user name to see your discovered primes, if anybody interested.
| |
|
|
Good addition.
____________
https://signature.statseb.fr/sig-2259.png | |
|
|
>
It's a good idea to crunch something even if project server has temporary gone offline. Go to PrimeGrid Preferences page and set "Resource Share" to 0. If GFN server becomes out work or unreachable, your Boinc client will automatically switch to PrimeGrid tasks until GFN server recovers.
I assume you mean to set PrimeGrid Resource Share to 0
Correct?
____________
https://signature.statseb.fr/sig-2259.png | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
>
It's a good idea to crunch something even if project server has temporary gone offline. Go to PrimeGrid Preferences page and set "Resource Share" to 0. If GFN server becomes out work or unreachable, your Boinc client will automatically switch to PrimeGrid tasks until GFN server recovers.
I assume you mean to set PrimeGrid Resource Share to 0
Correct?
Correct. When server's resource share set is 0, Boinc will contact this server only if no other work is available. So, it must be PrimeGrid setting (or any other project you like).
| |
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 242 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
Based on current progress, a rough estimate to run all the candidates is about 76 days from now (finishing on June 29th).
Although, hopefully, we will find the one long before the end. With the same estimation, the middlepoint falls on May 22nd. My bet is: end of may (last two weeks) is when we find it. | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Based on current progress, a rough estimate to run all the candidates is about 76 days from now (finishing on June 29th).
Although, hopefully, we will find the one long before the end. With the same estimation, the middlepoint falls on May 22nd. My bet is: end of may (last two weeks) is when we find it.
I think your estimation is too optimistic. On the status page you can find true number of validated workunits and their percentage. Currently numbers are too small for exact estimation, but we have something like 2% done in 6 days (number of workunits completed each day stays at same level for last 10 days), so estimation for whole range is closer to 300 days.
Let's make it different way - find amount of computing power required to search whole range.
Let's take my 750ti as reference (not the fastest one, but perfectly tuned and used on dedicated crunching system). It's running 4 tasks in parallel in 130 seconds. Round it down to 30 seconds per task, or 2 tasks per minute, or exactly one candidate per minute (due to double-checking).
We have 7,000,000 candidates to test so, this single GPU would search whole range in ( 7000000 / 60 minutes / 24 hours ) = 4861 days.
Conclusion 1 - having only 50 GPUs we could finish the search in 97 days and 100 GPUs could do it in a quick 48 days. Unfortunately, our resources seems to be not so high. This is pity, because just a few additional small GPU farms could make this project quick and fun.
Conclusion 2 - every GPU extra GPU counts. Attaching an additional device will noticeable change finish date.
And finally, we could find a pair anytime. It could be anywhere in the range. We may find it tomorrow, at 399M, or not find at all (below 400M). In GFN-13, we found two pairs very close to each other, but both of them were above 100M.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Just joined up, looks like it could be fun :)
Really quick tasks.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Conclusion 2 - every GPU extra GPU counts. Attaching an additional device will noticeable change finish date.
At this early stage and best guess, its looking like about 7000 Wu's per day from me.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
|
I just threw an old mac pro on the pile (or perhaps placed, those things are heavy).
The gtx770 in it is finishing 3 wus every 120 seconds, and the 6 cores not servicing the GPU are finishing 6 tasks in 6 minutes. That should work to around 3600/day.
| |
|
Azmodes Volunteer tester
 Send message
Joined: 30 Dec 16 Posts: 184 ID: 479275 Credit: 2,197,541,354 RAC: 615
                       
|
At first I threw almost everything I had at this to see how I would perform, but by now I have either turned off some of my rigs or reallocated them to other projects again (can't stand to have those AMD cards and their beastly DP run anything else than Milkyway for long). Still, with the remaining computers I should be able to work through 10,000+ tasks per day. 14,000, if I keep them running 24/7.
____________
Long live the sievers.
+ Encyclopaedia Metallum: The Metal Archives + | |
|
|
When I change users on my Win7 machine I tell Boinc not to download any new wus and I also Suspend the active and pending tasks shown on Boinc.
After I change users and start Boinc I find any pending wus on Boinc have disappeared although those wus that were actually in progress are still present The wus that disappeared show up as Errors on the All Tasks page with explanation shown as Timed out - no response".
Something has changed because this wasn't happening a few weeks ago.
Anybody know what changed?
____________
https://signature.statseb.fr/sig-2259.png | |
|
|
Little late to the party, hopefully 20,000+ Wu's a day will help.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
I have to say, this is far more fun than I expected 😁. I found four primes already today!!!
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Well, I made simple statistic page to start with. Check it out (also there is a link from main project page). Data is updated every 6 hours.
Any chance of adding a column for number of digits to the table Stream?
Well done for all your hard work getting this up and running. It's cool.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Well, I made simple statistic page to start with. Check it out (also there is a link from main project page). Data is updated every 6 hours.
Any chance of adding a column for number of digits to the table Stream?
Well done for all your hard work getting this up and running. It's cool.
Sorry I meant the table where you see your primes to clarify.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Any chance of adding a column for number of digits to the table Stream?
Easy. Visually it look a bit messy now, I'll deal with it later.
The difference between these primes is not so big. First candidate at 22M has 120299 digits, last at 400M - 140937.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Any chance of adding a column for number of digits to the table Stream?
Easy. Visually it look a bit messy now, I'll deal with it later.
The difference between these primes is not so big. First candidate at 22M has 120299 digits, last at 400M - 140937.
That's perfect, thanks Stream 😉
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Any chance of adding a column for number of digits to the table Stream?
Easy. Visually it look a bit messy now, I'll deal with it later.
The difference between these primes is not so big. First candidate at 22M has 120299 digits, last at 400M - 140937.
That's perfect, thanks Stream 😉
One last thing, it appears to be ordering on
Date (Doublecheck). Probably better to order on initial find date/time, or prime.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
One last thing, it appears to be ordering on
Date (Doublecheck). Probably better to order on initial find date/time, or prime.
Actually, the list was in unsorted "natural" ordering, as appeared in result files. But It's obvious that a line was written to result file shortly after candidate has received a double-check result.
Now initial finds will be listed according to their (initial find) timestamps. A disadvantage of this way is that new prime may appear in the middle of your list if it's doublecheck was delayed.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
One last thing, it appears to be ordering on
Date (Doublecheck). Probably better to order on initial find date/time, or prime.
Actually, the list was in unsorted "natural" ordering, as appeared in result files. But It's obvious that a line was written to result file shortly after candidate has received a double-check result.
Now initial finds will be listed according to their (initial find) timestamps. A disadvantage of this way is that new prime may appear in the middle of your list if it's doublecheck was delayed.
Oh okay, cheers Stream.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
SpearVolunteer tester
 Send message
Joined: 29 Mar 09 Posts: 148 ID: 37675 Credit: 1,344,985,510 RAC: 148
                        
|
That stats refresh just now got me on the leaderboard, with one prime found and one double checked. | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
That stats refresh just now got me on the leaderboard, with one prime found and one double checked.
Fair play. I unfortunately didn't find any in last 24 hours.
I may need to throw more horsepower behind this. :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Just completed 20,000 wu's since Friday. :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Two identical PC's, same boinc version, same nvidia driver, same app_config, same cc_config.
Two identical GPUS in each.
One is downloading just two gpu tasks, the other is maintaining a cache of 9 tasks even though I have set maintain 0 days work.
Any ideas anyone?
Obviously the cache is making it far more likely for wu's to be a DC.
Any pointers would be most appreciated.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Two identical PC's, same boinc version, same nvidia driver, same app_config, same cc_config.
Two identical GPUS in each.
One is downloading just two gpu tasks, the other is maintaining a cache of 9 tasks even though I have set maintain 0 days work.
Any ideas anyone?
Obviously the cache is making it far more likely for wu's to be a DC.
Any pointers would be most appreciated.
Really, you cannot set 0 days of work. If you set it to 0, client will round it up to 3 minutes. This is enough to fetch few short GFN-13/14 WUs. I'm not sure it's documented anywhere, you have to look into client source to find this:
inline double work_buf_min() {
double x = global_prefs.work_buf_min_days * 86400;
if (x < 180) x = 180;
return x;
}
Next, when client decides how many WUs it should request for 3 minutes, it's using own benchmarks, estimations, statistical analysis and whole lot of other black magic which never working right. May be if you let these systems run for few days, client will collect enough statistical data about real runtimes, calculate correct correction factors (sorry for bad wording) and behave better. At least your two PCs should behave in same way.
I don't think that resource share is involved here. Changing resource share changes fetch logic only for servers which have zero resource share. It must be PrimeGrid if you set it as backup. Note you cannot set all servers to zero resource share, client will ignore this setting and behave like it was 100%.
Also, I should warn that tricks which worked on PG will NOT work in same way on this server. This game has more complex rules, with significant amount of luck involved. The work is distributed randomly from large pool of candidates without any particular order (of course, I've programmed these rules in scheduler, but they're not so straightforward). Just look at my own stats. I have only one slow GPU running 24/7, large farm of slow CPU cores where most of them available only during night time, caches set to 1 hour - and still have significant amount of initial finds.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Thanks for the detailed explanation Stream. Taken onboard and will experiment. Have to say very well done for setting this all up. I for one and many more no doubt, appreciate it. Big effort for just one person. And great fun. 😎
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
|
... Have to say very well done for setting this all up. I for one and many more no doubt, appreciate it. Big effort for just one person. And great fun. 😎
I second that - greatly appreciate your work stream. | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Next status update will pass 10% mark. Congratulations everybody with this first little step!
Now it's a time for some speculations about "If we'll not find a pair, how long will it take to search whole range?"
Although trivial answer is "10% in 15 days = 150 days total", it's not true. Many powerful crunchers joined the party later. Approximating average rate for last 7 days, the answer will be 90 days.
But... this number is not true again. Very soon, after 7-10 days, CPU tasks will hit maxErr limit and will be disabled. We'll lose part of our computing power. I don't know yet how big these losses will be. Sorry, it requires some complicated queries on database, and I'm afraid of big databases. :) Let's get back to this topic when we'll have some real-life stats.
And conclusion is still the same. Each new attached GPU will noticeable help the project.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Next status update will pass 10% mark.
And conclusion is still the same. Each new attached GPU will noticeable help the project.
I've been searching for the "overdue" gfn18. As soon as someone gets it I'll have a few more gpus to move to this. Probably double my input.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
|
56414914^16384+1
56414916^16384+1
____________
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
56414916 looks like I found it. Happy out! (That translates to - happy as a pig in ....) Hats off to Stream who enabled me to do so, he did all the hard work. 😉. Result! Thanks Dude. Lil bit more virtual graffiti to leave behind. 😁
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Update. Now sitting at home, with a large grin on my face, sipping a hot whiskey, feeling good. ;-) dopamine hit achieved, (not from the whiskey) finding this stuff is like a hit from a defibrillator, at times, I would imagine. Early days. Hopefully more to come. Party on Garth!
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Oh great. Just write a big message about rates, completion times, and all similar boring stuff. Then wake up in the morning, hit refresh on status page - and whoops... :)
Congratulations to our lucky members!
56414914^16384+1 - discovered by Johnny Rotten, DC by 288larsson
56414916^16384+1 - discovered by Robish, DC by 288larsson
It was fun and exciting. Alas, we need only one such pair. Now it's time for cleanup. The system is currently loaded with candidates up to 65M. They must be purged before normal sequential search could be resumed.
All workunits between 22M and 65M will be considered as part of the search and included in hunt stats. Next, normal search (i.e. all candidates) will be temporary resumed from 65M until cleanup completes. After completion of cleanup, we'll go back to 22M and resume normal search for all untested candidates.
On cleanup phase 1, we must be sure that all workunits below 56414914 are checked and no second pair hides there. This is mandatory because OEIS states that this pair must be minimal possible one. There are only 87 such candidates.
On phase 2, all workunits up to 65M must be processed to finalize stats. There are 54875 candidates (less then one day if we will stay at current rate for a while).
Main part of cleanup should take 7-10 days, mostly because we will wait until abandoned workunits becomes timed out and resent (timeout is 5 days)
Edit: the search took less then 15 days. Started near 2018-04-14 00:00 UTC, and final DC result was returned 2018-04-28 15:23:39 UTC. | |
|
|
A great result! Well done to lucky finders :)
____________
Twitter: IainBethune
Proud member of team "Aggie The Pew". Go Aggie!
3073428256125*2^1290000-1 is Prime! | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
On the other hand, I have a feeling that something happened too quick :) May be the search could be continued? Although we've reached main goal and solved this mathematical puzzle, we may treat this as a game with rules far more complex and much of luck involved, comparing to classing prime searching. Also, results may have some mathematical purpose. For example: Is there another pair nearby? (in GFN-13, it was). Are these pairs distributed randomly or form close groups? And after all, 90 days required to complete whole range is really not much for professional crunchers :)
The key point is that most powerful crunchers should agree to continue to keep this project fun and short, to stay within predicted 90 days or close to. In last 5 days, we've eliminated 70,000 candidates per day. If we could stay at this rate and even attach more GPUs, everything will be very fast!
What do you think?
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
I'm up for it. Anyone else?
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
Yves Gallot Volunteer developer Project scientist Send message
Joined: 19 Aug 12 Posts: 820 ID: 164101 Credit: 305,989,513 RAC: 4,214

|
Congratulations to 288larsson! and well done to everyone.
3, 3, 3, 75, 113, 2163, 63739, 13221, 54809, 3656571, 6992033, 125441, 103859115, 56414915, 87888967, and now a(16)?
| |
|
Crun-chi Volunteer tester
 Send message
Joined: 25 Nov 09 Posts: 3232 ID: 50683 Credit: 151,443,349 RAC: 125,986
                         
|
Congratulations to 288larsson! and well done to everyone.
3, 3, 3, 75, 113, 2163, 63739, 13221, 54809, 3656571, 6992033, 125441, 103859115, 56414915, 87888967, and now a(16)?
Does you need any help for updating OEIS sequence? I was update my search in near-repdigit prime and it was 4 days of very precise writing. They refuse to approve change because one "," was missing. But at the end all was OK :)
____________
92*10^1585996-1 NEAR-REPDIGIT PRIME :) :) :)
4 * 650^498101-1 CRUS PRIME
2022202116^131072+1 GENERALIZED FERMAT
Proud member of team Aggie The Pew. Go Aggie! | |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
Congratulations!!!
____________
My lucky number is 75898524288+1 | |
|
|
On the other hand, I have a feeling that something happened too quick :) May be the search could be continued? Although we've reached main goal and solved this mathematical puzzle, we may treat this as a game with rules far more complex and much of luck involved, comparing to classing prime searching. Also, results may have some mathematical purpose. For example: Is there another pair nearby? (in GFN-13, it was). Are these pairs distributed randomly or form close groups? And after all, 90 days required to complete whole range is really not much for professional crunchers :)
The key point is that most powerful crunchers should agree to continue to keep this project fun and short, to stay within predicted 90 days or close to. In last 5 days, we've eliminated 70,000 candidates per day. If we could stay at this rate and even attach more GPUs, everything will be very fast!
What do you think?
I would be up for searching to Genefer's limit so that we can find all pairs in that range. I would go as far as to say that we could do the same for GFN-13, as in find all pairs up to Genefer's limit.
____________
| |
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 242 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
Congratulations to the finders and everyone else! Wow, turns out my "end of may" prediction was too pessimistic, haha. =]
I don't have that many resources, but I'm up to search the rest of the genefer limit range for pairs before switching back to methodical "find every prime" search/ | |
|
|
Good work, nice. Note that the two primes are:
56414914^16384+1 = 6.889... * 10^126998
56414916^16384+1 = 6.893... * 10^126998
With numbers of that size, more than 3.4 out of every one million numbers are prime. So there are about 1.37 * 10^126990 other primes between these two "neighbors".
On cleanup phase 1, we must be sure that all workunits below 56414914 are checked and no second pair hides there. This is mandatory because OEIS states that this pair must be minimal possible one.
Exactly.
/JeppeSN | |
|
|
Consecutive GFN-16 can be much harder to find (Yves Gallot's post).
I will happily update A118539 and A217993 once "phase 1" (ensuring this is the smallest GFN-14 occurrence) is completed? Is it by now?
I updated these two OEIS entries earlier and have updated many sequences before. If Yves wants to do it, that is also fine.
/JeppeSN | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Well, I've loaded next set of paired candidates. Let's continue! It will not affect cleanup, the system prioritizes "old" tasks.
I'll be on vacation this week, so stats will temporary continue to work as is. Later I'll split them by "main" part (22M-65M) and "extended" (65-400).
Regarding same search on GFN-13: we already have two pairs for GFN-13. But considering that GFN-13 workunits are 4-5 times faster then GFN-14 and we're already somewhere above 120M on this project, whole range could be searched in 3-4 weeks just for fun.
I will happily update A118539 and A217993 once "phase 1" (ensuring this is the smallest GFN-14 occurrence) is completed? Is it by now?
Now there are 52 tasks left. They are just abandoned because their computers probably turned off. We have to wait until 5 days timeout expires. Most of them will expire and resent on May 1, but some on May 2.
| |
|
Yves Gallot Volunteer developer Project scientist Send message
Joined: 19 Aug 12 Posts: 820 ID: 164101 Credit: 305,989,513 RAC: 4,214

|
I'm trying to estimate the size of the adjacent GF primes (the question is "Is a consecutive GFN-16 search reasonable?).
Let I be an interval (the I sides of a dice) and n candidates (n dice rolls).
What is the likelihood that the same value appears consecutively?
Prob = 1 - exp(-n / I).
Now let E(n, b) be the expected number of GF-n primes in [2, b].
The "interval" is I = (b/2) / E(n, b). (b/2 because b is even. Note that it's not true because the distribution is not linear but the estimate is sufficient). The number of candidates is E(n, b) then
Prob(n, b) = 1 - exp(-E(n, b)^2 / (b/2)).
b is computed such that Prob(n, b) = 0.5:
Expected: 4, 4, 33, 59, 805, 4848, 56461, 35843, 199031, 898615, 5856103, 20327026, 97390621, 524510973, 5005442037, 5418679704, 25846060752
Found: 3, 3, 3, 75, 113, 2163, 63739, 13221, 54809, 3656571, 6992033, 125441, 103859115, 56414915, 87888967
Not so bad considering this 'random' distribution.
The most important point is that b_16 ~ b15.
The reason is the prime 65537: because of it the number of GF-16 primes in [2, b] is about the same than the number of GF-15 primes.
A consecutive GFN-16 search can succeed. The limit of Genefer (400M) can be extended (the theoretical bound is sqrt((127*2^24+1)*(15*2^27+1)*(51*2^25+1) / 2 / 65536) ~ 236000M).
The search for all pairs in 2-400M for GFN-13 and GFN-14 is useful for estimating the gap between pairs (which is a better estimate than the first pair).
| |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
b is computed such that Prob(n, b) = 0.5:
Expected: 4, 4, 33, 59, 805, 4848, 56461, 35843, 199031, 898615, 5856103, 20327026, 97390621, 524510973, 5005442037, 5418679704, 25846060752
Found: 3, 3, 3, 75, 113, 2163, 63739, 13221, 54809, 3656571, 6992033, 125441, 103859115, 56414915, 87888967
Not so bad considering this 'random' distribution.
The most important point is that b_16 ~ b15.
The reason is the prime 65537: because of it the number of GF-16 primes in [2, b] is about the same than the number of GF-15 primes.
A consecutive GFN-16 search can succeed. The limit of Genefer (400M) can be extended (the theoretical bound is sqrt((127*2^24+1)*(15*2^27+1)*(51*2^25+1) / 2 / 65536) ~ 236000M).
The search for all pairs in 2-400M for GFN-13 and GFN-14 is useful for estimating the gap between pairs (which is a better estimate than the first pair).
Assuming I'm following your analysis correctly, it seems to me that finding a GFN-15 pair was a very lucky occurrence. Failing the same sort of luck on GFN-16, wouldn't an awful lot of searching be required?
Am I understanding this correctly: The expected probability of finding a GFN-15 pair is 50% if we searched to b=5 billion, and we found the pair at b=87 million? If so, that's less than 2% of the 50% probability point. If I got that correct, we were exceptionally lucky, correct?
Is there a reason to expect that we would be as lucky when looking for the GFN-16 pair?
____________
My lucky number is 75898524288+1 | |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
I have some data on the GFN-16 search since we moved it from PRPNet to BOINC:
In the two and a half years GFN-16 has been running on BOINC, we've tested about 5.4 million candidates. For about 1.5 million of those candidates (b^65536+1), b+2 was also in the sieve file and was tested. These are the candidates that would be of interest in a search for a GFN-16 pair.
Of those 1.5 million candidates, 100 (exactly) have been prime. For all of those 100 primes, (b+2)^65536+1 is composite.
We can learn a few things from this information:
* A fairly large percentage of all candidates are potential pairs. (1555973 out of 5504246, or 28%)
* Only a small percentage of candidates are prime (346 out of 5470263, or 0.006%)
* Put another way, one out of every 15810 candidates is prime.
* In 2.5 years we've found 100 primes where there was another candidate that would have been a pair if it had been prime. If we had restricted the search to only candidates that could potentially be a pair, we probably would have found about 4 times as many (400).
* 15810/400 is 39.5 Call it 40. 40 times 2.5 years is 100 years. Based on past performance, that's how long it should take to find a GFN-16 pair. Of course hardware will improve a lot in the next 100 years, so it won't really take that long.
It's clear that barring exceptional luck, even if we're specifically searching for a pair, the search for a GFN-16 pair will likely take a lot longer than it took to find a pair for 15, 14, or 13.
____________
My lucky number is 75898524288+1 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
For about 1.5 million of those candidates (b^65536+1), b+2 was also in the sieve file and was tested. These are the candidates that would be of interest in a search for a GFN-16 pair.
...
* A fairly large percentage of all candidates are potential pairs. (1555973 out of 5504246, or 28%)
If you calculated number of possible candidates exactly as described, it's not correct. You should check every second candidate in sequence. In your terms, b-2 must also be in the sieve file and, if it's true, b+2 must be skipped. If you have a sequence of three candidates, only middle one must be tested, because proving it composite will cancel both pairs.
In GFN-14 we had 5,6 times less candidates to test comparing to original sieve file, i.e. 17,9%. I think your numbers must be closer to this value.
| |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
For about 1.5 million of those candidates (b^65536+1), b+2 was also in the sieve file and was tested. These are the candidates that would be of interest in a search for a GFN-16 pair.
...
* A fairly large percentage of all candidates are potential pairs. (1555973 out of 5504246, or 28%)
If you calculated number of possible candidates exactly as described, it's not correct. You should check every second candidate in sequence. In your terms, b-2 must also be in the sieve file and, if it's true, b+2 must be skipped. If you have a sequence of three candidates, only middle one must be tested, because proving it composite will cancel both pairs.
In GFN-14 we had 5,6 times less candidates to test comparing to original sieve file, i.e. 17,9%. I think your numbers must be closer to this value.
Yes, I intentionally ignored triplets. While that changes the numbers somewhat, it doesn't change the magnitude of the conclusion.
For the record, there's 440090 triplets in this data set, reducing the number of candidates that would need to be tested to 1115883. That's 20% of the total tests rather than 28%. That means we should have found 500 potential pair primes over the last 2.5 years. That gives us 31.62 times 2.5 years, or 79 years. A 20% reduction in "I'll be long dead before then" is still "I'll be long dead before then." ;)
____________
My lucky number is 75898524288+1 | |
|
Yves Gallot Volunteer developer Project scientist Send message
Joined: 19 Aug 12 Posts: 820 ID: 164101 Credit: 305,989,513 RAC: 4,214

|
Assuming I'm following your analysis correctly, it seems to me that finding a GFN-15 pair was a very lucky occurrence. Failing the same sort of luck on GFN-16, wouldn't an awful lot of searching be required?
I computed the probabilty that b < a(n) (a(n) in A118539, Adjacent generalized Fermat primes).
1; 3, 32.5%
2; 3, 31.2%
3; 3, 5.5%
4; 75, 53.9%
5; 113, 20.5%
6; 2163, 32.6%
7; 63739, 53.4%
8; 13221, 27.6%
9; 54809, 21.8%
10; 3656571, 89.8%
11; 6992033, 55.4%
12; 125441, 0.9%
13; 103859115, 52.0%
14; 56414915, 9.1%
15; 87888967, 1.8%
You're right, the GFN-15 pair was a lucky occurrence (if my estimate is correct!?).
Is there a reason to expect that we would be as lucky when looking for the GFN-16 pair?
No and I thought that a small percentage of candidates were potential pairs, a wrong hypothesis :-(
A better estimate of the density of small GFN pairs (based on computation) should determine whether my estimate is too large. Otherwise a(16) may be "out of range".
| |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
Otherwise a(16) may be "out of range".
Not out of range of the computers, perhaps, but out of range of you and I unless we're very lucky or the computers get a whole lot faster very quickly.
Not only were we very lucky to find a(15), but we were also exceptionally lucky that we even knew that we had found a(15). Had I not been compulsively recording every GFN prime we find on the forums, I wouldn't have noticed the adjacent primes. It's not terribly likely that anyone else would have noticed something that nobody was looking for. Not only wouldn't we have known about a(15), but we wouldn't have looked for the adjacent primes at the lower n's either.
Fortunately they showed up at the same time.
____________
My lucky number is 75898524288+1 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
First phase of cleanup completed today, and I could confirm that 56414914 and 56414916 are lowest possible GFN-14 pair, and it could be reported to OEIS now.
| |
|
|
First phase of cleanup completed today, and I could confirm that 56414914 and 56414916 are lowest possible GFN-14 pair, and it could be reported to OEIS now.
Right. I reported to the relevant OEIS entries. (You must check "history" to see it until the changes are eventually approved and the new terms become public.) /JeppeSN | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Credit
Credit is assigned according to PrimeGrid rules. But this is not a PrimeGrid server, so credit stays here. Only if we could convince Michael to transfer credit back to PG accounts :))) (to the GFN or PSA, during hunt period only). But even if we do, it will be manual procedure which will happen rarely (for example, each 10 days), similar to PSA. So why it's necessary to have same email address here and on PG - for automatic account matching.
Michael, any plans to port credit/primes over to PrimeGrid?
Even as a once off exercise at the end of the hunt?
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Credit
Credit is assigned according to PrimeGrid rules. But this is not a PrimeGrid server, so credit stays here. Only if we could convince Michael to transfer credit back to PG accounts :))) (to the GFN or PSA, during hunt period only). But even if we do, it will be manual procedure which will happen rarely (for example, each 10 days), similar to PSA. So why it's necessary to have same email address here and on PG - for automatic account matching.
Michael, any plans to port credit/primes over to PrimeGrid?
Even as a once off exercise at the end of the hunt?
It's only up to good will of Michael. Although this project is closed tied to, it's not a own PrimeGrid project. Personally, I think that it'll be good to make a small gift for our participants at least for basic part of the search (22M-65M), where the real mathematic discovery was made, by giving them PSA or GFN credit (credit was assigned according to PG GFN rules). This range is complete and I could generate small .CSV file with nicks/email/gained credit.
| |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
Michael, any plans to port credit/primes over to PrimeGrid?
Even as a once off exercise at the end of the hunt?
No. If you want PrimeGrid credit, you should run PrimeGrid projects.
____________
My lucky number is 75898524288+1 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
I like what you've done to the hunt status page stream. Splitting the stats into ranges. Nice.
Would there be a way to add a column for total tasks done per user? Might be interesting to see the numbers go up.
Might also highlight if a machine has gone offline.
If it's too difficult no worries.
Cheers Rob
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Would there be a way to add a column for total tasks done per user? Might be interesting to see the numbers go up.
It's not difficult at all. I've added total tasks and credit columns, but with two limitations:
- The whole logic of the script is based on discovered primes so peoples without primes will be not listed;
- This script reads assimilator log files, i.e. it counts "Completed and validated" tasks. Tasks in "Validation pending" state are not included.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Would there be a way to add a column for total tasks done per user? Might be interesting to see the numbers go up.
It's not difficult at all. I've added total tasks and credit columns, but with two limitations:
- The whole logic of the script is based on discovered primes so peoples without primes will be not listed;
- This script reads assimilator log files, i.e. it counts "Completed and validated" tasks. Tasks in "Validation pending" state are not included.
Looks great!
Wow that was quick!!!
Great stuff. Is that the total so far, or within the range?
Oh, it must be within the range.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Great stuff. Is that the total so far, or within the range?
Hmm... which 'total' exactly ?
"Time" and "Candidates tested" are since beginning of project. (i.e. 'base' search did 11,39% of search space, and now we're at 15.85%).
Number of primes, tasks and credit are within the range.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Great stuff. Is that the total so far, or within the range?
Hmm... which 'total' exactly ?
"Time" and "Candidates tested" are since beginning of project. (i.e. 'base' search did 11,39% of search space, and now we're at 15.85%).
Number of primes, tasks and credit are within the range.
Sorry I meant number of tasks. Within the range is perfect.
Time to turn on more boxes tomorrow, my patience waiting for that GFN18 has run out.
I know it will drop as soon as I stop but hey that's life! :)
Looking forward to numbers increasing rapidly on GFN14 :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Stream,
I just noticed GFN13 is running too.
I might let some slower boxes run them.
But is there somewhere to check if I got any primes?
I cant see a link anywhere.
Cheers
Rob.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
I just noticed GFN13 is running too.
I might let some slower boxes run them.
First warning (which may make rest of the answer useless) - GFN-13 is GPU-only. We are above Genefer maxErr limit. If your "slower boxes" means slower CPUs, this will not work. GFN-14 is very close to CPU maxErr limit too, I expect we reach it in no more then 3 weeks; with our speed, I may have to disable CPU tasks suddenly. Use these boxes on GFN-14, while it's still possible.
But is there somewhere to check if I got any primes?
I cant see a link anywhere.
Note that GFN13 is currently running standard sequential search. Of course it may be changed to "pair hunt" mode too, but it's not strictly necessary - we already know two GFN-13 pairs, and amount of tasks is so small that remaining part of search space could be searched for pairs in 2-3 weeks. I'm thinking to keep this work as a "backup" - when we reach end of GFN-14 (in pair mode) and will do a cleanup of abandoned/lost tasks, no new GFN-14 work will be available during this period.
You are correct, this information is not accessible online yet. Although I started to implement some statistical bells and whistles on the server, this wish could not be done in 10 minutes like previous one. Right now we have 7726 primes reported to to http://primegrid.com/gfn_history13.php, and significant amount is pending to report. Same applies to "classic" part of GFN-14 (up to 22M). I must think first about UI and some coding details. Consider this in my todo list, but don't expect immediate implementation.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
I just noticed GFN13 is running too.
I might let some slower boxes run them.
First warning (which may make rest of the answer useless) - GFN-13 is GPU-only. We are above Genefer maxErr limit. If your "slower boxes" means slower CPUs, this will not work. GFN-14 is very close to CPU maxErr limit too, I expect we reach it in no more then 3 weeks; with our speed, I may have to disable CPU tasks suddenly. Use these boxes on GFN-14, while it's still possible.
But is there somewhere to check if I got any primes?
I cant see a link anywhere.
Note that GFN13 is currently running standard sequential search. Of course it may be changed to "pair hunt" mode too, but it's not strictly necessary - we already know two GFN-13 pairs, and amount of tasks is so small that remaining part of search space could be searched for pairs in 2-3 weeks. I'm thinking to keep this work as a "backup" - when we reach end of GFN-14 (in pair mode) and will do a cleanup of abandoned/lost tasks, no new GFN-14 work will be available during this period.
You are correct, this information is not accessible online yet. Although I started to implement some statistical bells and whistles on the server, this wish could not be done in 10 minutes like previous one. Right now we have 7726 primes reported to to http://primegrid.com/gfn_history13.php, and significant amount is pending to report. Same applies to "classic" part of GFN-14 (up to 22M). I must think first about UI and some coding details. Consider this in my todo list, but don't expect immediate implementation.
No I meant GPUs, but mid to low end ones.
There's no problem, I just thought I was missing something, no rush at all. :)
Thanks
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
You are correct, this information is not accessible online yet. Although I started to implement some statistical bells and whistles on the server, this wish could not be done in 10 minutes like previous one. Right now we have 7726 primes reported to to http://primegrid.com/gfn_history13.php, and significant amount is pending to report. Same applies to "classic" part of GFN-14 (up to 22M). I must think first about UI and some coding details. Consider this in my todo list, but don't expect immediate implementation.
I realize your tables are different than ours, but you're welcome to the code we use to generate both our individual and project-wide prime lists if you want it. I.e., the code that generates primes/primes.php and primes/ (really primes/index.php).
____________
My lucky number is 75898524288+1 | |
|
Yves Gallot Volunteer developer Project scientist Send message
Joined: 19 Aug 12 Posts: 820 ID: 164101 Credit: 305,989,513 RAC: 4,214

|
I was wondering if we were lucky or if the primality of b^N+1 and (b+2)^N+1 could be correlated.
I computed the constants C = C2_n in the Bateman–Horn conjecture (https://en.wikipedia.org/wiki/Bateman%E2%80%93Horn_conjecture) with f1(x) = x^N+1 and f2(x) = (x+2)^N+1.
We can also compute the C_n with f(x) = x^N+1 which are related to the number of GF(n) primes. If the primality of b^N+1 and (b+2)^N+1 are independent events then C2_n = 2.C_n^2.
We have
n C2_n 2.C_n^2
--- ----- ----------
1 1.95 3.769234
2 12.7 14.353695
3 9.17 8.759575
4 26.8 26.958828
5 26.0 26.106447
6 30.9 31.090418
7 19.2 19.331322
8 111 110.552680
9 113 112.172227
10 128 128.619740
11 104 104.389601
12 141 141.973041
13 143 143.410177
14 128 128.310093
15 67.3 67.341699
16 251 250.688034
17 242 242.189263
We see that events are highly dependent when n is small (this is similar to the twin prime constant in the Hardy–Littlewood conjecture) but it vanishes soon (n > 5).
I checked the conjecture with few small GFN and it is quite accurate.
Applying it to larger n for b in [2; 400M] , we find
n #GFP #consecutive-GFP prob(>= 1 pair)
--- ----- ------ ------
10 167101 139 100%
11 75270 28.3 100%
12 43890 9.60 100%
13 22056 2.43 91%
14 10431 0.545 42%
15 3778 0.072 6.9%
16 3645 0.067 6.5%
17 1791 0.016 1.6%
Then according to the Bateman–Horn conjecture we were lucky, even for n=14!
But a conjecture may also be false... | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
CPU tasks will be disabled soon
I see few CPU tasks failed due do maxErr exceeded. I'm monitoring the situation, but expect that CPU tasks can be turned off anytime. Considering how fast leading edge is moving forward, we may switch from "some tasks may fail" to "nothing works" state in few hours.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Stream
I was wondering if could check if my computer 379 has found any primes. Is only a laptop and I'm wondering if it is worth the electricity running it if it's too slow to get anything. Maybe that could be an extra column you could add to the primes found list? Computer number which found the prime. Only if its a quick add though.
Cheers Rob.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Stream
I was wondering if could check if my computer 379 has found any primes. Is only a laptop and I'm wondering if it is worth the electricity running it if it's too slow to get anything. Maybe that could be an extra column you could add to the primes found list? Computer number which found the prime. Only if its a quick add though.
Cheers Rob.
Wow! Again under an hour response!! Very cool. But it does show the 379 has not found anything.
Ok Ill let it run 13 instead :)
Thanks for that stream, cheers
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Stream
I was wondering if could check if my computer 379 has found any primes. Is only a laptop and I'm wondering if it is worth the electricity running it if it's too slow to get anything. Maybe that could be an extra column you could add to the primes found list? Computer number which found the prime. Only if its a quick add though.
Cheers Rob.
It's was easy, I kept host id in log files. Just a few lines of code to visualize this field.
Regarding your laptop - of course decision is up to you, everybody here pays own electricity bills. My own opinion is not to use laptops and similar types of small and mobile systems for _CPU_ crunching. Either these CPUs are too slow, either they're producing too much heat for a small box and must be carefully monitored. GPU crunching is another story, each case should be treated individually depending on GPU performance, temperatures and electricity consumed.
I see that this host is crunching on GPU, completing WU in ~120 seconds. Are you running only one workunit at time? If yes, this is a not a best result of course (old simple 750ti does 4 WUs in 120 seconds) but still much better then CPU crunching.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Yes it a GT 555m I think and only one at a time.
I did some tests and running two at the same time, just doubled the time taken,
ie two wu's in 240 seconds
So I figured just one at a time makes each wu quicker and more likely to be 1st.
I found no delay in getting more work from your server so decided to go one at a time.
Maybe Ill test again.
Thanks again.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Yes it a GT 555m I think and only one at a time.
I did some tests and running two at the same time, just doubled the time taken,
ie two wu's in 240 seconds
So I figured just one at a time makes each wu quicker and more likely to be 1st.
I found no delay in getting more work from your server so decided to go one at a time.
Maybe Ill test again.
Thanks again.
Yes tested again and 243 and 244 seconds, so its no benefit.
I suppose the GPU is under powered.
Back to gfn13 @ 30 seconds each :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
Yes it a GT 555m
I suppose the GPU is under powered.
It is what it is, and you should set your expectations accordingly...
GT 555m
It's very old.
GT 555m
It's a mobile GPU, meaning, for Nvidia, it's maybe 25% as powerful as the equivalent desktop GPU with the same (marketing) model number.
GT 555m
Within that generation's mobile Nvidia GPUs, it's slightly below a mid-range GPU.
For its time, it was a decent (but not great) laptop GPU, but that was about 6 or 7 years ago.
____________
My lucky number is 75898524288+1 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Yes it a GT 555m
I suppose the GPU is under powered.
It is what it is, and you should set your expectations accordingly...
GT 555m
It's very old.
GT 555m
It's a mobile GPU, meaning, for Nvidia, it's maybe 25% as powerful as the equivalent desktop GPU with the same (marketing) model number.
GT 555m
Within that generation's mobile Nvidia GPUs, it's slightly below a mid-range GPU.
For its time, it was a decent (but not great) laptop GPU, but that was about 6 or 7 years ago.
Thanks Michael. I didn't realise it was that old. Time flies. My problem is that I hate retiring kit that still works. But I suppose there comes a time it's no longer economical to run.
Like you say, it was a fairly expensive laptop at the time. So it's kind of difficult to see it as anything else. Ain't Moore law a pain. :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
We're offline after storm with close lighting strikes. ISP equipment in our building is not working. Waiting for a fix. | |
|
|
Stream, do you have any ETA for resumption of access? | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Stream, do you have any ETA for resumption of access?
Unfortunately, I think it'll be Monday. ISP guys said that they're "working on this" on Friday, but it's not fixed yet... I suppose they've decided to give himself some break because almost nobody is working in the building on weekend. :(
| |
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 242 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
I can access the server again, yay. | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
We're back online. Some peoples may have temporary connection problems until their DNS caches expires, this will disappear in few hours.
It was a mix of laziness, bureaucracy, and unlucky fault in Friday evening. ISP technicians were unable to get access to restricted area of the building (where all communication and cellular equipment is hosted) during weekend, but nobody of them ever think of contacting us until Monday (although we've received - probably automated - SMS'es 'your request is being working on' from them every day).
| |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
CPU tasks are disabled now
As I warned few days ago, we're reached maxErr limit for CPU app, and number of failed tasks is growing up quickly. So, I've disabled CPU tasks near 105M.
The project is GPU-only now. At last I could get last SGS badge to be all-turquoise :)
| |
|
|
No more GFN14 tasks available for GPU ? | |
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 242 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
Yeah, same question. GFN-14 tasks stopped going out about 12 hours ago, so i've been getting "if no work available" 13's. Don't have nearly enough validation pending to hit the limit on slots, so must be something else. | |
|
|
They are back now, 29 May 2018, 18:40:47 UTC | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
No more GFN14 tasks available for GPU ?
Oops. Sorry, my fault. I'm on vacation this week, forgot to check stats. New batch of tasks is loaded now. | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
The search is 25% complete! | |
|
dukebgVolunteer tester
 Send message
Joined: 21 Nov 17 Posts: 242 ID: 950482 Credit: 23,670,125 RAC: 0
                  
|
Currently:
Highest candidate: 123456704
Haha! Might be the closest to 123456789 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Currently:
Highest candidate: 123456704
Haha! Might be the closest to 123456789
That's mad Dukebg, almost the exact same thing should happen on GFN17low today! It's up to 1234xxxx already :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12340938^131072+1 as at 7:50 is my latest. The primes are allineing! :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 920 ID: 107307 Credit: 989,182,999 RAC: 318,520
                     
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet. | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Ah brilliant, I was hopefull it would be, ;) fingers crossed
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Currently:
Highest candidate: 123456704
Haha! Might be the closest to 123456789
123456704 16384
123456746 16384
123456774 16384
123456800 16384
Not a closest one, but very close and fun anyway. | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Currently:
Highest candidate: 123456704
Haha! Might be the closest to 123456789
123456704 16384
123456746 16384
123456774 16384
123456800 16384
Not a closest one, but very close and fun anyway.
stream as a matter of interest could you tell me if I found any gfn13s. I was running them for a while and am always wondering. Cheers Rob
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Any idea who got it Jim? I can't find it. The numbers don't seem to be sent out sequentially. Cheers Rob
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
stream as a matter of interest could you tell me if I found any gfn13s. I was running them for a while and am always wondering. Cheers Rob
Yes, I've posted transitional monthly stats into our main thread and you have 6 primes and 6 DC. I still don't feel strong enough to make all stats and primes available online :) but sure it'll happen soon enough.
I should warn that almost nobody else is running GFN-13 now. Sometimes GFN-13 work is sent to new unconfigured hosts or users, or sent as backup (like few days ago when I forgot to load new batch of candidates). But most of time you'll be in "No doublecheckers" state. Server has a "last chance" feature to replace too old WUs with next ones from database (this allow you to have backlog of "validation pending" WUs higher then internal server buffer size) but it's not solves problem completely.
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
stream as a matter of interest could you tell me if I found any gfn13s. I was running them for a while and am always wondering. Cheers Rob
Yes, I've posted transitional monthly stats into our main thread and you have 6 primes and 6 DC. I still don't feel strong enough to make all stats and primes available online :) but sure it'll happen soon enough.
Sorry stream, I didn't know about this other thread. I was a late comer to the party. Subscribed now. Thanks for that. I'll stick to 14 so. :)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Any idea who got it Jim? I can't find it. The numbers don't seem to be sent out sequentially. Cheers Rob
http://www.primegrid.com/workunit.php?wuid=570747543
____________
My lucky number is 75898524288+1 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Any idea who got it Jim? I can't find it. The numbers don't seem to be sent out sequentially. Cheers Rob
http://www.primegrid.com/workunit.php?wuid=570747543
Thanks Michael, both not finished yet I see. Cheers Rob
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 920 ID: 107307 Credit: 989,182,999 RAC: 318,520
                     
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Any idea who got it Jim? I can't find it. The numbers don't seem to be sent out sequentially. Cheers Rob
You wouldn't be able to see it if I linked it, there's only one result back so far (composite). The DCer should finish relatively quickly, though. | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Any idea who got it Jim? I can't find it. The numbers don't seem to be sent out sequentially. Cheers Rob
You wouldn't be able to see it if I linked it, there's only one result back so far (composite). The DCer should finish relatively quickly, though.
Thanks Jim. Rob.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 920 ID: 107307 Credit: 989,182,999 RAC: 318,520
                     
|
12345678^131072+1 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1
Congrats Yank! It may not be prime but a really cool one to get, well I'm jealous anyway ;)
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1
Thanks Jim.
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
streamVolunteer moderator Project administrator Volunteer developer Volunteer tester Send message
Joined: 1 Mar 14 Posts: 1032 ID: 301928 Credit: 543,593,602 RAC: 8,480
                         
|
Full statistic for GFN-13/14 projects, attempt one
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
Full statistic for GFN-13/14 projects, attempt one
That is very cool, well done!!
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
EBM Send message
Joined: 1 Jun 14 Posts: 53 ID: 315843 Credit: 27,868,842 RAC: 78,686
               
|
I can't seem to get any work for this project. Is it out for now? | |
|
|
Have selected GPU Tasks for the project preferences? There is no CPU Tasks anymore.
____________
| |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Jim
Can you see if , soon to be up, 2222222^524288+1 is a candidate for gfn 19?
Cheers
Rob
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Jim
Can you see if , soon to be up, 2222222^524288+1 is a candidate for gfn 19?
Cheers
Rob
Another up soonish is 1048576^1048576+1? gfn20 Now that would be nice
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
Michael Goetz Volunteer moderator Project administrator
 Send message
Joined: 21 Jan 10 Posts: 14010 ID: 53948 Credit: 428,738,406 RAC: 1,094,876
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Jim
Can you see if , soon to be up, 2222222^524288+1 is a candidate for gfn 19?
Cheers
Rob
Another up soonish is 1048576^1048576+1? gfn20 Now that would be nice
It's known to be composite and is not in the sieve file.
____________
My lucky number is 75898524288+1 | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Jim
Can you see if , soon to be up, 2222222^524288+1 is a candidate for gfn 19?
Cheers
Rob
Another up soonish is 1048576^1048576+1? gfn20 Now that would be nice
It's known to be composite and is not in the sieve file.
Thanks Michael
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
JimB Honorary cruncher Send message
Joined: 4 Aug 11 Posts: 920 ID: 107307 Credit: 989,182,999 RAC: 318,520
                     
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Jim
Can you see if , soon to be up, 2222222^524288+1 is a candidate for gfn 19?
Cheers
Rob
2222222^524288+1 is divisible by 6222241595393, so it's not in the sieve file.
1048576^1048576+1 is the same as 32^4194304+1, which is known to be composite. | |
|
robish Volunteer moderator Volunteer tester
 Send message
Joined: 7 Jan 12 Posts: 2206 ID: 126266 Credit: 7,499,015,211 RAC: 3,557,546
                               
|
12345678^131072+1 is an actual candidate (not sieved out). At the moment it hasn't been sent out yet.
Jim
Can you see if , soon to be up, 2222222^524288+1 is a candidate for gfn 19?
Cheers
Rob
2222222^524288+1 is divisible by 6222241595393, so it's not in the sieve file.
1048576^1048576+1 is the same as 32^4194304+1, which is known to be composite.
Thanks Jim
____________
My lucky numbers 10590941048576+1 and 224584605939537911+81292139*23#*n for n=0..26 | |
|
|
|