Forum Discussion
Hi,
This is expected, by default when you compile the example with command
make test-fgpa (for linux) or build.bat test-fpga (for windows) it should test simulation script and later running the executable file will run the simulation.
Page 13
4. Run the build.bat test-fpga command. The command compiles the C++ source code to a hardware executable and then runs a simulation of the generated HDL.
Expected outcome after you run the build.bat test-fpga command:
• The console displays the command it uses to generate the testbench binary and the contents of the project directory. For example,
i++ -march="<FPGA_family_or_part_number>" <source_files> -o test-fpga.
• The HLS compiler creates a .prj directory (for example, test-fpga.prj) in the current working directory.
• The console displays the output of the executable to signify a successful execution.
C:\intelFPGA_pro\18.1\hls\examples\QRD>build.bat test-fpga
i++ --fpc --fp-relaxed -march=Arria10 MGS.cpp QRD_Testbench.cpp
TestbenchHelpers.cpp -o test-fpga.exe
Run test-fpga.exe to execute the test.
Thanks,
Arslan