vote up 4 vote down star
1

I have a routine that adds ordinal elements ("Day" or "Night" enumerated type) to a multi-dimensional dynamic array, which is declared as:

TShiftType = (stDay, stNight);
TScheduleArray =  array of array of array [1..DaysPerWeek] of TShiftType;

The array could contain anything between 1 element (e.g. (Day, Day, Day, Day, Day, Night, Night)) and over 20,000 elements. Each element may itself have sub-elements depending on how many weeks are being processed.

So one element in a two-week array could look like:

((stDay, stDay, stDay, stDay, stDay, stNight, stNight), (stDay, stDay, stDay, stDay, stDay, stNight, stNight))

This runs extremely fast and works very well when the number of elements is relatively low (about under 1000). Once the number of weeks and elements increases, just adding a new element to the array (after calling SetLength to increase the length of the array by one) starts to slow down exponentially.

Sometimes I also get an Access Violation. When I use the "Find Error" facility in Delphi, it takes me to the @DynArrayAsg method in the CPU window. But I never get the EOutOfMemory exception that the Delphi help says I would get if not enough memory was available to reallocate the variable.

Is this slowing down of access to memory expected behaviour? I am using Delphi 6.

flag

1 Answer

vote up 7 vote down check

Yes, because when you reallocate it, if there's not enough contiguous space to just add one element on the end of the existing array, it has to find another block that's big enough, allocate it, copy your entire existing array, and then deallocate the original. The bigger your array, the longer the copy becomes.

TList helps to mitigate this problem by allocating its internal array in powers-of-two sizes, instead of "exactly as big as I need", and then using a Count variable to mark the upper bounds of what's actually being used. Maybe you could do something similar?

Also, if you don't already have it, get FastMM. It's much better at allocating and reallocating memory than Delphi 6's built-in memory manager.

link|flag
Thanks Mason, nice explanation. I've got D2009 (for the FastMM part) waiting to go but a third-party component is standing in the way at the moment. Do you think a TList would be a better solution in this case, where I have a multi-dimensional array? – _J_ Nov 23 at 16:02
Probably not, but you could look at the way TList is implemented and use it as a template to build your own 3-dimensional array class. – Mason Wheeler Nov 23 at 16:06
Thanks. You've answered the original question about why it slows down so thanks. – _J_ Nov 23 at 16:08
2  
Also, AFAIK you can use FastMM with Delphi 6. That should make your reallocations faster and maybe get rid of the AV too. – Mason Wheeler Nov 23 at 16:11
2  
fastmm will hide it a bit, maybe 100% faster, but if you go another magnitude 2, that will be gone already. Better rethink your structure – Marco van de Voort Nov 23 at 16:45
show 2 more comments

Your Answer

Get an OpenID
or
never shown

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