mersenneforum.org  

Go Back   mersenneforum.org > Extra Stuff > Blogorrhea > kriesel

Reply
 
Thread Tools
Old 2021-07-10, 20:40   #67
kriesel
 
kriesel's Avatar
 
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest

2×7×383 Posts
Default

Quote:
Originally Posted by axn View Post
v7 also has faster stage 2
That's not what I measured. See https://www.mersenneforum.org/showpo...9&postcount=29. For the same fft length / similar exponent, bounds, OS, system, GPU, etc., V7.2-53 stage 2 took significantly longer.
Thanks for using the discussion thread as intended BTW. (That is surprisingly rare among some other forumites.)

Last fiddled with by kriesel on 2021-07-11 at 05:28 Reason: not quite the same exponent
kriesel is online now   Reply With Quote
Old 2021-07-10, 22:42   #68
drkirkby
 
"David Kirkby"
Jan 2021
Althorne, Essex, UK

2×3×61 Posts
Default

Quote:
Originally Posted by SELROC View Post
I'd say that you have to upgrade the bios as well.
Generally I would agree, bit I am aware of a possible reason why it might not be a good idea to update the BIOS for some people.

Some CPUs on eBay are either engineering samples of mainstream CPUs, or non-standard CPUs that were supplied to a specific customer - Amazon in particular often have non-standard CPUs. Apparently it is possible for a BIOS update to render a system unusable with a CPU that was previously working fine. So if one uses weird CPUs, and they are working, it might be better to not update the BIOS.

Last fiddled with by drkirkby on 2021-07-10 at 22:43
drkirkby is online now   Reply With Quote
Old 2021-07-10, 23:31   #69
drkirkby
 
"David Kirkby"
Jan 2021
Althorne, Essex, UK

2×3×61 Posts
Default

kriesel,
A comment on your post about worktodo.txt

https://www.mersenneforum.org/showpo...8&postcount=22

"tests_saved = integer number of future primality tests saved if a factor is found, usually 2 for a first test candidate, 1 for a double-check candidate, 0 if a sufficient P-1 has already been completed, or optionally up to 9 for aggressive P-1 factoring"

Although I have not verified it, from things I've seen written, this can be a real number, so is not restricted to integer values as stated. Someone wrote that mprime only takes two digits after the decimal point.

Last fiddled with by drkirkby on 2021-07-10 at 23:37
drkirkby is online now   Reply With Quote
Old 2021-07-11, 01:12   #70
kriesel
 
kriesel's Avatar
 
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest

2×7×383 Posts
Default

Quote:
Originally Posted by drkirkby View Post
this can be a real number, so is not restricted to integer values as stated. Someone wrote that mprime only takes two digits after the decimal point.
Strictly speaking, mprime / prime95 would be supporting rational numbers x/10n. I've only ever seen single-digit integer values issued by PrimeNet or manual assignment page. I've run CUDAPm1 with several values.

Last fiddled with by kriesel on 2021-07-11 at 01:15
kriesel is online now   Reply With Quote
Old 2021-07-11, 02:19   #71
axn
 
axn's Avatar
 
Jun 2003

5,051 Posts
Default

Quote:
Originally Posted by kriesel View Post
That's not what I measured. See https://www.mersenneforum.org/showpo...9&postcount=29. For the same exponent, bounds, OS, system, GPU, etc., V7.2-53 stage 2 took significantly longer.
Interesting. Do you have the screen output / logs from the v7 run (specifically with the maxAlloc enforced)?

I am interested in seeing all the internal parameters it chose.
axn is offline   Reply With Quote
Old 2021-07-11, 05:01   #72
Uncwilly
6809 > 6502
 
Uncwilly's Avatar
 
"""""""""""""""""""
Aug 2003
101×103 Posts

23·1,223 Posts
Default

Quote:
Originally Posted by kriesel View Post
Strictly speaking, mprime / prime95 would be supporting rational numbers x/10n. I've only ever seen single-digit integer values issued by PrimeNet or manual assignment page.
Currently PrimeNet has been issuing only 1 and 2. But if the user sets the value to, say, 1.3 Prime95 will gladly calculate bounds based upon that value. I have taken to using values 1<x<1.4 when doing P-1 to free up exponents. I like finding factors.
Uncwilly is offline   Reply With Quote
Old 2021-07-11, 08:15   #73
drkirkby
 
"David Kirkby"
Jan 2021
Althorne, Essex, UK

2×3×61 Posts
Default

