![]() |
|
|
#56 |
|
Jun 2012
1 Posts |
what are the limits for p in 2^p - 1 = Mersenne prime? What is the highest number that I can test?
|
|
|
|
|
|
#57 |
|
"James Heinrich"
May 2004
ex-Northern Ontario
3×5×227 Posts |
From the source, /gwnum/gwnum.h:
Code:
/* Some mis-named #defines that describe the maximum Mersenne number */ /* exponent that the gwnum routines can process. */ #define MAX_PRIME 79300000L /* Maximum number of x87 bits */ #define MAX_PRIME_SSE2 595800000L /* SSE2 bit limit */ #define MAX_PRIME_AVX 595800000L /* AVX bit limit */ #define MAX_FFTLEN 4194304L /* 4M FFT max for x87 */ #define MAX_FFTLEN_SSE2 33554432L /* 32M FFT max for SSE2 */ #define MAX_FFTLEN_AVX 33554432L /* 32M FFT max for AVX */ |
|
|
|
|
|
#58 | |
|
Jun 2003
Ottawa, Canada
49516 Posts |
Hi everyone. I'm seeing some strange behaviour, at least v26 used to work fine with this. If I have a worktodo.ini file that looks like this:
Code:
Pminus1=1,2,8700011,1,150000,"3" Pminus1=1,2,8700031,1,150000,"3" Code:
P-1 found a factor in stage #2, B1=150000, B2=15000000, E=12. UID: ANONYMOUS, 2^8700011+1 has a factor: 3 Quote:
|
|
|
|
|
|
|
#59 | |||
|
"James Heinrich"
May 2004
ex-Northern Ontario
3·5·227 Posts |
Quote:
Quote:
Quote:
|
|||
|
|
|
|
|
#60 |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
3×29×83 Posts |
I was looking through the AVX yjmp tables for the FFT lengths you use, and I didn't realize until just now that there are two yjmp tables, each with slightly different information. The first is "yjmptable DD 0", and the second is "yjmptablep DD 0"; is the second for P-1 or something?
The major difference I noticed is that some lengths appear to be missing from the second; the first has 2000K, 2016K, 2016K, lots of 2M, 2240K, 2240K, lots of 2304K, while the second skips 2000K, 2016K, and 2240K completely, and has a lot fewer entries under 2304K. I didn't check the other lengths, though I'd guess there are similar differences throughout the tables. Why? Edit: It seems from a perfunctory glance the the lengths missing from the second table are those which are not 7-smooth. What would that change? Last fiddled with by Dubslow on 2012-06-22 at 07:02 |
|
|
|
|
|
#61 |
|
P90 years forever!
Aug 2002
Yeehaw, FL
2×53×71 Posts |
One table for k*b^n-c calculations, the other for k*b^n+c calculations.
|
|
|
|
|
|
#62 |
|
Sep 2002
2×3×7×19 Posts |
I don't know whether I should be worried or not, but it ran a few iterations just now to check the roundoff error before starting a new P-1 on my machine and the roundoff error it was usin as a base was 0.24275. It said if it was higher than that, a bigger FFT would be used. All the 1,000 iterations had a roundoff error of over 0.25xxx. Should I be worried alot? The exponent in question was 55288637.
Last fiddled with by Jwb52z on 2012-06-22 at 18:19 |
|
|
|
|
|
#63 |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
3·29·83 Posts |
No, that's perfectly normal.
That just means that the FFT selection was risky, so that's why Prime95 ran the test; when the test finished, it decided that the small/aggressive length was too risky. That's the so called "soft crossover" -- between all FFT lengths is a range of a few thousand exponents which try the smaller FFT, but which might need use the larger FFT depending on hardware. Without such a test, George would have to use a "hard crossover" which is a clear line between two lengths, but that line would have to be pretty low to guarantee it would work for all hardware, which means some hardware might not use the most efficient length. (PS Thanks George )
Last fiddled with by Dubslow on 2012-06-22 at 18:30 |
|
|
|
|
|
#64 |
|
Sep 2002
2·3·7·19 Posts |
Thank you for the fast response. I think that, and I know i've not been doing this long even including all the time put together leaving out the times I temporarily quit, this may be the first time i saw that happen, or at least caught it being on my screen.
|
|
|
|
|
|
#65 |
|
Jul 2012
1 Posts |
after two minutes i start prime 95 blend test, my cpu usage still stay at 100% but my multiplyer start to go up and down.... just wanna ask is that normal.
for your info i have a overcloked 2500k ...cpu voltage was set at 1.245v .. |
|
|
|
|
|
#66 |
|
Basketry That Evening!
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88
160658 Posts |
Yes, that's normal. Almost all CPUs have a function called Turbo Boost, where if your CPU hasn't been doing anything but then jumps to 100% usage, it will increase the multiplier past the usual point; after a few minutes at 100%, there's too much heat, and Turbo Boost deactivates and the multiplier drops back to the base line.
For a non-overclocked 2500K, the baseline multiplier is 33, so speed = 3.3 GHz. This may or may not be your baseline, depending on how you did the overclock. Last fiddled with by Dubslow on 2012-07-03 at 19:05 Reason: s/33/3.3/ |
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Prime95 version 27.3 | Prime95 | Software | 148 | 2012-03-18 19:24 |
| Prime95 version 26.3 | Prime95 | Software | 76 | 2010-12-11 00:11 |
| Prime95 version 25.5 | Prime95 | PrimeNet | 369 | 2008-02-26 05:21 |
| Prime95 version 25.4 | Prime95 | PrimeNet | 143 | 2007-09-24 21:01 |
| When the next prime95 version ? | pacionet | Software | 74 | 2006-12-07 20:30 |