Skip to content

Commit 8f9c38f

Browse files
authored
FPGA: Remove the ghdl option in the simulator compile options for the gzip design (#2346)
This ghdl option makes the simulator log all of the signals values. For a large design such as gzip, this led to a large increase in run time. This change removes such option on the gzip design. The simulator flow still tests the generated RTL, but won't log all signals.
1 parent 862170c commit 8f9c38f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/gzip/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ set(EMULATOR_LINK_FLAGS )
211211
set(REPORT_COMPILE_FLAGS -DFPGA_HARDWARE)
212212
set(REPORT_LINK_FLAGS -Xshardware -Xstarget=${FPGA_DEVICE} ${USER_FPGA_FLAGS} -fsycl-link=early)
213213
set(SIMULATOR_COMPILE_FLAGS -Xssimulation -DFPGA_SIMULATOR)
214-
set(SIMULATOR_LINK_FLAGS -Xssimulation -Xsghdl -Xstarget=${FPGA_DEVICE} ${USER_FPGA_FLAGS} -reuse-exe=${CMAKE_BINARY_DIR}/${SIMULATOR_OUTPUT_NAME}${EXT})
214+
set(SIMULATOR_LINK_FLAGS -Xssimulation -Xstarget=${FPGA_DEVICE} ${USER_FPGA_FLAGS} -reuse-exe=${CMAKE_BINARY_DIR}/${SIMULATOR_OUTPUT_NAME}${EXT})
215215
set(FPGA_COMPILE_FLAGS -DFPGA_HARDWARE)
216216
set(FPGA_LINK_FLAGS -Xshardware -Xstarget=${FPGA_DEVICE} ${USER_FPGA_FLAGS} -reuse-exe=${CMAKE_BINARY_DIR}/${FPGA_OUTPUT_NAME}${EXT})
217217

0 commit comments

Comments
 (0)