mersenneforum.org  

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

Reply
 
Thread Tools
Old 2008-12-05, 22:26   #199
petrw1
1976 Toyota Corona years forever!
 
petrw1's Avatar
 
"Wayne"
Nov 2006
Saskatchewan, Canada

23×661 Posts
Default

Quote:
Originally Posted by Prime95 View Post
V4 credits? Those wouldn't be in the count either.
Only 139 there:
Code:
v4-LL 110 
v4-TF 29
petrw1 is online now   Reply With Quote
Old 2008-12-06, 03:05   #200
cheesehead
 
cheesehead's Avatar
 
"Richard B. Woods"
Aug 2002
Wisconsin USA

22×3×641 Posts
Default

Quote:
Originally Posted by petrw1 View Post
As expected each extra bit level about doubles the elapsed time ...

... with one exception:

From 64 to 65 bits my PIII time is almost quadruple 63 to 64 bits.
Code:
Bits    P4 (Hrs)  PIII (Hrs)
64    0.35      1.37
65    0.63      6.34
Is this simply a result of 32 vs 64 bit architecture?
Not simply, but yes, there is a second-order 64-bit architecture effect.

Basically, on 32-bit architecture the registers used for integer arithmetic are 64 bits wide. Numbers less than 264 can be operated-upon by a single integer instruction. When the numbers involved are greater than 264, so that they are 65 or more bits long, integer arithmetic operations on them have to be performed by two or more instructions, _plus_ instructions for combining the 64-bit result parts (e.g., carries from the low-order part to the high-order part) appropriately.

So far, this is true regardless of whether the underlying architecture is "32-bit" or "64-bit", because it depends on the register width, not the bus width or address length. Perhaps the "64-bit" architecture enables 64-bit integer arithmetic registers to operate somewhat faster, but that wouldn't change the fact that a 65-bit number would require _at least_ two instructions for each integer arithmetic operation.

However, "64-bit" architecture probably has 128-bit-wide registers for integer arithmetic. This allows a 65-bit number to be handled in a single integer arithmetic operation instead of two or more, and thus eliminates the more-than-doubling number of instructions for numbers greater than 264, compared to the instructions needed for numbers less than 264.

So, you see a more-than-doubling jump in time when going past the 264 size of numbers on 32-bit architecture that has 64-bit integer arithmetic registers (or on 64-bit architecture that has 64-bit registers), but not on 64-bit architecture that has 128-bit registers.
cheesehead is offline   Reply With Quote
Old 2008-12-06, 17:24   #201
S485122
 
S485122's Avatar
 
"Jacob"
Sep 2006
Brussels, Belgium

2×7×137 Posts
Default Formula to compute credit

Would it be possible to post the formula used to calculate the credit for the different types of assigments :
- TF factor found,
- TF no factor found,
- P-1 Factor found in stage 1,
- P-1 factor found in stage 2,
- P-1 no factor found,
- LL checks.

There are changes over the previous version.

Jacob
S485122 is offline   Reply With Quote
Old 2008-12-06, 18:35   #202
James Heinrich
 
James Heinrich's Avatar
 
"James Heinrich"
May 2004
ex-Northern Ontario

23×181 Posts
Default

Quote:
Originally Posted by S485122 View Post
Would it be possible to post the formula used to calculate the credit for the different types of assigments
I had asked that in this thread... haven't received much response (yet?)
James Heinrich is online now   Reply With Quote
Old 2008-12-06, 18:37   #203
ET_
Banned
 
ET_'s Avatar
 
"Luigi"
Aug 2002
Team Italia

43·113 Posts
Default

Quote:
Originally Posted by Prime95 View Post
The team web pages need a lot of work - they will improve over time. There is no way to change the password.
OK, then I'll wait some weeks before updating Team_Italia stats.

Though I was sure that some PW handling could be done from server side (like deleting a Team and recreating it). I'll be living with it, waiting to know which updates may be done from team pages.

Now, the last question:
3 - Once a user has joined a team, is it possible for the user to still see his personal stats ranking together with team stats ranking?

Don't bother to answer me if the answer has to do with the team pages work...

Thanks George!

Luigi
ET_ is offline   Reply With Quote
Old 2008-12-06, 19:43   #204
Prime95
P90 years forever!
 
Prime95's Avatar
 
Aug 2002
Yeehaw, FL

200716 Posts
Default

Quote:
Originally Posted by S485122 View Post
Would it be possible to post the formula used to calculate the credit for the different types of assigments :
- TF factor found,
- TF no factor found,
- P-1 Factor found in stage 1,
- P-1 factor found in stage 2,
- P-1 no factor found,
- LL checks.

There are changes over the previous version.
Hope you can read PHP code.
Attached Files
File Type: txt cpu_credit.txt (6.9 KB, 321 views)
Prime95 is offline   Reply With Quote
Old 2008-12-06, 20:34   #205
S485122
 
