Skip to content

Use table to present Flynn's classification in 04-parallelism-theory #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading