2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/MPI.tex
Martin Thoma 3cec128f33 MPI
2014-03-09 19:42:44 +01:00

23 lines
No EOL
651 B
TeX

%!TEX root = Programmierparadigmen.tex
\chapter{MPI}
\index{MPI|(}
Message Passing Interface (kurz: MPI) ist ein Standard,
der den Nachrichtenaustausch bei parallelen Berechnungen auf
verteilten Computersystemen beschreibt.
\section{Erste Schritte}
\inputminted[numbersep=5pt, tabsize=4, frame=lines, label=hello-world.c]{c}{scripts/mpi/hello-world.c}
Das wird \texttt{mpicc hello-world.c} kompiliert.\\
Mit \texttt{mpirun -np 14 scripts/mpi/a.out} werden 14 Kopien des Programms
gestartet.
\section{Syntax}
\section{Beispiele}
\section{Weitere Informationen}
\begin{itemize}
\item \url{http://www.open-mpi.org/}
\end{itemize}
\index{MPI|)}