Matrix multiplication
On Mar 12, 2012, at 5:40 AM, Patrik Waldmann wrote:
Dear members, I noticed that there isn't a function for matrix multiplication in the new parallel library. What would be the most efficient way to do a matrix multiplication there?
The parallel package is for *explicit* parallelization. R already does implicit parallelization (using OpenMP or multi-threaded BLAS or both) automatically - this includes matrix multiplication. Cheers, Simon