Running four different independent scripts in parallel

1 Ansicht (letzte 30 Tage)
Ghazwan
Ghazwan am 12 Apr. 2017
Kommentiert: Ghazwan am 14 Apr. 2017
Hello, I have a four cores machine, and I need to run a matlab code on each one of them. Say, I want the four files to run on each core in parallel not sequentially.The files do not interact with each other and they are all in the same folder.
Could anyone please tell me how to do that?
Say my files are: Pump1.m , Pump2.m, Pump3.m, Pump4.m
Thank you so much
  2 Kommentare
Sebastian Castro
Sebastian Castro am 12 Apr. 2017
To answer whether this is possible, it would help to know what those separate files do.
Are they scripts or functions? Do those functions accept inputs and/or return outputs? Do the scripts create workspace variables, MAT-files, other files?
The fact that the files do not interact is a good start as far as parallel computing feasibility.
Ghazwan
Ghazwan am 13 Apr. 2017
They are scripts. They return outputs. And yes, they create variables in the workspace. Thank you

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 13 Apr. 2017
Bearbeitet: Walter Roberson am 13 Apr. 2017
parpool(4)
parfor K = 1 : 4
if K == 1; Pump1; end
if K == 2; Pump2; end
if K == 3; Pump3; end
if K == 4; Pump4; end
end
You can also use spmd and test labindex()
It is also possible to generalize to a series of functions whose handles are given. However if you do that then you need to be sure to add those files to the parallel pool; otherwise the workers will not be able to find them through the handle. The code I show above is not pretty but it has the advantage that parfor can see the files clearly and so would know to make them available.
Note: if the routines do arithmetic computation on reasonable sized matrices, you might find that the overall result is slower than if you had executed them in sequence. By default each parallel worker only gets access to one core, but MATLAB tries to run "sufficiently large" array calculations in parallel, and that parallel operation can end up being more efficient than doing several unrelated things at the same time.
  3 Kommentare
Walter Roberson
Walter Roberson am 13 Apr. 2017
Above you wrote,
"They are scripts. They return outputs. And yes, they create variables in the workspace."
That is a problem. Scripts that are run within a parfor can, at most, assign to variables that were plainly assigned to earlier in the parfor. You should turn the scripts into functions that return appropriate values (if you care about the values outside of the parfor)
Ghazwan
Ghazwan am 14 Apr. 2017
It works now. Thank you so much for your help.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Parallel for-Loops (parfor) 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