mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
bdde90fb1d
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
438 B
438 B
mpirun
Execute serial and parallel jobs in Open MPI. See also:
mpic++. More information: https://docs.open-mpi.org/en/main/man-openmpi/man1/mpirun.1.html.
- Execute an Open MPI program:
mpirun {{path/to/executable}}
- Execute an Open MPI program with
nparallel processes:
mpirun -n {{n}} {{path/to/executable}}
- Allow more processes than available physical cores:
mpirun -oversubscribe {{path/to/executable}}