S485122's Avatar
 
"Jacob"
Sep 2006
Brussels, Belgium

111011111102 Posts
Default

Quote:
Originally Posted by Prime95 View Post
Hope you can read PHP code.
First time I read PHP but I think I can, especially with code that is so well documented. To be able to use that piece of code one needs access to the table "t_gimps_credit_timings".

And shouldn't the P-1 credit be the difference between the P-1 work already done and the reported work ? Or is that part of the code in another module ?

Jacob
S485122 is offline   Reply With Quote
Old 2008-12-06, 20:38   #206
Prime95
P90 years forever!
 
Prime95's Avatar
 
Aug 2002
Yeehaw, FL

32·911 Posts
Default

Quote:
Originally Posted by S485122 View Post
And shouldn't the P-1 credit be the difference between the P-1 work already done and the reported work ? Or is that part of the code in another module ?
That's the cheesehead bug. You can pad your P-1 stats (until you're caught and I manually zero them :)

Remember P-1 is really only supposed to be done once.
Prime95 is offline   Reply With Quote
Old 2008-12-06, 20:40   #207
Prime95
P90 years forever!
 
Prime95's Avatar
 
Aug 2002
Yeehaw, FL

819910 Posts
Default

Quote:
Originally Posted by S485122 View Post
To be able to use that piece of code one needs access to the table "t_gimps_credit_timings".
fftlen timing min_exponent max exponent
32 8.7840000000000003E-7 0 743
48 1.1399999999999999E-6 743 1099
64 1.4087999999999998E-6 1099 1469
80 0.0000017592 1469 1827
96 0.000002052 1827 2179
112 2.4623999999999999E-6 2179 2539
128 2.5271999999999997E-6 2539 2905
160 3.5639999999999997E-6 2905 3613
192 4.2935999999999999E-6 3613 4311
224 5.2511999999999998E-6 4311 5029
256 5.4743999999999996E-6 5029 5755
320 7.3439999999999995E-6 5755 7149
384 8.7839999999999992E-6 7149 8527
448 0.000010536 8527 9933
512 1.1327999999999999E-5 9933 11359
640 1.7039999999999999E-5 11359 14119
768 2.0591999999999999E-5 14119 16839
896 2.5415999999999999E-5 16839 19639
1024 2.7647999999999997E-5 19639 22477
1280 3.9119999999999998E-5 22477 27899
1536 4.7592000000000001E-5 27899 33289
1792 5.6879999999999998E-5 33289 38799
2048 6.1680000000000006E-5 38799 44339
2560 8.5199999999999997E-5 44339 55099
3072 1.0247999999999999E-4 55099 65729
3584 0.00012648 65729 76559
4096 1.2959999999999998E-4 76559 87549
5120 0.000192 87549 108800
6144 2.2559999999999998E-4 108800 129900
7168 2.7599999999999999E-4 129900 151300
8192 0.0002856 151300 172700
10240 3.9839999999999998E-4 172700 214400
12288 4.8479999999999997E-4 214400 255300
14336 5.9040000000000004E-4 255300 297300
16384 6.1439999999999997E-4 297300 340400
20480 8.3760000000000008E-4 340400 423300
24576 0.0010176 423300 504600
28672 1.2599999999999998E-3 504600 587500
32768 1.3127999999999998E-3 587500 671400
40960 1.7256000000000001E-3 671400 835200
49152 2.0951999999999998E-3 835200 995500
57344 2.5607999999999998E-3 995500 1158000
65536 2.7384000000000002E-3 1158000 1325000
81920 3.8592000000000001E-3 1325000 1648000
98304 4.6871999999999999E-3 1648000 1966000
114688 5.6808000000000006E-3 1966000 2287000
131072 5.9928000000000004E-3 2287000 2614000
163840 7.3535999999999992E-3 2614000 3251000
196608 9.0743999999999998E-3 3251000 3875000
229376 1.0775999999999999E-2 3875000 4512000
262144 1.1975999999999999E-2 4512000 5158000
327680 1.5311999999999999E-2 5158000 6421000
393216 1.8839999999999999E-2 6421000 7651000
458752 0.02256 7651000 8908000
524288 0.0252 8908000 10180000
655360 3.3264000000000002E-2 10180000 12650000
786432 4.1375999999999996E-2 12650000 15070000
917504 4.9200000000000001E-2 15070000 17550000
1048576 5.5920000000000004E-2 17550000 20050000
1310720 7.0080000000000003E-2 20050000 24930000
1572864 8.5919999999999996E-2 24930000 29690000
1835008 0.10224 29690000 34560000
2097152 0.11375999999999999 34560000 39500000
2621440 0.14999999999999999 39500000 49100000
3145728 0.18312 49100000 58520000
3670016 0.21839999999999998 58520000 68130000
4194304 0.24360000000000001 68130000 77910000
5242880 0.31295999999999996 77910000 96830000
6291456 0.37919999999999998 96830000 115300000
7340032 0.45839999999999997 115300000 134200000
8388608 0.504 134200000 153400000
10485760 0.67200000000000004 153400000 190700000
12582912 0.81120000000000003 190700000 227300000
14680064 0.98399999999999987 227300000 264600000
16777216 1.0800000000000001 264600000 302600000
20971520 1.4903999999999999 302600000 376100000
25165824 1.8215999999999999 376100000 448000000
29360128 2.1791999999999998 448000000 521500000
33554432 2.3832 521500000 596000000
Prime95 is offline   Reply With Quote
Old 2008-12-07, 18:04   #208
cheesehead
 
