1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 22:35:45 +02:00

mpi*: add Dutch translation; mpic++, mpicc: update pages (#17244)

This commit is contained in:
Dylan 2025-07-18 00:38:56 +00:00 committed by GitHub
parent 50c623f831
commit 4756f1e847
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 61 additions and 2 deletions

13
pages.nl/common/mpic++.md Normal file
View file

@ -0,0 +1,13 @@
# mpic++
> Open MPI wrapper compiler voor C++.
> Bekijk ook: `mpirun`.
> Meer informatie: <https://manned.org/mpicxx>.
- Compileer een Open MPI programma:
`mpic++ {{pad/naar/bronbestand}}`
- Toon alle wrapper geleverde vlaggen:
`mpic++ --showme`

16
pages.nl/common/mpicc.md Normal file
View file

@ -0,0 +1,16 @@
# mpicc
> Open MPI C wrapper compiler.
> Meer informatie: <https://www.mpich.org/static/docs/latest/www1/mpicc.html>.
- Compileer een bronbestand naar een objectbestand:
`mpicc -c {{pad/naar/bestand.c}}`
- Koppel een objectbestand en maak een executable:
`mpicc -o {{executable}} {{pad/naar/objectbestand.o}}`
- Compileer en koppel een bronbestand in één commando:
`mpicc -o {{executable}} {{pad/naar/bestand.c}}`

View file

@ -0,0 +1,7 @@
# mpicxx
> Dit commando is een alias van `mpic++`.
- Bekijk de documentatie van het originele commando:
`tldr mpic++`

View file

@ -0,0 +1,7 @@
# mpiexec
> Dit commando is een alias van `mpirun`.
- Bekijk de documentatie van het originele commando:
`tldr mpirun`

17
pages.nl/common/mpirun.md Normal file
View file

@ -0,0 +1,17 @@
# 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}}`

View file

@ -2,7 +2,7 @@
> Open MPI wrapper compiler for C++.
> See also: `mpirun`.
> More information: <https://www.open-mpi.org/doc/v3.0/man1/mpic++.1.php>.
> More information: <https://manned.org/mpicxx>.
- Compile an Open MPI program:

View file

@ -1,7 +1,6 @@
# mpicc
> Open MPI C wrapper compiler.
> The wrappers are simply thin shells on top of a C compiler, they add the relevant compiler and linker flags to the command-line that are necessary to compile/link Open MPI programs, and then invoke the underlying C compiler to actually perform the command.
> More information: <https://www.mpich.org/static/docs/latest/www1/mpicc.html>.
- Compile a source code file into an object file: