Selected Intel
C++
Compiler 19.x Directives
- code_align
Specifies the byte alignment for a loop
- distribute_point
Instructs the compiler to prefer loop distribution at the location indicated.
- ivdep
Instructs the compiler to ignore assumed vector dependencies.
- loop_count
Specifies the iterations for a for loop.
- novector
Specifies that a particular loop should never be vectorized.
- OpenMP* Pragmas Summary
- simd
Enforces vectorization of loops.
- unroll/nounroll
Indicates to the compiler to unroll or not to unroll a counted loop.
- vector
Indicates to the compiler that the loop should be vectorized according to the argument keywords.