Quote:
Originally Posted by kriesel View Post
Strictly speaking, mprime / prime95 would be supporting rational numbers x/10n. I've only ever seen single-digit integer values issued by PrimeNet or manual assignment page. I've run CUDAPm1 with several values.
I have only seen integers issued by the server. I convert the 2's to 1's. (Up until quite recently, I normally found that the P-1 factoring had been done by someone else on category 0 and 1 assignments, so tests_saved was 0. However, now I'm finding that's no longer the case, and it's usually necessary to do the P-1 factoring).

However, if one wants to use non-integer values for tests_saved, as Uncwilly chooses to use 1.4, tests_saved must be written as a decimal, and not as a fraction m/n. As a test to see if fractions were interpreted as fractions, I put these three lines in worktodo.add, then run mprime -c.
Code:
PRP=1,2,504575707,-1,76,14/10
PRP=1,2,504575749,-1,76,7/5
PRP=1,2,504575831,-1,76,1.4
After that, worktodo.txt contained the following lines.
Code:
PRP=CF4DE4E86F51E9B8ADD3DC07311E828F,1,2,504575707,-1,76,10
PRP=5DDE68758BD37D820D703388F5153630,1,2,504575749,-1,76,7
PRP=F7DD04FC451DCF6B7A9A2A38FDC828C1,1,2,504575831,-1,76,1.4
(All exponents have been unassigned, so the AIDs are no longer valid).

Anyway, I thought your entry about worktodo.txt could do with a slight tweak to reflect the fact that the numbers do not have to be integers.

Last fiddled with by drkirkby on 2021-07-11 at 08:52
drkirkby is online now   Reply With Quote
Old 2021-07-11, 18:35   #74
kriesel
 
kriesel's Avatar
 
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest

2·7·383 Posts
Default

Quote:
Originally Posted by drkirkby View Post
if one wants to use non-integer values for tests_saved, as Uncwilly chooses to use 1.4, tests_saved must be written as a decimal, and not as a fraction m/n.

Anyway, I thought your entry about worktodo.txt could do with a slight tweak to reflect the fact that the numbers do not have to be integers.
My point regarding rationals not the larger set called reals is there is no way to enter irrational or transcendental numbers as input. I did not mean that ratios or any algebraic or function forms were accepted input. The source code shows %f format in sscanf. Any tests_saved value of finite precision put on a worktodo entry, entered by %f, or its approximate internal representation in binary, is a rational number. Some applications further restrict tests_saved to natural numbers or a small subset.

https://www.mersenneforum.org/showpo...8&postcount=22 has been modified repeatedly regarding tests_saved and with misc. edits.
kriesel is online now   Reply With Quote
Old 2021-07-11, 18:36   #75
kriesel
 
kriesel's Avatar
 
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest

2×7×383 Posts
Default

Quote:
Originally Posted by axn View Post
Interesting. Do you have the screen output / logs from the v7 run (specifically with the maxAlloc enforced)?

I am interested in seeing all the internal parameters it chose.
Log excerpts are added to the post linked earlier.

Last fiddled with by kriesel on 2021-07-12 at 05:03
kriesel is online now   Reply With Quote
Old 2021-07-12, 02:26   #76
axn
 
axn's Avatar
 
Jun 2003

116738 Posts
Default

Quote:
Originally Posted by kriesel View Post
Log exerpts are added to the post linked earlier.
I was looking for the stage 2 parameters used by v7. It's ok if you don't have it handy. Is preda aware of this regression?
axn is offline   Reply With Quote
Old 2021-07-12, 05:13   #77
kriesel
 
kriesel's Avatar
 
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest

2×7×383 Posts
Default

Quote:
Originally Posted by axn View Post
I was looking for the stage 2 parameters used by v7. It's ok if you don't have it handy. Is preda aware of this regression?
Added to https://www.mersenneforum.org/showpo...9&postcount=29. I can't say whether Preda has seen that, https://www.mersenneforum.org/showpo...35&postcount=2 updated in April, or
https://mersenneforum.org/showpost.p...&postcount=197 posted on March 7. The last gpuowl Github change was March 2.

Last fiddled with by kriesel on 2021-07-12 at 05:28
kriesel is online now   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mersenne Prime mostly-GPU Computing reference material kriesel kriesel 31 2020-07-09 14:04
P-1 discussion thread Rincewind Five or Bust - The Dual Sierpinski Problem 57 2011-02-06 21:53
Sieving discussion thread jasong Twin Prime Search 311 2010-10-22 18:41
PRP discussion thread philmoore Five or Bust - The Dual Sierpinski Problem 83 2010-09-25 10:20
Theological Discussion Thread clowns789 Soap Box 3 2006-03-09 04:05

All times are UTC. The time now is 15:38.


Fri Jul 16 15:38:55 UTC 2021 up 49 days, 13:26, 1 user, load averages: 1.58, 1.63, 1.65

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.