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

458 B

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}}