Intel® oneAPI DPC++/C++ Compiler Developer Guide and Reference

ID 767253
Date 3/22/2024
Public
Document Table of Contents

mno-scatter, Qscatter-

Disables the generation of scatter instructions in auto-vectorization.

Syntax

Linux:

-mno-scatter

Windows:

/Qscatter-

Arguments

None

Default

OFF

Scatter instructions are enabled in auto-vectorization.

Description

This option disables the generation of scatter instructions in auto-vectorization.

NOTE:

This option only applies to host compilation. When offloading is enabled, it does not impact device-specific compilation.

IDE Equivalent

None

Alternate Options

None

Examples

The following shows examples of using this option:

Linux

icx -c -mno-gather -mno-scatter t.cpp 

Windows

icx /c /Qgather- /Qscatter- t.cpp 

See Also