FPGA Verilog编译报错:Number of processors has not been specified which may cause overloading on shared

错误信息:

FPGA在写Verilog时编译警告,具体警告信息如下:
Warning (18236): Number of processors has not been specified which may cause overloading on shared machines.  Set the global assignment NUM_PARALLEL_PROCESSORS in your QSF to an appropriate value for best performance.
(警告(18236):未指定处理器数量,这可能导致共享计算机过载。 将QSF中的全局分配NUM_PARALLEL_PROCESSORS设置为适当的值以获得最佳性能。)

解决方法:

看上边错误警告,未指定处理器数量,这可能导致共享计算机过载。 将QSF中的全局分配NUM_PARALLEL_PROCESSORS设置为适当的值以获得最佳性能。

方法1.打开工程下qsf文件,加入如下代码
 

set_global_assignment -name NUM_PARALLEL_PROCESSORS 2

后边的2可根据自己处理器选择不同数值。保存在编译就OK了。

方法2.打开Assignment->Settings->Compilation Process Settings

选择Use all available processors 或者根据自己处理器数量选择最大允许处理器数。保存再编译就OK了。

猜你喜欢

转载自blog.csdn.net/qq_33231534/article/details/105023956