57 lines
2.0 KiB
TeX
57 lines
2.0 KiB
TeX
\documentclass[sigconf, nonacm]{acmart}
|
|
|
|
% ── Packages ──────────────────────────────────────────────────────────────────
|
|
\usepackage{booktabs}
|
|
\usepackage{microtype}
|
|
\usepackage{subcaption}
|
|
\usepackage{todonotes}
|
|
\usepackage{pgfplots}
|
|
\usepackage{pgfplotstable}
|
|
\usepgfplotslibrary{groupplots}
|
|
\pgfplotsset{compat=1.18}
|
|
|
|
\input{macros}
|
|
|
|
% ── Metadata ──────────────────────────────────────────────────────────────────
|
|
% NOTE: Title targets Phase 1 (ML-KEM, x86 AVX2).
|
|
% Update when Phase 2/3 material (ML-DSA, ARM, energy) is incorporated.
|
|
\title{Where Does SIMD Help Post-Quantum Cryptography?\\
|
|
A Micro-Architectural Study of ML-KEM on x86 AVX2}
|
|
|
|
\author{Levi Neuwirth}
|
|
\affiliation{%
|
|
\institution{Brown University}
|
|
\city{Providence}
|
|
\state{Rhode Island}
|
|
\country{USA}
|
|
}
|
|
\email{ln@levineuwirth.org}
|
|
|
|
% ── Abstract ──────────────────────────────────────────────────────────────────
|
|
\begin{abstract}
|
|
\input{sections/abstract}
|
|
\end{abstract}
|
|
|
|
\keywords{post-quantum cryptography, ML-KEM, Kyber, SIMD, AVX2, performance
|
|
analysis, micro-architecture, benchmark reproducibility}
|
|
|
|
% ─────────────────────────────────────────────────────────────────────────────
|
|
\begin{document}
|
|
\maketitle
|
|
|
|
\input{sections/intro}
|
|
\input{sections/background}
|
|
\input{sections/methodology}
|
|
\input{sections/results}
|
|
\input{sections/discussion}
|
|
\input{sections/related}
|
|
\input{sections/conclusion}
|
|
|
|
\bibliographystyle{ACM-Reference-Format}
|
|
\bibliography{refs}
|
|
|
|
\appendix
|
|
\input{sections/supplementary}
|
|
|
|
\end{document}
|