Commit 07c0477e authored by Taddeüs Kroes's avatar Taddeüs Kroes

Added results table to question 3

parent 897a1d64
...@@ -67,7 +67,7 @@ started using \texttt{./benchmark.bash}. ...@@ -67,7 +67,7 @@ started using \texttt{./benchmark.bash}.
\begin{table}[H] \begin{table}[H]
\begin{tabular}{l|ll} \begin{tabular}{l|ll}
Type & Operator & Million ops/sec \\ Type & Operator & Million ops/sec \\
\hline \hline
\texttt{float} & ADD & 311 \\ \texttt{float} & ADD & 311 \\
\texttt{double} & ADD & 296 \\ \texttt{double} & ADD & 296 \\
...@@ -101,4 +101,21 @@ Type & Operator & Million ops/sec \\ ...@@ -101,4 +101,21 @@ Type & Operator & Million ops/sec \\
% }}} % }}}
\section{Summation} % {{{
\label{sec:Summation}
\begin{table}[H]
\begin{tabular}{l|lll}
Type & N & Forward & Backward \\
\hline
\texttt{float} & $10^8$ & $15.40368$ & $18.80792$ \\
\texttt{float} & $2 \cdot 10^8$ & $15.40368$ & $18.80792$ \\
\texttt{double} & $10^8$ & $18.99790$ & $18.99790$ \\
\texttt{double} & $2 \cdot 10^8$ & $19.69104$ & $19.69104$ \\
\end{tabular}
\caption{Results of various summation approaches on floats and doubles.}
\end{table}
% }}}
\end{document} \end{document}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment