Three chapters (docs/latex/), sourced from the real project docs (BOM.md, PHYSICAL_REALIZATION.md, ARCHITECTURE_ANALYSIS.md, experiments.log) -- no invented numbers: - hardware.tex: board components, DDR3/FPGA/flash/ESP32, real pinout, SPI protocol, boot procedure. - architecture.tex: packed INT8 MAC core, N=8 hybrid systolic architecture (shared-weight broadcast), hierarchical arbiter, result writeback, why N=8 is the DDR3-bandwidth-bound sweet spot. - tests_timing.tex: verification methodology, real functional test results table, full real P&R signoff history (N=2 through N=16), the definitive N=8 signoff (WNS=0.000ns), and an honestly-caveated ESP32-S3 comparison (real historical ECP5 measurement vs. the superseded, never-verified Artix-7 projection). main.tex ties the three together as report chapters. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01MUG92aM9m68TRc4rG55BcC
44 lines
835 B
TeX
44 lines
835 B
TeX
\documentclass[11pt,a4paper]{report}
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[italian]{babel}
|
|
\usepackage[margin=2.5cm]{geometry}
|
|
\usepackage{booktabs}
|
|
\usepackage{longtable}
|
|
\usepackage{array}
|
|
\usepackage{xcolor}
|
|
\usepackage{hyperref}
|
|
\usepackage{amsmath}
|
|
\usepackage{listings}
|
|
\usepackage{caption}
|
|
|
|
\hypersetup{
|
|
colorlinks=true,
|
|
linkcolor=blue!50!black,
|
|
urlcolor=blue!50!black,
|
|
citecolor=blue!50!black
|
|
}
|
|
|
|
\lstset{
|
|
basicstyle=\ttfamily\small,
|
|
breaklines=true,
|
|
frame=single,
|
|
columns=fullflexible
|
|
}
|
|
|
|
\title{FPGA-Neural \\ \large Acceleratore neurale su FPGA Xilinx Artix-7}
|
|
\author{}
|
|
\date{Stato al 2026-09-21 --- target reale definitivo: N=8}
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
\tableofcontents
|
|
|
|
\input{hardware.tex}
|
|
\input{architecture.tex}
|
|
\input{tests_timing.tex}
|
|
|
|
\end{document}
|