Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Optimization problems

danich
Beginner
496 Views
Anybody know the reason for this message?

I'm compiling on an Itanium dual-processor box with 8 GB RAM...

Warning: Optimization suppressed due to excessive resource requirements;

0 Kudos
2 Replies
TimP
Honored Contributor III
496 Views
Depending on the complexity of your source and the options you have chosen, the compiler will shut off optimizations when certain parameters are exceeded. When you have additional subroutines in the file, optimizations remain shut down. The option -override_limits should maintain the options you have set, at the possible expense of time and disk space.
0 Kudos
Martyn_C_Intel
Employee
496 Views
There are a variety of possible resources which could trigger such a warning. It may be related to compiling vary large subroutines at high optimization levels. In such cases, you might consider splitting the large routine into smaller components.

I encourage you to submit an issue to Intel Premier Support at https://premier.intel.com , quoting your full command line (you can say that I advised this). You should get additional detail and advice.

Martyn
0 Kudos
Reply