Forum Discussion
5 Replies
- Edward1024
New Contributor
Open your Quartus Tcl Console, and excute below command:
set_global_assignment -name NUM_PARALLEL_PROCESSORS ALL
And you will not see that warning again when compiling the project.
- Abe
Frequent Contributor
Add this tcl expression...
set_global_assignment -name NUM_PARALLEL_PROCESSORS 4
... to the .qsf file.
- ASuba
New Contributor
I checked .qsf file and this expression is already there and generation of HDL in QSYS shows the same warning
- Abe
Frequent Contributor
If you're using the GUI, show the TCL window from the View menu. Then paste the above command into the TCL prompt and press Enter. Then run the compilation. Set the number of processors depending on the system that you have (2/4).
This is just a warning and can be ignored. It does not affect the compilation results only affects the compilation time.
- ASuba
New Contributor
Thanks. i will ignore it then