Why accessing 2d matrix in parfor so slow?

1 次查看(过去 30 天)
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?

回答(1 个)

Stephen23
Stephen23 2018-8-9
编辑:Stephen23 2018-8-9
"How can I speed this up?"
  1. 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.
  2. Don't use parfor.
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.

类别

Help CenterFile Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by