Is it possible to execute 2 scripts in 2 different matlab sessions at the same time, both using parfor?

4 ビュー (過去 30 日間)
I want to launch a script in a matlab session and then, while it is running, I want to launch the same script (with one different parameter) in another matlab session, both scripts using parfor. Yes, I would like both to run parallel, so it is 2 parfor in parallel haha!
When I launch the second one, I get this warning:
Warning: Found 1 pre-existing communicating job(s) created by pool that are
running. You can use 'delete(myCluster.Jobs)' to remove all jobs created
with profile local. To create 'myCluster' use 'myCluster =
parcluster('local')'.
Is it a real problem? What happen when the first script finishes and shuts down the parallel pool it has openned? Will it also close the parallel pool of the other session? Do I save time doing this or should I run the 2 executions one after the other?

回答 (1 件)

Matthew Eicholtz
Matthew Eicholtz 2016 年 10 月 5 日
Can you provide more details about your code? How do you create the pool? How many workers are you using?
I am having trouble replicating your warning. I just ran the following code in parallel in two sessions of MATLAB with no problem.
parfor ii=1:100000000
fprintf('%d\n',ii);
end
  3 件のコメント
Matthew Eicholtz
Matthew Eicholtz 2016 年 10 月 6 日
I did exactly as you suggested (ran parpool in two different sessions). Still no warning for me. Sorry. Perhaps it has to do with the version you are running? I am running R2016a.
Hugo Lafaye
Hugo Lafaye 2016 年 10 月 7 日
Yes probably, R2014a for me. Thank you anyway!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeParallel Computing Fundamentals についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by