Skip to content
Snippets Groups Projects
Commit 941aef35 authored by Florian Fischer's avatar Florian Fischer
Browse files

add throughput plots generation script and summary

parent 1ec5b2c0
No related branches found
No related tags found
No related merge requests found
Pipeline #61949 passed
#!/bin/sh
mkdir -p plots
./plot.py -w -o plots/throughput-80.tex -i emper-release tokio go --y-label "Kops/sec" --error-bars "minmax" -- results/throughput-80-procs
./plot.py -w -o plots/throughput-80-100us.tex -i "*100us" --y-label "Kops/sec" --error-bars "minmax" -- results/throughput-80-procs
./plot.py -w -o plots/throughput-80-200us.tex -i "*200us" --y-label "Kops/sec" --error-bars "minmax" -- results/throughput-80-procs
./plot.py -w -o plots/throughput-20.tex -i emper-20 tokio-20 go-20 --y-label "Kops/sec" --error-bars "minmax" -- results/throughput-20-procs
./plot.py -w -o plots/throughput-20-100us.tex -i "*100us" --y-label "Kops/sec" --error-bars "minmax" -- results/throughput-20-procs
./plot.py -w -o plots/throughput-20-200us.tex -i "*200us" --y-label "Kops/sec" --error-bars "minmax" -- results/throughput-20-procs
\documentclass{article}
\usepackage{standalone}
\input{common}
\begin{document}
\begin{figure}
\includestandalone{throughput-80}
\caption{throughput 80 worker}
\end{figure}
\begin{figure}
\includestandalone{throughput-80-100us}
\caption{throughput 80 worker with 100us computation}
\end{figure}
\begin{figure}
\includestandalone{throughput-80-200us}
\caption{throughput 80 worker with 200us computation}
\end{figure}
\begin{figure}
\includestandalone{throughput-20}
\caption{throughput 20 worker}
\end{figure}
\begin{figure}
\includestandalone{throughput-20-100us}
\caption{throughput 20 worker with 100us computation}
\end{figure}
\begin{figure}
\includestandalone{throughput-20-200us}
\caption{throughput 20 worker with 200us computation}
\end{figure}
\end{document}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment