Controls the use of loop vectorizing optimization.
#pragma opt_vectorize_loops on | off | reset
If you enable this pragma, the compiler improves loop performance.
Note: Do not confuse loop vectorizing with the vector instructions available in some processors. Loop vectorizing is the rearrangement of instructions in loops to improve performance. This optimization does not optimize a processor's vector data types.
By default, this pragma is
off.