summaryrefslogtreecommitdiffstats
path: root/main.tex
diff options
context:
space:
mode:
authorJohn Wickerson <j.wickerson@imperial.ac.uk>2020-06-09 09:39:07 +0000
committeroverleaf <overleaf@localhost>2020-06-09 10:03:58 +0000
commite7fa1c8a8dbcf42c7f609a213bbd488fc8eb05bc (patch)
tree7bf8c62cd7eac6049c13081b252b7cba8e0d7575 /main.tex
parent493692233b50ae4ae7efe9074e9dc24c0dbc8fcc (diff)
downloadoopsla21_fvhls-e7fa1c8a8dbcf42c7f609a213bbd488fc8eb05bc.tar.gz
oopsla21_fvhls-e7fa1c8a8dbcf42c7f609a213bbd488fc8eb05bc.zip
Update on Overleaf.
Diffstat (limited to 'main.tex')
-rw-r--r--main.tex9
1 files changed, 8 insertions, 1 deletions
diff --git a/main.tex b/main.tex
index ced45f4..3ac94aa 100644
--- a/main.tex
+++ b/main.tex
@@ -193,6 +193,13 @@ Therefore, work is being done to prove the equivalence between the generated har
\subsection{HLS}
+\JW{Some papers to cite somewhere:
+\begin{itemize}
+ \item \citet{kundu+08} have done translation validation on an HLS tool called SPARK.
+ \item \citet{chapman+92} have proved (manually, as far as JW can tell) that the front-end and scheduler of the BEDROC synthesis system is correct. (NB: Chapman also wrote a PhD thesis about this (1994) but it doesn't appear to be online.)
+\end{itemize}
+}
+
\section{Verilog Semantics}
Definition of state.
@@ -209,7 +216,7 @@ based on what they evaluate to. For case I think that would end up being a three
\JP{I suppose this would essentially be an ``interpreter'' style semantics but we can prove equivalence pretty easily.}
-\YH{To add to that, I used to have both in the Coq code, but commented the recursive definition out, and now only have the inductive definition, which is basically what I copy pasted here.} \JW{Fair enough. Whatever you think ends up being the easiest to read and understand, really. There's something to be said for staying close to the Coq definitions anyway.} \YH{I have added more rules, we can always switch from one to the other now. One more thing I noticed though is that recursive definitions will need an \texttt{option} type.}
+\YH{To add to that, I used to have both in the Coq code, but commented the recursive definition out, and now only have the inductive definition, which is basically what I copy pasted here.} \JW{Fair enough. Whatever you think ends up being the easiest to read and understand, really. There's something to be said for staying close to the Coq definitions anyway.} \YH{I have added more rules, we can always switch from one to the other now. One more thing I noticed though is that recursive definitions will need an \texttt{option} type.} \JW{Oh, then my suggestion of `stmntrun f s0 (Vseq st1 st2) = stmntrun f (stmntrun f s0 st1) st2' is a bit ill-typed then, unless the second parameter becomes option-typed too. Maybe the inference rules are better overall then.}
\begin{align}
\text{srun}\ f\ s\ \mathtt{Vskip} &= \mathtt{Some}\ s\\