Skip to content
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

Fix typos in 05-programming-practice #41

Merged
merged 1 commit into from
Nov 9, 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
8 changes: 4 additions & 4 deletions 05-parallelism-practice/05-parallelism-practice.tex
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}

% Title, author, date, and institute (optional)
\title[Parallel Programming. Parallelism theory]{Parallel Programming course. Parallelism theory}
\title[Parallel Programming. Parallelism practice]{Parallel Programming course. Parallelism practice}
\author{Obolenskiy Arseniy, Nesterov Alexander}
\institute{Nizhny Novgorod State University}

Expand Down Expand Up @@ -101,7 +101,7 @@
\section{Tasks}

\begin{frame}{Tasks}
Tasks in the course are splitted into the following subgroups:
Tasks in the course are split into the following subgroups:
\begin{itemize}
\item Classical Tasks of Parallel Programming
\item Data Transfer Methods
Expand All @@ -116,7 +116,7 @@ \section{Tasks}
\begin{frame}{Disclaimers}
\begin{itemize}
\item All matrices should be stored in linear arrays (not \texttt{std::vector<std::vector<int> >})
\item Performance should be meauserd on big matrices/vectors
\item Performance should be measured on big matrices/vectors
\item Total execution time (per test) is more than 1 second
\item Functionality should be preserved for wide range of processes count
\end{itemize}
Expand Down Expand Up @@ -309,7 +309,7 @@ \section{Image Processing}
Notes:
\begin{itemize}
\item Use RGB/BGR (color) linearized matrix
\item Allowed to verify unctionality using boost
\item Allowed to verify functionality using boost
\item Compare time metric with sequential implementation
\end{itemize}
\end{frame}
Expand Down
Loading