![]() |
|
|
#12 |
|
Aug 2015
2·23 Posts |
I'm entitled to run the TF out of curiosity if I wish.
I'm reporting a bug, which Oliver may wish to investigate. I've realised the error resulted from stages=0 having been set, so rather than performing ^67-^68 mfakto was performing ^67-^71, for which the checksum was invalid. Really the software needs to either report that the checkpoint is for a different bit range, or simply ignore the checkpoint because it's not relevant. The main issue with the present functionality is multiple instances of mfakto can't be run on different bit levels of the same exponent, because the checkpoints are changed to .bad-<checksum>. Ideally the software should check for a bit-range relevant checkpoint and if none can be found then report whether a checkpoint exists for a different bit range, so it's clear when the software has made every attempt to locate a bit-level relevant checkpoint and has ultimately ignored all checkpoints for that exponent. Last fiddled with by mattmill30 on 2017-01-27 at 11:48 |
|
|
|
|
|
#13 | |
|
"Kieren"
Jul 2011
In My Own Galaxy!
27AE16 Posts |
Quote:
Remember what the aim of the project is: finding primes. Finding a single factor fulfills that aim by rejecting a candidate. Complete factoring is a sideline which some folks pursue. It does not advance the core purpose of the project. |
|
|
|
|
|
|
#14 |
|
Aug 2015
2·23 Posts |
Hopefully the issue that I'm reporting, which affects the functionality of the software for all exponents, won't be overshadowed by a debate over my decision to test a particular exponent.
The issue prevents multiple mfakto instances with SieveOnGPU=0 set from testing different bit-levels of the same exponent, which is useful for fully utilising a chipset GPU without experiencing the console GUI performance hit. |
|
|
|
|
|
#15 |
|
Undefined
"The unspeakable one"
Jun 2006
My evil lair
619410 Posts |
|
|
|
|
|
|
#16 | ||
|
"Oliver"
Mar 2005
Germany
100010101112 Posts |
Quote:
Quote:
About multiple instances on the same exponent... mfaktc and mfakto can do this but you just need to start them in different directories (which is recommended even if you run on different exponents for mfaktc) Oliver P.S. I'm not a fan of automagic software actually I try to KISS. |
||
|
|
|
|
|
#17 |
|
"Kieren"
Jul 2011
In My Own Galaxy!
27AE16 Posts |
True dat. However, the core mission is still stated as involving Mersenne Primes. Clearly, this is related to many other mathematical interests, which are amply represented. However, also, as with other kinds of participation, programming is purely voluntary. (And I trust the author's opinion as to what is necessary.)
Last fiddled with by kladner on 2017-01-27 at 23:17 |
|
|
|
|
|
#18 |
|
Sep 2003
5·11·47 Posts |
You are indeed.
But what people are trying to tell you is that all the small exponents like these have been scanned and combed through so thoroughly (using a couple of thousand ECM "curves") that the odds of finding some still-undiscovered factor as small as 67 bits are less than the odds of winning a multi-million dollar Powerball jackpot. The smallest factors are almost certainly at least 95 bits, probably considerably more. Given this reality, the author of the program will most likely greet your bug report with a shrug. You won't really accomplish anything by doing TF on these except contributing to global warming. PS, the way ECM works is like taking shots in the dark. Each factor is like a target that you're trying to hit, but can't see. Some targets might be near (small factors), but most are pretty far (larger factors). You're blindfolded and you have a laser pointer, and you swivel around and aim in some random direction and fire the laser. If you repeat that hundreds or thousands of times without hitting any targets (each time firing in a different randomly chosen direction), then after a while you can be pretty sure that you've eliminated the possibility of any targets being nearby, although you can only be 99.99999999...% sure and never exactly 100%. You might take X number of shots and say, OK, I'm pretty sure there are no targets within 10 feet. Then you take Y more shots and say, now I'm pretty sure there are no targets within 100 feet. There is a formula that lets you quantify this mathematically in a precise way. On the other hand, faraway targets might still be out there, they're so far away that they look tiny and you either need a really lucky shot to hit one or you need to take many, many shots and hope to get lucky once. However if you're very unlucky, the nearest target might be hundreds of miles away or even millions of miles away, completely out of range in any realistic scenario. There's no way to know in advance. By contrast, TF is like walking blindfolded and pacing all over every square inch of some terrain. If a target exists, you'll bump into it. So if you don't bump into anything, you can be 100% sure that no targets (factors) exist on the territory you've walked over. The catch is, the amount of ground you can cover by walking is much smaller than the range of a laser beam. And every time you increase your TF limit by 1 bit, you double the amount of terrain you have to walk over, so at some point it just gets impractical to continue. Last fiddled with by GP2 on 2017-01-27 at 23:47 |
|
|
|
|
|
#19 |
|
"/X\(‘-‘)/X\"
Jan 2013
1011011101002 Posts |
So ECM uses lasers... that sounds like fun!
|
|
|
|
|
|
#20 | |
|
Romulan Interpreter
Jun 2011
Thailand
2·5·312 Posts |
Quote:
But, as other people said, unless you have a new algorithm, or you look for fake credits, TF in this range is futile. I say fake credits because you can report "no factor to 65" without doing any work, for all exponents in the ECM range, get millions of credit, and still be right with a very high probability. So much ECM has been done... Last fiddled with by LaurV on 2017-01-28 at 05:49 |
|
|
|
|
|
|
#21 | |||||
|
Aug 2015
2E16 Posts |
Quote:
Quote:
Code:
$ mfakto.exe -tf 156066943 68 69 $ mfakto.exe -tf 156066943 69 70 Quote:
Quote:
|
|||||
|
|
|
|
|
#22 | |
|
Feb 2016
! North_America
2×41 Posts |
Quote:
And consider TF as a short job, it's fast and you wouldn't want to hang onto failed savefiles It would be messy. As far as i know 1 instance can "only" work at one assigment at a time. Each instance will load it's own checkpoint in the current assigment. So what you want is a way to split then distribute assigments into different folders' (instances) worktodos. I'm do not know too much about scripting bit it's definitely possible. //Btw is there any tool to do this? I don't know what misfit or other automatic clients are capable of. Short: mfakt* already does some savefile checking afaik. $ mfakto.exe -tf 156066943 68 69 $ mfakto.exe -tf 156066943 69 70 are TWO different assigments. The first one finishes; writes to results.txt; deletes checkpoint; scans for next assigment, creates checkpoint for the 2nd one... Also if you find a factor in the first one you probably wouldn't want to run the latter one. Also see "StopAfterFactor=" Last fiddled with by thyw on 2017-02-01 at 00:30 |
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Mfaktc sieveprimes=5000 OK? | NBtarheel_33 | GPU Computing | 34 | 2012-07-27 10:41 |
| Current Effort | R.D. Silverman | Cunningham Tables | 63 | 2009-04-28 17:18 |
| Current status | fivemack | NFSNET Discussion | 97 | 2009-04-17 22:50 |
| Current status | fivemack | NFSNET Discussion | 90 | 2006-11-13 13:37 |
| Current Status | moo | LMH > 100M | 0 | 2006-09-02 01:15 |