@@ -109,14 +109,15 @@ \section{Tasks}
109
109
\item Matrix Multiplication
110
110
\item Systems of Linear Algebraic Equations
111
111
\item Sort
112
- \item Computer Graphics
112
+ \item Image Processing
113
113
\end {itemize }
114
114
\end {frame }
115
115
116
116
\begin {frame }{Disclaimers}
117
117
\begin {itemize }
118
118
\item All matrices should be stored in linear arrays (not \texttt {std::vector<std::vector<int> > })
119
119
\item Performance should be meauserd on big matrices/vectors
120
+ \item Total execution time (per test) is more than 1 second
120
121
\item Functionality should be preserved for wide range of processes count
121
122
\end {itemize }
122
123
\end {frame }
@@ -189,7 +190,8 @@ \section{Data Transfer Methods}
189
190
\begin {itemize }
190
191
\item Requirement: Put the task you have chosen in the description
191
192
\item Reference implementation: original MPI function
192
- \item Tasks size should be big. Broadcast should send more that one element (vector).
193
+ \item Tasks size should be big. Broadcast should send more that one element (vector)
194
+ \item Consider using binary trees to distribute data across different processes
193
195
\end {itemize }
194
196
\end {frame }
195
197
@@ -257,6 +259,12 @@ \section{Matrix Multiplication}
257
259
Validate shapes (if matmul is possible for these shapes)
258
260
\end {frame }
259
261
262
+ \begin {frame }{Matrix Multiplication}
263
+ \begin {figure }[h]
264
+ \includegraphics [width=1\textwidth ]{images/matrix-multiplication.png}
265
+ \end {figure }
266
+ \end {frame }
267
+
260
268
\section {Systems of Linear Algebraic Equations }
261
269
262
270
\begin {frame }{Systems of Linear Algebraic Equations}
@@ -291,9 +299,9 @@ \section{Sort}
291
299
\end {itemize }
292
300
\end {frame }
293
301
294
- \section {Computer Graphics }
302
+ \section {Image Processing }
295
303
296
- \begin {frame }{Computer Graphics }
304
+ \begin {frame }{Image Processing }
297
305
\begin {itemize }
298
306
\item Image Smoothing
299
307
\item Contrast Enhancement
0 commit comments