Visible to Intel only — GUID: hgm1724695184442
Ixiasoft
Answers to Top FAQs
1. FPGA Simulation Basics
2. Siemens EDA QuestaSim* Simulator Support
3. Synopsys VCS* and VCS MX Support
4. Aldec Active-HDL and Riviera-PRO Support
5. Cadence Xcelium* Parallel Simulator Support
6. Quartus® Prime Pro Edition User Guide Third-party Simulation Archive
A. Quartus® Prime Pro Edition User Guides
1.1. FPGA Simulation Essential Elements
1.2. Overview of Simulation Tool Flow
1.3. Simulation Tool Flow
1.4. Supported Simulation Flows
1.5. Supported Hardware Description Languages
1.6. Supported Simulation Types
1.7. Supported Simulators
1.8. Post-Fit Simulation Support by FPGA Family
1.9. Automating Simulation with the Run Simulation Feature
1.10. Using Precompiled Simulation Libraries
1.11. FPGA Simulation Basics Revision History
1.9.2.1. Specifying Required Simulation Settings for Run Simulation (Batch Mode)
1.9.2.2. Optional Simulation Settings for Run Simulation (Batch Mode)
1.9.2.3. Launching Simulation with the Run Simulation Feature
1.9.2.4. Running RTL Simulation using Run Simulation
1.9.2.5. Output Directories and Files for Run Simulation
Visible to Intel only — GUID: hgm1724695184442
Ixiasoft
1.10.2. Implementing Precompiled Simulation Libraries
You can implement use of the precompiled simulation libraries by mapping the precompiled library files in the Simulation Flow Settings GUI, or by modifying the simulator setup script files directly.
Implementing Precompiled Simulation Libraries in the GUI
- In the Quartus® Prime Pro Edition software, click Assignments > Settings > EDA Tool Settings > Simulation > Simulation Flow Settings.
- Click the User precompiled simulation library mapping file option for your simulator and specify the precompiled simulation mapping file path in the Setting column.
Figure 12. User Precompiled Simulation Library Mapping File Setting
Table 13. Precompiled Library Files to Add by Simulator Simulator Precompiled Library File to Add Xcelium cds.lib Riviera-PRO library.cfg QuestaSim modelsim.ini VCS MX synopsys_sim.setup - Click the Start Compilation button to perform one-time compilation of the device libraries. Subsequent compiles do not recompile these libraries.
- To run the simulation, refer to Run RTL Simulation using Run Simulation in Batch Mode.
Implementing Precompiled Simulation Libraries by Modifying Simulator Setup Script
The simulation setup scripts that the Quartus® Prime Pro Edition software now generates include the PRECOMP_DEVICE_LIB_FILE variable. This variable can hold different values, depending on your target simulator. You can specify the path for the precompiled simulation library file to reuse the precompiled library, rather than recompiling the device library each time.
- In a text editor, open the generated simulator setup script for your target simulator.
- In the simulator setup script, locate the PRECOMP_DEVICE_LIB_FILE variable.
- Specify the appropriate PRECOMP_DEVICE_LIB_FILE value for your target simulator:
Table 14. Simulator Setup Script and Precompile Simulation Option Simulator Setup Script Simulation Option Xcelium xcelium_setup.sh PRECOMP_DEVICE_LIB_FILE="<path ./cds.lib>" Riviera-PRO rivierapro_setup.tcl if ![info exists PRECOMP_DEVICE_LIB_FILE] { set PRECOMP_DEVICE_LIB_FILE "<path ./library.cfg>" } QuestaSim msim_setup.tcl if ![info exists PRECOMP_DEVICE_LIB_FILE] { set PRECOMP_DEVICE_LIB_FILE "<path ./modelsim.ini>" } VCS MX vcsmx_setup.sh PRECOMP_DEVICE_LIB_FILE="<path ./synopsys_sim.setup>" - Save the updated simulator setup script file. Subsequent compiles do not recompile these libraries.
- Run the simulation setup script.