Filter löschen
Filter löschen

Minimize MDCS Data Transfer

2 Ansichten (letzte 30 Tage)
Philip
Philip am 27 Okt. 2014
Kommentiert: Philip am 31 Okt. 2014
I am using MDCS on a Linux cluster. I repeatedly for a parfor loop in the following spirit:
while
parfor i=1:n
x(i) = a(i,:)*b;
end
end
Here the vector b is used on all cores, every time I call parfor. However, I believe each time I call parfor, b is being sent to all the cores, which slows down the code. How can I repeatedly use parfor with constant data such that I do not have to keep resending the same data each time I call a parfor loop? Thank you.

Akzeptierte Antwort

Edric Ellis
Edric Ellis am 29 Okt. 2014
You could use the Worker Object Wrapper which is designed for this sort of situation.
  1 Kommentar
Philip
Philip am 31 Okt. 2014
Thank you! This is exactly what I needed- it really sped up my code.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB Parallel Server finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by