[SPCA] HW restructure

This commit is contained in:
2026-01-21 08:35:22 +01:00
parent 5200e02221
commit da1897b6b6
9 changed files with 309 additions and 310 deletions

View File

@@ -0,0 +1,10 @@
\newpage
\subsection{Vector Operations}
Extreme performance gains beyond the results of the previous section can be gained using hardware vector registers on supported CPUs.
\content{Example} In Intel AVX2, $256$b vector registers like \verb|%ymm0|, \verb|%ymm1| can be used to perform component-wise single/double precision FP operations.
\begin{minted}{gas}
vaddsd %ymm0, %ymm1, %ymm1 # Comp.-wise 32b FP add
vaddsd %ymm0, %ymm1, %ymm1 # Comp.-wise 64b FP add
\end{minted}