Clear Filters
Clear Filters

How do I set NumWorkers for a cluster profile using Slurm or another third-party scheduler without a GUI?

4 views (last 30 days)

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 10 Apr 2024
Edited: MathWorks Support Team on 10 Apr 2024
To set the number of workers in your cluster profile that uses a third-party scheduler such as Slurm, please use these commands below. These commands can be used without a GUI, or just with a command-line interface.
c=parcluster('MyClusterProfileName');
c.NumWorkers = 10;
c.saveProfile;
Make sure you replace "MyClusterProfileName" with your cluster profile's name, or remove this section if the cluster profile in question is your default profile. You may change the number 10 to value of your choice.
Please make sure you are using the latest version of the integrations scripts found from the link below.
Third-party scheduler integration scripts

More Answers (0)

Categories

Find more on Cluster Configuration in Help Center and File Exchange

Tags

No tags entered yet.

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!