Added | 22 Feb 2009 |
Updated | 27 May 2009 |
Type | White Paper |
few more nuggets |
|
|
Submitted by Ahmed on 2009, May 6 - 09:07. |
||
when dealing with large amounts of data; keep in mind that the main memory challenge is to find a continous block of memory for evey matrix. Which means that using small arrays is much easier than one giant array - so slice your big array into smaller ones and do you processing on them. - preallocate when possible |
||