Analyze Performance After Optimization

In this step, run the Performance Snapshot analysis again to profile the application with loop interchange enabled.

To see the improvement provided by using the loop interchange technique, run the Performance Snapshot analysis again.

Note

Depending on your compiler and IDE, when configuring the analysis, you may need to browse to a different executable that was generated during recompilation in the previous step. For example, by default, Visual Studio* places the executable in [matrix]\vc15\x64\Release.

Once the sample application finishes, the Performance Snapshot Summary window opens.

Observe these main indicators:

In this case, the code was not vectorized because the Intel® oneAPI DPC++/C++ Compiler does not perform vectorization when compiling with binary size favored (/O1).

To enable automatic vectorization by the compiler through Visual Studio, follow these steps:

  1. Right-click the matrix project and select Properties.

  2. In the C/C++ > Optimization menu, set the Optimization option to Maximum Optimization (Favor Speed) (/O2).

  3. Save the configuration changes.

  4. Build the application.

Next step: Analyze Vectorization Efficiency.