change default parpool in matlab.rc
7 views (last 30 days)
Show older comments
The parpool documentation indicates: With default preferences, MATLAB® starts a pool on the local machine with one worker per physical CPU core up to the limit set in the default profile. For more information on parallel preferences, see Specify Your Parallel Preferences.
This is too many with our many core / many user servers. Can the default be changed adminstratively via the toolbox/local/matlab.rc file?
0 Comments
Answers (1)
Raymond Norris
on 15 Jun 2023
R2023a added a Property to your profile, PreferredPoolNumWorkers, which defaults to
min(NumWorkers,32)
Therefore, if NumWorkers is e.g., 256, the default size will be 32. NumWorkers (typically) maps to the number of MATLAB Parallel Server licenses you own.
If you want to override this default, set PreferredPoolNumWorkers to a more preferred value.
0 Comments
See Also
Categories
Find more on Parallel Computing Fundamentals in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!