I have not used PackedArray before, but just started looking at using them from reading some discussion on them here today.
What I have is lots of large size 1D and 2D matrices of all reals, and no symbolic (it is a finite difference PDE solver), and so I thought that I should take advantage of using PackedArray.
I have an initialization function where I allocate all the data/grids needed. So I went and used ToPackedArray on them. It seems a bit faster, but I need to do more performance testing to better compare speed before and after and also compare RAM usage.
But while I was looking at this, I noticed that some operations in M automatically return lists in PackedArray already, and some do not.
For example, this does not return packed array
a = Table[RandomReal[], {5}, {5}];
Developer`PackedArrayQ[a]
But this does
a = RandomReal[1, {5, 5}];
Developer`PackedArrayQ[a]
and this does
a = Table[0, {5}, {5}];
b = ListConvolve[ {{0, 1, 0}, {1, 4, 1}, {0, 1, 1}}, a, 1];
Developer`PackedArrayQ[b]
and also matrix multiplication does return result in packed array
a = Table[0, {5}, {5}];
b = a.a;
Developer`PackedArrayQ[b]
But element wise multiplication does not
b = a*a;
Developer`PackedArrayQ[b]
My question : Is there a list somewhere which documents which M commands return PackedArray vs. not? (assuming data meets the requirements, such as Real, not mixed, no symbolic, etc..)
Also, a minor question, do you think it will be better to check first if a list/matrix created is already packed before calling calling ToPackedArray on it? I would think calling ToPackedArray on list already packed will not cost anything, as the call will return right away.
thanks,
update (1)
Just wanted to mention, that just found that PackedArray symbols not allowed in a demo CDF as I got an error uploading one with one. So, had to remove all my packing code out. Since I mainly write demos, now this topic is just of an academic interest for me. But wanted to thank everyone for time and good answers.
ToPackedArray[Table[0, {10}]]in it, and then uploaded it my WRI authoring area to generate a demo CDF but the WRI uploader (which verifies demo files before uploading) rejected it saying thatPackedArraysymbol is not allowed. So basically this package is not allowed to be used in demos. You can try it yourself. I am sure there are good reasons why, security, support etc... but the bottom line, PackedArray can't be used in a WRI demonstration at least for now – Nasser Jan 8 '12 at 22:36Developer) or parts of it, are not supported in the current version of the browser plugin. But I always test by uploading a demo I am working on whenever I add something new to it, or use a new build-in symbol, and such, to make sure it still would work in the plugin before I continue. I do not want to add 1,000 lines of code that depends on a function/symbol, then find later than this function is not supported ;) – Nasser Jan 9 '12 at 0:38