simulation for the HBM2E Interface FPGA IP
I am performing a simulation for the HBM2E Interface FPGA IP using Intel FPGA Edition 2024.1 with device model AGMF039R47A1E2VR0. Following the steps from the High Bandwidth Memory (HBM2E) Interface Agilex 7 M-Series FPGA IP Design Example User Guide, I encountered the following error when executing source msim_setup.tcl:
# ** Error: Failure to checkout svverification license feature.
# ** Error: (vsim-1) Unable to checkout verification license - required for testbench features (randomize, randcase, randsequence, covergroup).
To resolve this, I modified the msim_setup.tcl file by changing the line:
eval vsim -suppress 2732 -suppress 1130 -suppress 7041 -suppress 7033 $elabcommand
to: eval vsim -nocvg -suppress 2732 -suppress 1130 -suppress 7041 -suppress 7033 $elabcommand
This modification avoided the above error, but now, every time I run run -all, the simulation window crashes immediately, and the simulation cannot continue.Can you help me solve this problem? Thank you.