Is it okay to use matlabpool in multiple matlab sessions?
Show older comments
I'm sharing a server with someone else in my lab. To reduce executive time, I use the matlab parallel toolbox. However, matlab gives me this warning:
Warning: Found 1 pre-existing parallel job(s) created by matlabpool that are running.
This is because another person is also using the matlabpool. Should I ignore this warning? Or should I better use matlabpool when others don't? Need some help here!
4 Comments
Matt J
on 14 Jan 2013
Are you sure that the job mentioned in the warning is due to the other sesssion? What happens when you execute "matlabpool close" and then try to re-open the pool?
Peng
on 14 Jan 2013
Matt J
on 14 Jan 2013
Can you ask that person to close his/her matlabpool to test whether the problem goes away?
Peng
on 14 Jan 2013
Accepted Answer
More Answers (2)
Peng
on 14 Jan 2013
0 votes
Thomas Ibbotson
on 14 Jan 2013
By default matlabpool will try and use all the workers available in a cluster. For example if you have 16 workers in a cluster and open a matlabpool:
>> matlabpool open myClusterProfile
Starting matlabpool ... connected to 16 workers.
Now the entire cluster is busy with your interactive matlabpool session. Someone in another MATLAB session will not be able to use the cluster (including opening their own matlabpool) until you close yours. It is not possible to share a single matlabpool between matlab sessions.
You can however share the cluster, by not using all the available workers, e.g.
>> matlabpool open myClusterProfile 8
Starting matlabpool ... connected to 8 workers.
Now there are still 8 workers available for someone else to use. Either with their own matlabpool or with batch jobs.
HTH, Tom
Categories
Find more on Job and Task Creation in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!