Cluster uses only one node, even though 5 nodes Running (parfor)
Show older comments
I am running on our cluster an .m file which contains parfor loops.
Using a cluster config file (below), I request 5 nodes, each nodes has 48 procs, which I open with parpool(5*48) workers.
I am able to logon to each node individually and monitor its use with htop.
I see that on each node indeed matlab is running. But it seems that only 1 node is being used by looking at ram usage. If I increase the parfor loop, the process crashes.
I was looking at other posts, that mention setting a parameter LASTN = maxNumCompThreads('automatic'). This is equal to 30 before setting anything. I have tried setting this equal to the total number of workers, eg numProcs*numNodes=48*5.
- Here is the node that's being used: 111-150GB being used. When the parfor loop is too big, that node's ram maxes out at 187 and matlab crashes. Also, perhaps noteworthy this is not the head node.

2. Here is an example of an unused node: Note that 34 G is the total ram usage when matlab is idle

This is the config file I run, before I run my job. To confirm stuff before the run I can do eg c.AdditionalProperties.NumNodes and ... .numWorkers and get the expected amount (numnodes=numworkers=5*48)
clear;clc
allNames = parallel.clusterProfiles()
rehash toolbox
configCluster
%/usr/local/MATLAB/R2019
c=parcluster;
c.AdditionalProperties.WallTime = '24:20:0';
c.AdditionalProperties.QueueName = 'CAC48M192_L';
c.AdditionalProperties.AccountName = 'redacted';
nn = 5;
pp = 48;
c.AdditionalProperties.NumNodes = nn;
c.AdditionalProperties.ProcsPerNode = pp;
c.AdditionalProperties.NumWorkers = pp*nn;
c.saveProfile
%end
1 Comment
Science Machine
on 4 Oct 2022
Accepted Answer
More Answers (1)
Raymond Norris
on 6 Oct 2022
Starting a parpool will create very little activity for the workers. It's only once you run a parallel construct (e.g., parfor) will any work be given to the workers.
Increasing the parfor loop shouldn't crash the workers. What are working are you doing? Did you request enough memory (c.AdditionalProperties.MemUsage)? Or do you mean increasing the parallel pool?
I can't tell where you're running MATLAB (your machine, head node, compute node?), but I suspect if the maxNumCompThreads is 30, and there are 48 cores per node, you're not running MATLAB on the compute node. You don't want thread count to be greater than the number of cores on a node (since they won't spawn across nodes). To set the thread count, call
c.NumThreads = 48;
This will then force each worker to run on its own node.
Workers are capable of running more than one node. Post a bit more context and we can figure out what's going on.
- Are you running MATLAB on your machine, head node, or compute node?
- Are you sbumitting jobs with parpool or batch?
- What size pool are you starting (i.e., parpool(X) or batch(.., 'Pool', X);
- Can you provide the code you're trying to run?
5 Comments
Science Machine
on 11 Oct 2022
Science Machine
on 12 Oct 2022
Raymond Norris
on 12 Oct 2022
Hi @Science Machine. If you have access to 5 nodes with 48 cores/node then, yes, you could run a parallel pool of 240 workers. Keep in mind that the threads MATLAB will spawn and the processes that the workers start all share the 240 cores you request. Additionally, the threads don't run across nodes, only the workers. Let me give a couple of specific examples.
c = parcluster;
c.NumThreads = 2;
pool = c.parpool(120);
In this case, we start 120 workers (let's say over 5 nodes), with each worker having access to 2 threads (this could be use for fft, eig, etc.). It's important that NumThreads is not greater than 48. For instance, this should fail to submit
c = parcluster;
c.NumThreads = 120;
pool = c.parpool(2);
In all likelihood, MemUsage is per core.
I have a couple of comments regarding your code
- I'm assuming this is all one single function, pl. For readability, please auto-indent your code and repost. I can then take a closer look.
- You have two parfor-loops. One for reading the circles and the other for the cross-spectral matrix. I don't know how much work (time/memory) is required for either of these, so it's hard to say what the RAM would be like.
- It looks like you want to parallelize the nested for-loops c and mm. You can only parallelize one of them.
Before running this on the cluster, I'm assuming you've run this with a local pool and the mm parfor runs successfully?
Science Machine
on 16 Oct 2022
Raymond Norris
on 17 Oct 2022
Slurm is telling you that your combonation of cores, threads, and nodes is not available. By the looks of it, I'd say someone on our team helped implement when you're doing (i.e., using configCluster). If you're interested, contact Technical Support (support@mathworks.com) with your contact info. They in turn can get a hold of me. We can work this out offline.
Categories
Find more on Job and Task Creation 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!