*(py3.9) ➜ /share mpirun –version*
mpirun (Open MPI) 5.0.0rc9
Report bugs to https://www.open-mpi.org/community/help/
*(py3.9) ➜ /share cat hosts*
192.168.180.48 slots=1
192.168.60.203 slots=1
*(py3.9) ➜ /share mpirun -n 2 -machinefile hosts –mca rmaps_base_verbose
100 which mpirun*
[computer
Interesting. It says:
[computer01:106117] AVAILABLE NODES FOR MAPPING:
[computer01:106117] node: computer01 daemon: 0 slots_available: 1
This is why it tells you you're out of slots: you're asking for 2, but it only
found 1. This means it's not seeing your hostfile somehow.
I should have aske
*(py3.9) ➜ /share mpirun -n 2 -machinefile hosts –mca
rmaps_base_verbose 100 --mca ras_base_verbose 100 which mpirun*
[computer01:04570] mca: base: component_find: searching NULL for ras
components
[computer01:04570] mca: base: find_dyn_components: checking NULL for ras
components
[computer01:
There is a typo in your command line.
You should use --mca (minus minus) instead of -mca
Also, you can try --machinefile instead of -machinefile
Cheers,
Gilles
There are not enough slots available in the system to satisfy the 2
slots that were requested by the application:
–mca
On Mon, Nov