Added appendix; Added slide showing proximal decoding time complexity
This commit is contained in:
parent
d4fbb621fb
commit
bfab6b8eac
@ -177,5 +177,7 @@
|
||||
\printbibliography[heading=none]
|
||||
\end{frame}
|
||||
|
||||
\input{sections/appendix.tex}
|
||||
|
||||
|
||||
\end{document}
|
||||
|
||||
6
latex/presentations/midterm/res/fps_vs_n_hybrid.csv
Normal file
6
latex/presentations/midterm/res/fps_vs_n_hybrid.csv
Normal file
@ -0,0 +1,6 @@
|
||||
n,k,fps,spf
|
||||
96,48,7374.0570635159675,0.00013561055893473079
|
||||
204,102,6601.111655956669,0.00015148963570365097
|
||||
204,102,1450.823819165217,0.000689263566526903
|
||||
408,204,317.62940489539665,0.0031483231230727054
|
||||
504,252,195.7683929010524,0.0051080768717626035
|
||||
|
8
latex/presentations/midterm/res/fps_vs_n_proximal.csv
Normal file
8
latex/presentations/midterm/res/fps_vs_n_proximal.csv
Normal file
@ -0,0 +1,8 @@
|
||||
n,k,fps,spf
|
||||
96,48,23963.664002681122,4.1729845648316434e-05
|
||||
204,102,11466.593636251799,8.720985775919413e-05
|
||||
204,102,1262.3084456970446,0.0007921994053108008
|
||||
408,204,291.5566845813344,0.0034298647669010448
|
||||
31,11,48018.582682609645,2.0825271054119614e-05
|
||||
31,26,72986.7772585266,1.3701111866576847e-05
|
||||
504,252,252.54094111529753,0.0039597539930899765
|
||||
|
34
latex/presentations/midterm/sections/appendix.tex
Normal file
34
latex/presentations/midterm/sections/appendix.tex
Normal file
@ -0,0 +1,34 @@
|
||||
\appendix
|
||||
|
||||
\section{Proximal Decoding Time Complexity}%
|
||||
\label{app:Proximal Decoding Time Complexity}
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\begin{frame}[t]
|
||||
\frametitle{Proximal Decoding: Time Complexity}
|
||||
|
||||
\begin{figure}[H]
|
||||
\centering
|
||||
|
||||
\begin{tikzpicture}[scale=0.7]
|
||||
\begin{axis}[
|
||||
grid=both,
|
||||
xlabel={$n$}, ylabel={time per frame (s)},
|
||||
legend style={at={(0.05,0.77)},anchor=south west},
|
||||
]
|
||||
\addplot[only marks, red] table [col sep=comma,
|
||||
x=n, y=spf] {res/fps_vs_n_proximal.csv};
|
||||
\addlegendentry{proximal}
|
||||
|
||||
\addplot[only marks, blue] table [col sep=comma,
|
||||
x=n, y=spf] {res/fps_vs_n_hybrid.csv};
|
||||
\addlegendentry{hybrid prox \& ML ($\SI{12}{\bit}$)}
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
||||
|
||||
\caption{Time Complexity of Proximal Decoding and Modified Implementation}
|
||||
\label{fig:fps_vs_n}
|
||||
\end{figure}
|
||||
|
||||
\end{frame}
|
||||
Loading…
Reference in New Issue
Block a user