Disables the generation of gather instructions in auto-vectorization.
Linux: | -mno-gather |
Windows: | /Qgather- |
None
OFF |
Gather instructions are enabled in auto-vectorization. |
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.
None
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