Reputation: 63
I have a problem. I need to set a machine with 32 cores in local setting(to matlabpool), but it says to me that the maximum number is 8 cores(I knew that). The configuration must be in a script because I'm using a cluster.
Upvotes: 0
Views: 826
Reputation: 25160
In release R2011b, the limit has increased to 12, see the release notes. That still doesn't help you enough though - to exceed that limit you must purchase MATLAB Distributed Computing Server licences to run on your cluster.
Using the latest (R2012a) syntax, you can export and import cluster 'Profiles' (formerly known as 'Configurations') using parallel.exportProfile
and parallel.importProfile
.
Upvotes: 1