C# Prime Generator, Maxxing out Bit Array - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:35:59Z http://stackoverflow.com/feeds/question/973891 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/973891/c-prime-generator-maxxing-out-bit-array 0 C# Prime Generator, Maxxing out Bit Array Joe 2009-06-10T05:56:28Z 2009-06-10T06:20:30Z <p>(C#, prime generator) Heres some code a friend and I were poking around on:</p> <pre><code>public List&lt;int&gt; GetListToTop(int top) { top++; List&lt;int&gt; result = new List&lt;int&gt;(); BitArray primes = new BitArray(top / 2); int root = (int)Math.Sqrt(top); for (int i = 3, count = 3; i &lt;= root; i += 2, count++) { int n = i - count; if (!primes[n]) for (int j = n + i; j &lt; top / 2; j += i) { primes[j] = true; } } if (top &gt;= 2) result.Add(2); for (int i = 0, count = 3; i &lt; primes.Length; i++, count++) { if (!primes[i]) { int n = i + count; result.Add(n); } } return result; } </code></pre> <p>On my dorky AMD x64 1800+ (dual core), for all primes below 1 billion in 34546.875ms. Problem seems to be storing more in the bit array. Trying to crank more than ~2billion is more than the bitarray wants to store. Any ideas on how to get around that?</p> <p>Thanks guys =)</p> http://stackoverflow.com/questions/973891/c-prime-generator-maxxing-out-bit-array/973895#973895 0 Answer by Mitch Wheat for C# Prime Generator, Maxxing out Bit Array Mitch Wheat 2009-06-10T05:58:20Z 2009-06-10T06:20:30Z <p>.NET 32 bit can maximally allocate 2^31 - 1 (approx.) for any single .NET object.</p> <p>You would have to go to a 64 bit OS.</p> <p><strong>Update</strong>: In fact, The BitArray class's constructor does not have an overload that takes anything larger than an int. So you would have to split up into ranges.</p> http://stackoverflow.com/questions/973891/c-prime-generator-maxxing-out-bit-array/973909#973909 0 Answer by paxdiablo for C# Prime Generator, Maxxing out Bit Array paxdiablo 2009-06-10T06:01:44Z 2009-06-10T06:01:44Z <p>I would "swap" parts of the array out to disk. By that, I mean, divide your bit array into half-billion bit chunks and store them on disk.</p> <p>The have only a few chunks in memory at any one time. With C# (or any other OO language), it should be easy to encapsulate the huge array inside this chunking class.</p> <p>You'll pay for it with a slower generation time but I don't see any way around that until we get larger address spaces and 128-bit compilers.</p> http://stackoverflow.com/questions/973891/c-prime-generator-maxxing-out-bit-array/973926#973926 0 Answer by jerryjvl for C# Prime Generator, Maxxing out Bit Array jerryjvl 2009-06-10T06:07:43Z 2009-06-10T06:07:43Z <p>Or as an alternative approach to the one suggested by Pax, make use of the new Memory-Mapped File classes in .NET 4.0 and let the OS decide which chunks need to be in memory at any given time.</p> <p>Note however that you'll want to try and optimise the algorithm to increase locality so that you do not needlessly end up swapping pages in and out of memory (trickier than this one sentence makes it sound).</p>