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

Vectorization / Parallelization / Optimization Reports Under VS 2010

Royi
Novice
1,037 Views

Hello,

I'm using VS 2010 as my IDE.
It's configured to use Intel Compiler (Composer 2011).

I set all the required fields in the diagnostics menu under the project properties (As written in "A Guide to Vectorization with Intel® C++ Compilers").

Yet I see no data in the output window of VS 2010.

Where can I see the report as shown here:

http://stackoverflow.com/questions/9054046/directory-of-vectorization-report-for-intel-c-compiler-in-vs-10

Thank You.

 

0 Kudos
21 Replies
SergeyKostrov
Valued Contributor II
64 Views
A couple of more comments... . >>...The Windows debug compile flags include the effect of /Od, so you don't get any vectorization... . A set of Debug Information Format options /Z7, /Zd /Zi and ZI could also affect a C++ compiler optimizations. . Please take into account that all C++ compilers create less efficient codes in Debug configurations. In my software development environment with more that 36 projects a C++ compiler optimizations are completely disabled for Debug configurations. If some performance or optimization evaluations are need to be done I switch configurations to Release.
0 Kudos
Reply