Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

auto simdization compiler option?

Ravi_Managuli
Beginner
232 Views
Is it possible to set "auto simdization" as a compiler option while using Visual studio 2008? I am using intel parallel studio.

Thanks
0 Kudos
2 Replies
Mark_S_Intel1
Employee
232 Views
Intel compiler's Auto-vectorization options are available in Visual Studio under Project\properties\C/C++\Code Generation. The two options available are:

- Add Processor-Optimized Code Path
- Intel Processor-Specific Optimization

All of the options available under the above menus could also be set from the "C/C++\Command Line" property. More information about the vectorization options are available at http://software.intel.com/en-us/articles/performance-tools-for-software-developers-intel-compiler-options-for-sse-generation-and-processor-specific-optimizations/?wapkw=%28SSe%29 .

--mark
0 Kudos
Ravi_Managuli
Beginner
232 Views
Intel compiler's Auto-vectorization options are available in Visual Studio under Project\properties\C/C++\Code Generation. The two options available are:

- Add Processor-Optimized Code Path
- Intel Processor-Specific Optimization

All of the options available under the above menus could also be set from the "C/C++\Command Line" property. More information about the vectorization options are available at http://software.intel.com/en-us/articles/performance-tools-for-software-developers-intel-compiler-options-for-sse-generation-and-processor-specific-optimizations/?wapkw=%28SSe%29 .

--mark

Thank you. I could add the optimizations
0 Kudos
Reply