Why did spmd create a pool of 12 workers on a cluster with 32 cores?

3 visualizaciones (últimos 30 días)
I am experiencing a problem with running Matlab code with spmd blocks on the cedar cluster on Compute Canada. I asked for 32 cores and 1 node being allocated to me. The system can detect 32 cores, but spmd can generate a pool of only 12 workers.
Can someone explain why? I am attaching both the Matlab file and the output file here.

Respuesta aceptada

Kojiro Saito
Kojiro Saito el 16 de Jul. de 2021
In Parallel Preferences "Preferred number of workers" is set to 12 by default.
You can change this value to 100 (more than 32) in Preferences menu.
Alternatively, you can specify workers in parpool.
You can add parpool(num) before spmd blocks.
parpool(num)
spmd(num)
...
end
  4 comentarios
Claire Fang
Claire Fang el 19 de Jul. de 2021
@Kojiro Saito, you are right. It is related. Apparently I needed to prepare a .matlab folder on the server. Instructions are shown on https://docs.computecanada.ca/wiki/MATLAB. Below is the code:
[name@cluster ~]$ cd $HOME
[name@cluster ~]$ if [ -d ".matlab" ]; then
mv .matlab scratch/
else
mkdir -p scratch/.matlab
fi && ln -sn scratch/.matlab .matlab
Once I did that, everything worked. Thanks!
Kojiro Saito
Kojiro Saito el 19 de Jul. de 2021
Usually, parpool will create a job directory, but in your universities clusters, home directory was set to read-only. I didn't know that, but I'm glad the issue is solved now.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Parallel Computing Fundamentals en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by