Hello,
I would to know about the Project properties which is found under the Project tab> property pages
The properties related to Intel Visual Fortran i.e.
General, Optimization, Debugging, Preprocessor, Code generation etc many more..
I need to know what all these options do, how these affect the program compilation and execution.
Is there any documentation or Help or Support available to know about these.
Kindly let me know as soon as possible.
thank you,
These are all described in detail in the Fortran compiler documentation. You can select a property and press F1 to get help on that option.
連結已複製
Settings related to that are on the Optimization and Code Generation pages. You will want to start with a Release configuration if you want good performance. Don't start here until your program works correctly in a Debug configuration. Start with a plain Release configuration and do correctness and performance testing. Options to try to get better performance:
Optimization > Optimization > Maximize Speed plus Higher Level Optimization
Optimization > Parallelization > Yes
Optimization > Interprocedural Optimization > Multi-File
Code Generation > Intel Processor Specific > Same as the host processor (last option)
All of these will slow down compiles. There are other things you can try, but start with these. Don't obsess over the last microsecond.
