Intel® Fortran Compiler 17.0 Developer Guide and Reference
Tells the compiler to find the indicated parts of your application, and generate optimization reports for those parts of your application. Option -qopt-report-filter is the replacement option for -opt-report-filter, which is deprecated.
Linux and macOS: | -qopt-report-filter=string |
Windows: | /Qopt-report-filter:string |
string |
Is the information to search for. The string must appear within quotes. It can take one or more of the following forms:
If you specify more than one of the above forms in a string, a semicolon must appear between each form. If you specify more than one range in a string, a comma must appear between each range. Optional blanks can follow each parameter in the forms above and they can also follow each form in a string.
|
OFF |
No optimization report is generated. |
This option tells the compiler to find the indicated parts of your application, and generate optimization reports for those parts of your application. Optimization reports will only be generated for the routines that contain the specified string.
On Linux* and OS X*, if you specify both -qopt-report-routine=string1 and -qopt-report-filter=string2, it is treated as -qopt-report-filter=string1;string2. On Windows*, if you specify both /Qopt-report-routine:string1 and /Qopt-report-filter:string2, it is treated as/Qopt-report-filter:string1;string2.
If you use this option, you do not have to specify option [q or Q]opt-report.
When optimization reporting is enabled, the default is -qopt-report-phase=all (Linux* and OS X*) or /Qopt-report-phase:all (Windows*).
None