1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-27 18:15:49 +02:00
tldr/pages.nl/common/mpirun.md

18 lines
458 B
Markdown
Raw Normal View History

# mpirun
> Voer seriële en parallelle taken uit in Open MPI.
> Bekijk ook: `mpic++`.
> Meer informatie: <https://docs.open-mpi.org/en/main/man-openmpi/man1/mpirun.1.html>.
- Voer een Open MPI programma uit:
`mpirun {{pad/naar/executable}}`
- Voer een Open MPI programma uit met `n` parallelle processen:
`mpirun -n {{n}} {{pad/naar/executable}}`
- Sta meer processen toe dan beschikbare fysieke cores:
`mpirun -oversubscribe {{pad/naar/executable}}`