How to use mpiprofile outside of pmode?

2 Ansichten (letzte 30 Tage)
Sandor Toth
Sandor Toth am 5 Nov. 2012
I am trying to profile a parallel function outside of pmode, using the following commands:
pJob = createParallelJob();
createTask(pJob,@par_func,1,{linspace(0,1,32),8});
set(pJob,'MinimumNumberOfWorkers',8);
set(pJob,'MaximumNumberOfWorkers',8);
submit(pJob);
waitForState(pJob);
getAllOutputArguments(pJob)
where par_func has a single output:
function pInfo = par_func()
spmd
mpiprofile on;
% My code here
pInfo = mpiprofile('info');
end
However the getAllOutputArguments returns empty cell. I am very new using parallel processing toolbox, so it should be a simple mistake. :)
Thanks!

Antworten (0)

Kategorien

Mehr zu Parallel Computing 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