summaryrefslogtreecommitdiffstats
path: root/related.tex
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-09-13 20:22:53 +0100
committerYann Herklotz <git@yannherklotz.com>2020-09-13 20:22:53 +0100
commit22fdb92e4376f8d951701333f0e301200c74c375 (patch)
treec2de10ea0bf1a91ca1685fb62a9f3ef628da742b /related.tex
parent25604d50631ce7d9ab1c394a2c60632ab77f64fc (diff)
downloadfccm21_esrhls-22fdb92e4376f8d951701333f0e301200c74c375.tar.gz
fccm21_esrhls-22fdb92e4376f8d951701333f0e301200c74c375.zip
Update background and intro
Diffstat (limited to 'related.tex')
-rw-r--r--related.tex2
1 files changed, 0 insertions, 2 deletions
diff --git a/related.tex b/related.tex
index 33a96e9..2296f33 100644
--- a/related.tex
+++ b/related.tex
@@ -1,7 +1,5 @@
\section{Background}
-Compiler Fuzzing is a popular technique to find bugs in programs, and it is especially effective at finding compiler bugs, as Yang \textit{et al.}~\cite{yang11_findin_under_bugs_c_compil} demonstrated by finding more than 300 bugs in GCC and clang. This technique can therefore also be used to find bugs in HLS tools. There has also been some prior work in trying to find bugs in HLS tools and also ensuring that synthesis tools output a correct design.
-
Lidbury et al. \cite{lidbury15_many_core_compil_fuzzin} fuzz-tested several OpenCL compilers, including an HLS compiler from Altera (now Intel). They were only able to subject that compiler to superficial testing because so many of the test cases they generated led to it crashing. In comparison to our work: where Lidbury et al. generated target-independent OpenCL programs that could be used to test HLS tools and conventional compilers alike, we specifically generate programs that are tailored for HLS (e.g. with HLS-specific pragmas) with the aim of testing the HLS tools more deeply. Another difference is that where we test using sequential C programs, they test using highly concurrent OpenCL programs, and thus have to go to great lengths to ensure that any discrepancies observed between compilers cannot be attributed to the nondeterminism of concurrency.
Herklotz et al.~\cite{verismith} fuzz-tested several FPGA synthesis tools using randomly generated Verilog programs. Where they concentrated on the RTL-to-netlist stage of hardware design, we focus our attention on the earlier C-to-RTL stage.