mersenneforum.org  

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

Reply
 
Thread Tools
Old 2013-08-23, 02:11   #254
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

2×47×101 Posts
Default

Quote:
Originally Posted by pepi37 View Post
Every result of Prime95 is in format ( using Prime95 for PRP test)

x*xx^xxxxxxx-1 is not prime. RES64: E57D7936A6CAACCC. We4: 9A9ABA99,00000000

Can output be without We4: 9A9ABA99,00000000 ?
And if can what option to use?
sed 's: W.*::' < results.txt > myPRPresults.txt
Batalov is offline   Reply With Quote
Old 2013-08-23, 05:16   #255
pepi37
 
pepi37's Avatar
 
Dec 2011
After milion nines:)

1,451 Posts
Default

Quote:
Originally Posted by Batalov View Post
sed 's: W.*::' < results.txt > myPRPresults.txt
Currently, I use method similar to yours
Thanks for answer :)
pepi37 is offline   Reply With Quote
Old 2013-08-30, 00:05   #256
Citrix
 
Citrix's Avatar
 
Jun 2003

158210 Posts
Default

Would like to report a prime95 bug.
Running ECM, once a factor is found the program continues to use the CPU but the program becomes unresponsive.

Happens for 32 bit and 64 bit and other numbers that I tried to factor.
Attached Files
File Type: zip p95v279.win32.zip (399 Bytes, 91 views)
Citrix is offline   Reply With Quote
Old 2013-08-30, 02:06   #257
Prime95
P90 years forever!
 
Prime95's Avatar
 
Aug 2002
Yeehaw, FL

7,537 Posts
Default

Quote:
Originally Posted by Citrix View Post
Would like to report a prime95 bug.
Running ECM, once a factor is found the program continues to use the CPU but the program becomes unresponsive.
It isn't hung, it is doing a probable prime test on the cofactor. Why? The code does this if the exponent is less than 100,000. Why? Because when the ECM code was written, the only base supported was 2 and the PRP test was fast. Your number, on the other hand, has a large base and the test is quite slow.

There is no workaround for this bug. I will fix it in the next release.
Prime95 is offline   Reply With Quote
Old 2013-08-30, 02:36   #258
Citrix
 
Citrix's Avatar
 
Jun 2003

2×7×113 Posts
Default

Thanks for the clarification. I will await the new version.
(I will avoid using ECM for sieving as it will not save the PRP test).

Last fiddled with by Citrix on 2013-08-30 at 02:39
Citrix is offline   Reply With Quote
Old 2013-09-11, 05:04   #259
sdbardwick
 
sdbardwick's Avatar
 
Aug 2002
North San Diego County

5×137 Posts
Default Benchmark oddity

Had a few hours to set up a new laptop, so I of course installed P95 to get a benchmark.

Attatched is the result.txt from the laptop. The first two runs were with single channel DDR3-1600, the last with dual channel DDR3-1600.

No ability in BIOS to disable hyperthreading.

During each benchmark run, the first group of exponents runs on cores 1 and 3 with 50% processor utilization. The second group of exponents also runs on cores 1 and 3 with 50% utilization. The third group (4 threads on 2 cores) runs on all cores, but with 25-39% processor utilization.


This was on a fully updated Windows 7 Pro x64 system. There are reports that Win 8 has some funkiness that makes conventional benchmarking unreliable (power saving measures mess with timers) so I wonder if MS has backported some of the measures.
Attached Files
File Type: txt results.txt (10.9 KB, 95 views)

Last fiddled with by sdbardwick on 2013-09-11 at 05:10
sdbardwick is offline   Reply With Quote
Old 2013-09-11, 21:08   #260
blahpy
 
blahpy's Avatar
 
Jun 2013

6B16 Posts
Default

