7

My Altera Quartus builds show this warning...

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.

How do I suppress this warning?

JimFred
  • 703
  • 2
  • 8
  • 20

2 Answers2

10

Add this tcl expression...

set_global_assignment -name NUM_PARALLEL_PROCESSORS ALL

... to either assignment_defaults.qdf or the .qsf file. Both should be in the project's directory. The .qdf file may need to be created.

JimFred
  • 703
  • 2
  • 8
  • 20
2

Many recommend creating assignment_defaults.qdf in project's directory, but then each project would contain unnecessary file just to get rid of this warning. I wanted to add this to global config in Linux but googling turned up either nothing or deprecated information. I ended up using strace to find global config file:

/opt/quartus/quartus/linux64/assignment_defaults.qdf

After adding set_global_assignment -name NUM_PARALLEL_PROCESSORS ALL to it the warning was gone in all projects.