Skip to content

Commit

Permalink
Use table to present Flynn's classification in 04-parallelism-theory
Browse files Browse the repository at this point in the history
  • Loading branch information
aobolensk committed Oct 2, 2024
1 parent 16fbccf commit 4b60988
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions 04-parallelism-theory/04-parallelism-theory.tex
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,16 @@ \section{Gustafson's Law (Gustafson-Barsis's Law)}
\end{frame}

\begin{frame}{Flynn's Classification}
\begin{itemize}
\item Categorizes computer architectures based on instruction and data streams.
\item SISD: Single Instruction, Single Data.
\item SIMD: Single Instruction, Multiple Data.
\item MISD: Multiple Instruction, Single Data.
\item MIMD: Multiple Instruction, Multiple Data.
\end{itemize}
Categorizes computer architectures based on instruction and data streams.
\begin{tabular}{| p{2.1cm} | p{4.2 cm} | p{4.2 cm} |}
\hline
& \textbf{Single Instruction (SI)} & \textbf{Multiple Instructions (MI)} \\
\hline
\textbf{Single Data (SD)} & Traditional single-core processors & Fault-tolerant systems (e.g. space shuttle control systems) \\
\hline
\textbf{Multiple Data (MD)} & Vector instruction in CPU, Graphics Processing Units (GPUs) & Multi-core processors, Distributed computing systems \\
\hline
\end{tabular}
\end{frame}

\begin{frame}
Expand Down

0 comments on commit 4b60988

Please sign in to comment.