Quote:
Originally Posted by sdbardwick View Post
During each benchmark run, the first group of exponents runs on cores 1 and 3 with 50% processor utilization. The second group of exponents also runs on cores 1 and 3 with 50% utilization. The third group (4 threads on 2 cores) runs on all cores, but with 25-39% processor utilization.
That is very usual, it essentially boils down to the fact that even with 4 threads you still have only two processors, and for a processor intensive program such as prime95 one processor can't keep up with the throughput of two threads.
blahpy is offline   Reply With Quote
Old 2013-10-01, 17:09   #261
James Heinrich
 
James Heinrich's Avatar
 
"James Heinrich"
May 2004
ex-Northern Ontario

11×311 Posts
Default

If Prime95 uses different P-1 bounds because of what's in the save file, it doesn't display the actual probability, only the probability it thought it was going to be before it saw there was a savefile with different bounds. For example:
Quote:
Assuming no factors below 2^79 and 2 primality tests saved if a factor is found.
Optimal bounds are B1=2655000, B2=65047500
Chance of finding a factor is an estimated 4.36%
Using AVX FFT length 16M, Pass1=2K, Pass2=8K, 2 threads
Setting affinity to run helper thread 1 on any logical CPU.
Ignoring suggested B1 value, using B1=2945000 from the save file
Ignoring suggested B2 value, using B2=83932500 from the save file
Chance of finding a factor is an estimated 4.61%
The line in bold shows the predicted probability before looking at the savefile.
The line in red isn't in the Prime95 output, but should be: the probability based on the bounds in the savefile.
James Heinrich is offline   Reply With Quote
Old 2013-10-08, 18:52   #262
TObject
 
TObject's Avatar
 
Feb 2012

34×5 Posts
Exclamation Possible bug report

Windows64, Prime95, v27.9, build 1
CPU: Intel Core i7 920, LL test, one worker plus two helper threads

Exponent: M64220633

Trying 1000 iterations for exponent 64220633 using 3360K FFT.
If average roundoff error is above 0.24286, then a larger FFT will be used.
Final average roundoff error is 0.24194, using 3360K FFT for exponent 64220633.


I got the following error at iteration 15028257.

Iteration: 15028257/64220633, ERROR: ROUND OFF (0.4375) > 0.40

I restored the save file from a few hours before the error, and re-run the test starting with the iteration 14150041. I got the same round off error again at iteration 15028257.

If this is a hardware issue, what are the chances I would get the error at the exact same iteration?

Is it possible the error happened before iteration 14150041 and was not reported until iteration 15028257?

Thanks.
TObject is offline   Reply With Quote
Old 2013-10-08, 19:47   #263
Prime95
P90 years forever!
 
Prime95's Avatar
 
Aug 2002
Yeehaw, FL

7,537 Posts
Default

Quote:
Originally Posted by TObject View Post
If this is a hardware issue, what are the chances I would get the error at the exact same iteration?
This is not a hardware problem and it is not a software problem. Everything is going according to plan!

You are testing an exponent very close to the maximum allowable for the FFT size. Thus, roundoff errors will be larger than most LL tests. Occasionally, one will exceed 0.4 -- and this is OK. Prime95 will retest that iteration just to make sure all is OK.



Correction: This could be considered a software bug if prime95 flatly stated an error occurred. I thought it said something like "possible error" but I could be remembering wrong.

Last fiddled with by Prime95 on 2013-10-08 at 19:49 Reason: Added correction
Prime95 is offline   Reply With Quote
Old 2013-10-08, 19:58   #264
TObject
 
TObject's Avatar
 
Feb 2012

1100101012 Posts
Default

It says:

Possible hardware errors have occurred during the test! 1 ROUND OFF > 0.4.
Confidence in final result is fair.


Thank you.

Last fiddled with by TObject on 2013-10-08 at 20:04
TObject is offline   Reply With Quote
Reply



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

All times are UTC. The time now is 06:29.


Mon Aug 2 06:29:09 UTC 2021 up 10 days, 58 mins, 0 users, load averages: 1.24, 1.24, 1.20

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.