- Do you have a parallel pool open? I.e. created using parpool, or automatically? If no pool is open then a parfor loop will not be run in parallel anyway.
- Don't use parfor.
Why accessing 2d matrix in parfor so slow?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Let's say I have a large matrix A:
A = rand(10000,10000);
The following serial code took around 0.5 seconds
tic
for i=1:5
r=9999*rand(1);
disp(A(round(r)+1, round(r)+1))
end
toc
Whereas the following code with parfor took around 47 seconds
tic
parfor i=1:5
r=9999*rand(1);
disp(A(round(r)+1, round(r)+1))
end
toc
How can I speed this up?
0 Commenti
Risposte (1)
Stephen23
il 9 Ago 2018
Modificato: Stephen23
il 9 Ago 2018
"How can I speed this up?"
Why do you think that parfor should be faster? The only time that parfor is faster is when the time saved doing the operations in parallel is greater than the overhead required. This topic has been discussed many time on this forum, which also suggest possible improvements to your code:
This is also explained in the documentation:
Your loop contains very fast commands anyway, mostly just round and indexing, so it is quite possible that you will not see any benefit from parfor.
0 Commenti
Vedere anche
Categorie
Scopri di più su Parallel for-Loops (parfor) in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!