mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-05 12:15:42 +02:00
mpi*: add Dutch translation; mpic++, mpicc: update pages (#17244)
This commit is contained in:
parent
50c623f831
commit
4756f1e847
7 changed files with 61 additions and 2 deletions
13
pages.nl/common/mpic++.md
Normal file
13
pages.nl/common/mpic++.md
Normal 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
16
pages.nl/common/mpicc.md
Normal 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}}`
|
7
pages.nl/common/mpicxx.md
Normal file
7
pages.nl/common/mpicxx.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# mpicxx
|
||||||
|
|
||||||
|
> Dit commando is een alias van `mpic++`.
|
||||||
|
|
||||||
|
- Bekijk de documentatie van het originele commando:
|
||||||
|
|
||||||
|
`tldr mpic++`
|
7
pages.nl/common/mpiexec.md
Normal file
7
pages.nl/common/mpiexec.md
Normal 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
17
pages.nl/common/mpirun.md
Normal 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}}`
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Open MPI wrapper compiler for C++.
|
> Open MPI wrapper compiler for C++.
|
||||||
> See also: `mpirun`.
|
> 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:
|
- Compile an Open MPI program:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# mpicc
|
# mpicc
|
||||||
|
|
||||||
> Open MPI C wrapper compiler.
|
> 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>.
|
> More information: <https://www.mpich.org/static/docs/latest/www1/mpicc.html>.
|
||||||
|
|
||||||
- Compile a source code file into an object file:
|
- Compile a source code file into an object file:
|
||||||
|
|
Loading…
Add table
Reference in a new issue