summaryrefslogtreecommitdiffstats
path: root/algorithm.tex
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-11-21 11:10:07 +0000
committerYann Herklotz <git@yannherklotz.com>2020-11-21 11:10:07 +0000
commita54dd069bb0f08108dc62f42c914b7d507642490 (patch)
tree10efa343a4ae83a180c865e6d4901f88a852e7cf /algorithm.tex
parentef7ac73793f3a1f119a6da176c51c1f90b558d41 (diff)
downloadoopsla21_fvhls-a54dd069bb0f08108dc62f42c914b7d507642490.tar.gz
oopsla21_fvhls-a54dd069bb0f08108dc62f42c914b7d507642490.zip
data path -> data-path
Diffstat (limited to 'algorithm.tex')
-rw-r--r--algorithm.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/algorithm.tex b/algorithm.tex
index 1191c93..78b8a0a 100644
--- a/algorithm.tex
+++ b/algorithm.tex
@@ -215,7 +215,7 @@ Figure~\ref{fig:accumulator_diagram} shows the resulting FSMD architecture. The
\begin{tikzpicture}
\fill[control,fill opacity=1] (6.5,0) rectangle (12,5);
\fill[data,fill opacity=1] (0,0) rectangle (5.5,5);
- \node at (1,4.7) {\footnotesize Data Path};
+ \node at (1,4.7) {\footnotesize Data-path};
\node at (7.5,4.7) {\footnotesize Control Logic};
\fill[white,rounded corners=10pt] (7,0.5) rectangle (11.5,2.2);
@@ -317,7 +317,7 @@ In addition to that, equality between \emph{unsigned} variables are actually not
\subsubsection{Translating HTL to Verilog}
Finally, we have to translate the HTL code into proper Verilog. % and prove that it behaves the same as the 3AC according to the Verilog semantics.
-The challenge here is to translate our FSMD representation into a Verilog AST. However, as all the instructions in HTL are already expressed as Verilog statements, only the top level data path and control logic maps need to be translated to valid Verilog. We also require declarations for all the variables in the program, as well as declarations of the inputs and outputs to the module, so that the module can be used inside a larger hardware design.
+The challenge here is to translate our FSMD representation into a Verilog AST. However, as all the instructions in HTL are already expressed as Verilog statements, only the top level data-path and control logic maps need to be translated to valid Verilog. We also require declarations for all the variables in the program, as well as declarations of the inputs and outputs to the module, so that the module can be used inside a larger hardware design.
Figure~\ref{fig:accumulator_v} shows the final Verilog output that is generated for our example.
Although this translation seems quite straight\-forward, proving that this translation is correct is complex.