Intel® oneAPI DPC++/C++ Compiler Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-02B1F29A-6EF3-455F-8EDD-24D63F144319
Visible to Intel only — GUID: GUID-02B1F29A-6EF3-455F-8EDD-24D63F144319
mno-gather, Qgather-
Disables the generation of gather instructions in auto-vectorization.
Syntax
Linux: |
-mno-gather |
Windows: |
/Qgather- |
Arguments
None
Default
OFF |
Gather instructions are enabled in auto-vectorization. |
Description
This option disables the generation of gather instructions in auto-vectorization.
This option only applies to host compilation. When offloading is enabled, it does not impact device-specific compilation.
IDE Equivalent
Alternate Options
None
Examples
The following shows examples of using this option:
Linux
icx -c -mno-gather t.c
icpx -c -mno-gather -mno-scatter t.cpp
Windows
icx /c /Qgather- t.c
icpx /c /Qgather- /Qscatter- t.cpp