C# Prime Generator, Maxxing out Bit Array - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:35:59Zhttp://stackoverflow.com/feeds/question/973891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/973891/c-prime-generator-maxxing-out-bit-array0C# Prime Generator, Maxxing out Bit ArrayJoe2009-06-10T05:56:28Z2009-06-10T06:20:30Z
<p>(C#, prime generator)
Heres some code a friend and I were poking around on:</p>
<pre><code>public List<int> GetListToTop(int top)
{
top++;
List<int> result = new List<int>();
BitArray primes = new BitArray(top / 2);
int root = (int)Math.Sqrt(top);
for (int i = 3, count = 3; i <= root; i += 2, count++)
{
int n = i - count;
if (!primes[n])
for (int j = n + i; j < top / 2; j += i)
{
primes[j] = true;
}
}
if (top >= 2)
result.Add(2);
for (int i = 0, count = 3; i < 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#9738950Answer by Mitch Wheat for C# Prime Generator, Maxxing out Bit ArrayMitch Wheat2009-06-10T05:58:20Z2009-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#9739090Answer by paxdiablo for C# Prime Generator, Maxxing out Bit Arraypaxdiablo2009-06-10T06:01:44Z2009-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#9739260Answer by jerryjvl for C# Prime Generator, Maxxing out Bit Arrayjerryjvl2009-06-10T06:07:43Z2009-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>