% DocAble demonstration fixture — a small multi-frame beamer deck.
% Exercises the per-frame segmentation path (\begin{frame} units, \frametitle as
% the label) plus caption-seeded figure alt text. Minimal but compilable-shaped.
\documentclass{beamer}
\usepackage[english]{babel}
\usepackage{graphicx}

\title{Throughput of a Distributed Pipeline}
\author{A. Researcher}
\date{\today}

\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\begin{frame}
  \frametitle{Motivation}
  Batch pipelines trade latency for throughput. We measure where that trade-off
  lands across three configurations and report the per-stage cost.
\end{frame}

\begin{frame}
  \frametitle{Throughput Results}
  \begin{figure}
    \centering
    \includegraphics[width=0.7\textwidth]{throughput-plot.png}
    \caption{Throughput by configuration: baseline, tuned, and tuned+cache.}
  \end{figure}
\end{frame}

\begin{frame}{Conclusions}
  The tuned+cache configuration wins on throughput without regressing tail
  latency. Future work extends the cache-admission policy to the streaming path.
\end{frame}

\end{document}
