vote up 0 vote down star
2

(C#, prime generator) Heres some code a friend and I were poking around on:

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;
    }

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?

Thanks guys =)

flag

3 Answers

vote up 0 vote down check

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.

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.

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.

link|flag
@pax: did you mean 64bit compilers? – Mitch Wheat Jun 10 at 6:05
We have 64-bit compilers now, don't we? I know we do in the mainframe world. I would have thought the Intel C++ compiler (at a minimum) was 64-bit since they've had those chips out for some time. – paxdiablo Jun 10 at 6:27
vote up 0 vote down

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.

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).

link|flag
vote up 0 vote down

.NET 32 bit can maximally allocate 2^31 - 1 (approx.) for any single .NET object.

You would have to go to a 64 bit OS.

Update: 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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.