Replies: 1 comment
-
The best practice is that the number of MPI ranks is no more than the number of GPUs. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to perform MD with 4GPU and 32 cores,but when I perform MD using "mpirun -n 32 -i input.lammps" , there is an ERROR, “There are not enough slots available in the system to satisfy the 6
slots that were requested by the application:
lmp_mpi
Either request fewer slots for your application, or make more slots
available for use.
A "slot" is the Open MPI term for an allocatable unit where we can
launch a process. The number of slots available are defined by the
environment in which Open MPI processes are run:
processor cores if not provided)
hostname (N defaults to 1 if not provided)
RM is present, Open MPI defaults to the number of processor cores
In all the above cases, if you want Open MPI to default to the number
of hardware threads instead of the number of processor cores, use the
--use-hwthread-cpus option.
Alternatively, you can use the --oversubscribe option to ignore the
number of available slots when deciding the number of processes to
launch.
”
I want to know how to perform MD with 4GPUs and 32cores
Beta Was this translation helpful? Give feedback.
All reactions