Files
splitncover-paper/ecc_results.tex
2024-04-26 08:49:23 +00:00

84 lines
2.0 KiB
TeX

\begin{figure}[p]
\centering
\begin{tikzpicture}
\begin{axis}[
width=0.85*\textwidth,
x tick label style={/pgf/number format/1000 sep=},
xlabel={Latency [ns]},
ylabel=Occurences,
xmin=0, xmax=450,
ymin=1, ymax=20000,
%enlargelimits=0.05,
ymode=log,
]
\addplot[hist={bins=150}]
table[col sep=comma, header=true, y index=0]{seq_without_ECC.csv};
\end{axis}
\end{tikzpicture}
\caption{Sequential without ECC}
\label{fig:linear-wo-ecc}
\end{figure}
\begin{figure}[p]
\centering
\begin{tikzpicture}
\begin{axis}[
width=0.85*\textwidth,
x tick label style={/pgf/number format/1000 sep=},
xlabel={Latency [ns]},
ylabel=Occurences,
xmin=0, xmax=450,
ymin=1, ymax=20000,
%enlargelimits=0.05,
ymode=log,
]
\addplot[hist={bins=150}]
table[col sep=comma, header=true, y index=0]{seq_with_ECC.csv};
\end{axis}
\end{tikzpicture}
\caption{Sequential with ECC}
\label{fig:linear-w-ecc}
\end{figure}
\begin{figure}[p]
\centering
\begin{tikzpicture}
\begin{axis}[
width=0.85*\textwidth,
x tick label style={/pgf/number format/1000 sep=},
xlabel={Latency [ns]},
ylabel=Occurences,
xmin=0, xmax=1200,
ymin=1, ymax=20000,
%enlargelimits=0.05,
ymode=log,
]
\addplot[hist={bins=150}]
table[col sep=comma, header=true, y index=0]{random_without_ECC.csv};
%\legend{Random without ECC}
\end{axis}
\end{tikzpicture}
\caption{Random without ECC}
\label{fig:rand-wo-ecc}
\end{figure}
\begin{figure}[p]
\centering
\begin{tikzpicture}
\begin{axis}[
width=0.85*\textwidth,
x tick label style={/pgf/number format/1000 sep=},
xlabel={Latency [ns]},
ylabel=Occurences,
xmin=0, xmax=1200,
ymin=1, ymax=20000,
%enlargelimits=0.05,
ymode=log,
]
\addplot[hist={bins=150}]
table[col sep=comma, header=true, y index=0]{random_with_ECC.csv};
\end{axis}
\end{tikzpicture}
\caption{Random with ECC}
\label{fig:rand-w-ecc}
\end{figure}