Processing blocks of data in parallel
Show older comments
I have a data set which is 4 million rows by 80 columns wide. I want to split the data up into equal sized blocks so that each block is processsed in Parallel.
Would the Parallel computing tool box allow a function to be written such that each block is processed in parallel?
Accepted Answer
More Answers (1)
Daniel Shub
on 4 Oct 2011
0 votes
This depends on the processing. If each block can be processed independently from the other blocks, then yes the Parallel computing toolbox can handle that. If the processing for each block depends on the other blocks, I don't think the Parallel computing toolbox has a simple MPI (although I have never tried).
With standard MATLAB you can see if parfor can help.
Categories
Find more on Parallel for-Loops (parfor) in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!