Intel® C++ Compiler 16.0 User and Reference Guide

mtune

Performs optimizations for specific processors.

Architecture Restrictions

Not available on Intel® 64 architecture targeting the Intel® Xeon Phi™ coprocessor x100 product family (formerly code name Knights Corner)

Syntax

Linux and OS X:

-mtune=processor

Windows:

None

Arguments

processor

Is the processor for which the compiler should perform optimizations. Possible values are:

generic

Optimizes code for the compiler's default behavior.

core-avx2

Optimizes code for processors that support Intel® Advanced Vector Extensions 2 (Intel® AVX2), Intel® AVX, SSE4.2, SSE4.1, SSE3, SSE2, SSE, and SSSE3 instructions.

core-avx-i

Optimizes code for processors that support Float-16 conversion instructions and the RDRND instruction, Intel® Advanced Vector Extensions (Intel® AVX), Intel® SSE4.2, SSE4.1, SSE3, SSE2, SSE, and SSSE3 instructions.

corei7-avx

Optimizes code for processors that support Intel® Advanced Vector Extensions (Intel® AVX), Intel® SSE4.2, SSE4.1, SSE3, SSE2, SSE, and SSSE3 instructions.

corei7

Optimizes code for processors that support Intel® SSE4 Efficient Accelerated String and Text Processing instructions. May also generate code for Intel® SSE4 Vectorizing Compiler and Media Accelerator, Intel® SSE3, SSE2, SSE, and SSSE3 instructions.

atom

Optimizes code for processors that support MOVBE instructions, depending on the setting of option -minstruction (Linux* OS and OS X*) or /Qinstruction (Windows* OS). May also generate code for SSSE3 instructions and Intel® SSE3, SSE2, and SSE instructions.

core2

Optimizes for the Intel® Core™ 2 processor family, including support for MMX™, Intel® SSE, SSE2, SSE3 and SSSE3 instruction sets.

pentium-mmx

Optimizes for Intel® Pentium® with MMX technology.

pentiumpro

Optimizes for Intel® Pentium® Pro, Intel Pentium II, and Intel Pentium III processors.

pentium4m

Optimizes for Intel® Pentium® 4 processors with MMX technology.

pentium-m
pentium4
pentium3
pentium

Optimizes code for Intel® Pentium® processors. Value pentium3 is only available on Linux* OS.

Default

generic

Code is generated for the compiler's default behavior.

Description

This option performs optimizations for specific processors.

The resulting executable is backwards compatible and generated code is optimized for specific processors. For example, code generated with -mtune=pentium4 will run correctly on Core2 processors, but it might not run as fast as if it had been generated using -mtune=core2.

The following table shows on which architecture you can use each value.

Architecture

processor Value

IA-32 architecture

Intel® 64 architecture

generic

X

X

core2

X

X

pentium

X

pentium-mmx

X

pentiumpro

X

pentium4

X

pentium4m

X

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

IDE Equivalent

Visual Studio: None

Eclipse: Optimization > Optimize for Intel processor

Xcode: None

Alternate Options

-mtune

Linux: -mcpu (this is a deprecated option)

OS X: None

Windows: None