Processing blocks of data in parallel
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (1)
Daniel Shub
il 4 Ott 2011
0 voti
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.
Categorie
Scopri di più su Parallel for-Loops (parfor) in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!