From 4756f1e84727de0616f350b94a8e51f2cbd9afdb Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Fri, 18 Jul 2025 00:38:56 +0000 Subject: [PATCH] mpi*: add Dutch translation; mpic++, mpicc: update pages (#17244) --- pages.nl/common/mpic++.md | 13 +++++++++++++ pages.nl/common/mpicc.md | 16 ++++++++++++++++ pages.nl/common/mpicxx.md | 7 +++++++ pages.nl/common/mpiexec.md | 7 +++++++ pages.nl/common/mpirun.md | 17 +++++++++++++++++ pages/common/mpic++.md | 2 +- pages/common/mpicc.md | 1 - 7 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 pages.nl/common/mpic++.md create mode 100644 pages.nl/common/mpicc.md create mode 100644 pages.nl/common/mpicxx.md create mode 100644 pages.nl/common/mpiexec.md create mode 100644 pages.nl/common/mpirun.md diff --git a/pages.nl/common/mpic++.md b/pages.nl/common/mpic++.md new file mode 100644 index 0000000000..8702528f03 --- /dev/null +++ b/pages.nl/common/mpic++.md @@ -0,0 +1,13 @@ +# mpic++ + +> Open MPI wrapper compiler voor C++. +> Bekijk ook: `mpirun`. +> Meer informatie: . + +- Compileer een Open MPI programma: + +`mpic++ {{pad/naar/bronbestand}}` + +- Toon alle wrapper geleverde vlaggen: + +`mpic++ --showme` diff --git a/pages.nl/common/mpicc.md b/pages.nl/common/mpicc.md new file mode 100644 index 0000000000..1744763269 --- /dev/null +++ b/pages.nl/common/mpicc.md @@ -0,0 +1,16 @@ +# mpicc + +> Open MPI C wrapper compiler. +> Meer informatie: . + +- 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}}` diff --git a/pages.nl/common/mpicxx.md b/pages.nl/common/mpicxx.md new file mode 100644 index 0000000000..23169be130 --- /dev/null +++ b/pages.nl/common/mpicxx.md @@ -0,0 +1,7 @@ +# mpicxx + +> Dit commando is een alias van `mpic++`. + +- Bekijk de documentatie van het originele commando: + +`tldr mpic++` diff --git a/pages.nl/common/mpiexec.md b/pages.nl/common/mpiexec.md new file mode 100644 index 0000000000..3cd9dc3e10 --- /dev/null +++ b/pages.nl/common/mpiexec.md @@ -0,0 +1,7 @@ +# mpiexec + +> Dit commando is een alias van `mpirun`. + +- Bekijk de documentatie van het originele commando: + +`tldr mpirun` diff --git a/pages.nl/common/mpirun.md b/pages.nl/common/mpirun.md new file mode 100644 index 0000000000..5e8e929fcb --- /dev/null +++ b/pages.nl/common/mpirun.md @@ -0,0 +1,17 @@ +# mpirun + +> Voer seriële en parallelle taken uit in Open MPI. +> Bekijk ook: `mpic++`. +> Meer informatie: . + +- 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}}` diff --git a/pages/common/mpic++.md b/pages/common/mpic++.md index 744e2252e6..cffd73e8a2 100644 --- a/pages/common/mpic++.md +++ b/pages/common/mpic++.md @@ -2,7 +2,7 @@ > Open MPI wrapper compiler for C++. > See also: `mpirun`. -> More information: . +> More information: . - Compile an Open MPI program: diff --git a/pages/common/mpicc.md b/pages/common/mpicc.md index 80098b9cf9..b7801d723d 100644 --- a/pages/common/mpicc.md +++ b/pages/common/mpicc.md @@ -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: . - Compile a source code file into an object file: