Intel® Fortran Compiler 17.0 Developer Guide and Reference
Performs optimizations for specific processors but does not cause extended instruction sets to be used (unlike -march).
Linux and macOS: | -mtune=processor |
Windows: | /tune:processor |
processor |
Is the processor for which the compiler should perform optimizations. Possible values are:
|
generic |
Code is generated for the compiler's default behavior. |
This option performs optimizations for specific processors but does not cause extended instruction sets to be used (unlike -march).
The resulting executable is backwards compatible and generated code is optimized for specific processors. For example, code generated with -mtune=core2 or /tune:core2 will run correctly on 4th Generation Intel® Core™ processors, but it might not run as fast as if it had been generated using -mtune=haswell or /tune:haswell. Code generated with -mtune=haswell (/tune:haswell) or -mtune=core-avx2 (/tune:core-avx2) will also run correctly on Intel® Core™2 processors, but it might not run as fast as if it had been generated using -mtune=core2 or /tune:core2. This is in contrast to code generated with -march=core-avx2 or /arch:core-avx2, which will not run correctly on older processors such as Intel® Core™2 processors.
Optimization Notice |
---|
Intel's compilers may or may not optimize to the same degree for non-Intel microprocessors for optimizations that are not unique to Intel microprocessors. These optimizations include SSE2, SSE3, and SSSE3 instruction sets and other optimizations. Intel does not guarantee the availability, functionality, or effectiveness of any optimization on microprocessors not manufactured by Intel. Microprocessor-dependent optimizations in this product are intended for use with Intel microprocessors. Certain optimizations not specific to Intel microarchitecture are reserved for Intel microprocessors. Please refer to the applicable product User and Reference Guides for more information regarding the specific instruction sets covered by this notice. Notice revision #20110804 |
Visual Studio: Code Generation >Intel Processor Microarchitecture-Specific Optimization
Eclipse: None
Xcode: Code Generation > Intel Processor Microarchitecture-Specific Optimization
-mtune |
Linux: -mcpu (this is a deprecated option) OS X: None Windows: None |