Fastest way to calculate primes in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T11:46:59Z http://stackoverflow.com/feeds/question/30877 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c 1 Fastest way to calculate primes in C#? palotasb 2008-08-27T18:54:44Z 2008-12-29T22:26:02Z <p>I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people.</p> <pre><code>int Until = 20000000; BitArray PrimeBits = new BitArray(Until, true); /* * Sieve of Eratosthenes * PrimeBits is a simple BitArray where all bit is an integer * and we mark composite numbers as false */ PrimeBits.Set(0, false); // You don't actually need this, just PrimeBits.Set(1, false); // remindig you that 2 is the smallest prime for (int P = 2; P &lt; (int)Math.Sqrt(Until) + 1; P++) if (PrimeBits.Get(P)) // These are going to be the multiples of P if it is a prime for (int PMultiply = P * 2; PMultiply &lt; Until; PMultiply += P) PrimeBits.Set(PMultiply, false); // We use this to store the actual prime numbers List&lt;int&gt; Primes = new List&lt;int&gt;(); for (int i = 2; i &lt; Until; i++) if (PrimeBits.Get(i)) Primes.Add(i); </code></pre> <p>Maybe I could use multiple <code>BitArray</code>s and <a href="http://msdn.microsoft.com/en-us/library/system.collections.bitarray.and.aspx" rel="nofollow">BitArray.And()</a> them together?</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/30894#30894 1 Answer by Ryan Farley for Fastest way to calculate primes in C#? Ryan Farley 2008-08-27T18:58:44Z 2008-08-27T18:58:44Z <p><a href="http://beta.stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers" rel="nofollow">This question</a> on the same subject might give some ideas.</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/31268#31268 0 Answer by Pete Kirkham for Fastest way to calculate primes in C#? Pete Kirkham 2008-08-27T20:52:54Z 2008-08-27T20:52:54Z <p>Parallelisation aside, you don't want to be calculating sqrt(Until) on every iteration. You also can assume multiples of 2, 3 and 5 and only calculate for N%6 in {1,5} or N%30 in {1,7,11,13,17,19,23,29}.</p> <p>You should be able to parallelize the factoring algorithm quite easily, since the Nth stage only depends on the sqrt(n)th result, so after a while there won't be any conflicts. But that's not a good algorithm, since it requires lots of division.</p> <p>You should also be able to parallelize the sieve algorithms, if you have writer work packets which are guaranteed to complete before a read. Mostly the writers shouldn't conflict with the reader - at least once you've done a few entries, they should be working at least N above the reader, so you only need a synchronized read fairly occasionally (when N exceeds the last synchronized read value). You shouldn't need to synchronize the bool array across any number of writer threads, since write conflicts don't arise (at worst, more than one thread will write a true to the same place). </p> <p>The main issue would be to ensure that any worker being waited on to write has completed. In C++ you'd use a compare-and-set to switch to the worker which is being waited for at any point. I'm not a C# wonk so don't know how to do it that language, but the Win32 InterlockedCompareExchange function should be available. </p> <p>You also might try an actor based approach, since that way you can schedule the actors working with the lowest values, which may be easier to guarantee that you're reading valid parts of the the sieve without having to lock the bus on each increment of N.</p> <p>Either way, you have to ensure that all workers have got above entry N before you read it, and the cost of doing that is where the trade-off between parallel and serial is made. </p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/34217#34217 2 Answer by Tyler for Fastest way to calculate primes in C#? Tyler 2008-08-29T09:08:27Z 2008-08-29T09:08:27Z <p>You might save some time by cross-referencing your bit array with a doubly-linked list, so you can more quickly advance to the next prime.</p> <p>Also, in eliminating later composites once you hit a new prime p for the first time - the first composite multiple of p remaining will be p*p, since everything before that has already been eliminated. In fact, you only need to multiply p by all the remaining potential primes that are left after it in the list, stopping as soon as your product is out of range (larger than Until).</p> <p>There are also some good probabilistic algorithms out there, such as the Miller-Rabin test. <a href="http://en.wikipedia.org/wiki/Primality_test" rel="nofollow">The wikipedia page</a> is a good introduction.</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/34269#34269 0 Answer by DrPizza for Fastest way to calculate primes in C#? DrPizza 2008-08-29T09:41:31Z 2008-08-29T09:41:31Z <p>I assume you have profiling data so that you know where the bottlenecks lie?</p> <p>If so, could we see it?</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/37289#37289 0 Answer by Pete Kirkham for Fastest way to calculate primes in C#? Pete Kirkham 2008-09-01T00:06:01Z 2008-09-01T00:06:01Z <p>@DrPizza Profiling only really helps improve an implementation, it doesn't reveal opportunities for parallel execution, or suggest better algorithms (unless you've experience to the otherwise, in which case I'd really like to see your profiler).</p> <p>I've only single core machines at home, but ran a Java equivalent of your BitArray sieve, and a single threaded version of the inversion of the sieve - holding the marking primes in an array, and using a <a href="http://en.wikipedia.org/wiki/Wheel_factorization" rel="nofollow">wheel</a> to reduce the search space by a factor of five, then marking a bit array in increments of the wheel using each marking prime. It also reduces storage to O(sqrt(N)) instead of O(N), which helps both in terms of the largest N, paging, and bandwidth. </p> <p>For medium values of N (1e8 to 1e12), the primes up to sqrt(N) can be found quite quickly, and after that you should be able to parallelise the subsequent search on the CPU quite easily. On my single core machine, the wheel approach finds primes up to 1e9 in 28s, whereas your sieve (after moving the sqrt out of the loop) takes 86s - the improvement is due to the wheel; the inversion means you can handle N larger than 2^32 but makes it slower. Code can be found <a href="http://www.tincancamera.com/examples/java/primes/" rel="nofollow">here</a>. You could parallelise the output of the results from the naive sieve after you go past sqrt(N) too, as the bit array is not modified after that point; but once you are dealing with N large enough for it to matter the array size is too big for ints.</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/37305#37305 0 Answer by DrPizza for Fastest way to calculate primes in C#? DrPizza 2008-09-01T00:31:13Z 2008-09-01T00:31:13Z <blockquote> <p>@DrPizza Profiling only really helps improve an implementation, it doesn't reveal opportunities for parallel execution, or suggest better algorithms (unless you've experience to the otherwise, in which case I'd really like to see your profiler).</p> </blockquote> <p>Without profiling we cannot tell which bit of the program needs optimizing.</p> <p>I mean, I'm assuming that the purpose of the program is not "find low prime numbers" because there are lists of those available anyway, so you wouldn't bother finding them algorithmically, would you?</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/44722#44722 0 Answer by Pete Kirkham for Fastest way to calculate primes in C#? Pete Kirkham 2008-09-04T20:38:54Z 2008-09-04T20:38:54Z <blockquote> <p>Without profiling we cannot tell which bit of the program needs optimizing.</p> </blockquote> <p>If you were in a large system, then one would use a profiler to find that the prime number generator is the part that needs optimizing. </p> <p>Profiling a loop with a dozen or so instructions in it is not usually worth while - the overhead of the profiler is significant compared to the loop body, and about the only ways to improve a loop that small is to change the algorithm to do fewer iterations. So IME, once you've eliminated any expensive functions and have a known target of a few lines of simple code, you're better off changing the algorithm and timing an end-to-end run than trying to improve the code by instruction level profiling.</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/79028#79028 0 Answer by EvilTeach for Fastest way to calculate primes in C#? EvilTeach 2008-09-17T01:43:13Z 2008-09-17T01:43:13Z <p>You also should consider a possible change of <a href="http://en.wikipedia.org/wiki/Sieve_of_Atkin" rel="nofollow">algorithms</a>.</p> <p>Consider that it may be cheaper to simply add the elements to your list, as you find them.</p> <p>Perhaps preallocating space for your list, will make it cheaper to build/populate.</p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/79137#79137 0 Answer by Jason Jackson for Fastest way to calculate primes in C#? Jason Jackson 2008-09-17T01:57:54Z 2008-09-17T01:57:54Z <p>Are you trying to find new primes? This may sound stupid, but you might be able to load up some sort of a data structure with known primes. I am sure someone out there has a list. It might be a much easier problem to find existing numbers that calculate new ones.</p> <p>You might also look at Microsofts <a href="http://en.wikipedia.org/wiki/Parallel_FX_Library" rel="nofollow">Parallel FX Library</a> for making your existing code multi-threaded to take advantage of multi-core systems. With minimal code changes you can make you for loops multi-threaded. </p> http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c/80736#80736 0 Answer by Thomas Danecker for Fastest way to calculate primes in C#? Thomas Danecker 2008-09-17T07:15:11Z 2008-09-17T07:15:11Z <p>There's a very good article about the Sieve of Eratosthenes: <a href="http://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf" rel="nofollow">The Genuine Sieve of Eratosthenes</a></p> <p>It's in a functional setting, but most of the opimization do also apply to a procedural implementation in C#.</p> <p>The two most important optimizations are to start crossing out at P^2 instead of 2*P and to use a wheel for the next prime numbers.</p> <p>For concurrency, you can process all numbers till P^2 in parallel to P without doing any unnecessary work.</p>