cheesehead's Avatar
 
"Richard B. Woods"
Aug 2002
Wisconsin USA

22×3×641 Posts
Default

Quote:
Originally Posted by cheesehead View Post
in this hard-for-me-to-read yellowish (or-greenish?) color. (I have red-green-color-deficient vision.)

hard-for-me-to-read color: "!!At least one CPU is 90 days or more unreported and appears lost.".

I'm using Firefox 3.0
I found the way to adjust text colors in Firefox, so will try to remember not to complain about colors again.
cheesehead is offline   Reply With Quote
Old 2008-12-08, 01:29   #209
retina
Undefined
 
retina's Avatar
 
"The unspeakable one"
Jun 2006
My evil lair

5×17×79 Posts
Default

Quote:
Originally Posted by 1997rj7 View Post
What happened to the Completed link that used to be in the Lifetime Stats section of your account report? Is there another way to see what has completed?
I think this is a good reason to get rid of the menus completely. Firstly, they don't work without JS. Secondly, they hide links forcing people to click multiple times to find the link they really want. Thirdly, even with all the menus open it still doesn't fill an entire page height so they are not allowing people to see more that might otherwise "be lost" below the screen. Fourthly, after opening a menu item and clicking on a hidden (now exposed) link then the next page will collapse all the menus again (very annoying).

I wonder what problem was being solved by the addition of the collapsed menu items? I hope it wasn't only added just because it could be added (or maybe even because it "looked nicer?).

I vote to restore the fully expanded menus items (no JS please, it is just not necessary). With all the items shown it would much easier to find what one wants without having to click everywhere to expose links.
retina is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
GPU upgrade chris2be8 GPU Computing 8 2015-11-14 17:05
Wiki upgrade... Xyzzy mersennewiki 3 2011-02-18 03:31
How would you upgrade this? jasong Factoring 5 2005-09-09 19:26
Please upgrade to version 1.1 xilman NFSNET Discussion 6 2004-06-17 01:24
ga-7dx upgrade crash893 Hardware 4 2002-09-26 06:27

All times are UTC. The time now is 17:03.


Sat Mar 25 17:03:10 UTC 2023 up 219 days, 14:31, 0 users, load averages: 0.71, 0.88, 0.85

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, 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.

≠ ± ∓ ÷ × · − √ ‰ ⊗ ⊕ ⊖ ⊘ ⊙ ≤ ≥ ≦ ≧ ≨ ≩ ≺ ≻ ≼ ≽ ⊏ ⊐ ⊑ ⊒ ² ³ °
∠ ∟ ° ≅ ~ ‖ ⟂ ⫛
≡ ≜ ≈ ∝ ∞ ≪ ≫ ⌊⌋ ⌈⌉ ∘ ∏ ∐ ∑ ∧ ∨ ∩ ∪ ⨀ ⊕ ⊗ 𝖕 𝖖 𝖗 ⊲ ⊳
∅ ∖ ∁ ↦ ↣ ∩ ∪ ⊆ ⊂ ⊄ ⊊ ⊇ ⊃ ⊅ ⊋ ⊖ ∈ ∉ ∋ ∌ ℕ ℤ ℚ ℝ ℂ ℵ ℶ ℷ ℸ 𝓟
¬ ∨ ∧ ⊕ → ← ⇒ ⇐ ⇔ ∀ ∃ ∄ ∴ ∵ ⊤ ⊥ ⊢ ⊨ ⫤ ⊣ … ⋯ ⋮ ⋰ ⋱
∫ ∬ ∭ ∮ ∯ ∰ ∇ ∆ δ ∂ ℱ ℒ ℓ
𝛢𝛼 𝛣𝛽 𝛤𝛾 𝛥𝛿 𝛦𝜀𝜖 𝛧𝜁 𝛨𝜂 𝛩𝜃𝜗 𝛪𝜄 𝛫𝜅 𝛬𝜆 𝛭𝜇 𝛮𝜈 𝛯𝜉 𝛰𝜊 𝛱𝜋 𝛲𝜌 𝛴𝜎𝜍 𝛵𝜏 𝛶𝜐 𝛷𝜙𝜑 𝛸𝜒 𝛹𝜓 𝛺𝜔