Skip to content

Commit 4b60988

Browse files
committed
Use table to present Flynn's classification in 04-parallelism-theory
1 parent 16fbccf commit 4b60988

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

04-parallelism-theory/04-parallelism-theory.tex

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,16 @@ \section{Gustafson's Law (Gustafson-Barsis's Law)}
175175
\end{frame}
176176

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

187190
\begin{frame}

0 commit comments

Comments
 (0)