From 6a81f74413435a73177ea7d532edb36e6fbbf762 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Fri, 20 Sep 2024 22:31:57 +0300 Subject: [PATCH] Fix 'mpirun' and 'mpiexec' OS platform belonging in 01-intro --- 01-intro.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01-intro.tex b/01-intro.tex index e0a61bc..a7a718f 100644 --- a/01-intro.tex +++ b/01-intro.tex @@ -145,10 +145,10 @@ \section{"Hello, World" in MPI} Important! If you run application directly (\texttt{./hello\_mpi}) you will not get expected result! Linux: \\ - \texttt{mpiexec -n 4 ./hello\_mpi} + \texttt{mpirun -n 4 ./hello\_mpi} Windows: \\ - \texttt{mpirun -n 4 hello\_mpi.exe} + \texttt{mpiexec -n 4 hello\_mpi.exe} \end{frame} \section{Brief API calls overview}