Difference between revisions of "Intel VTune"

From HPC Wiki
Jump to navigation Jump to search
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
The Intel VTune™ Amplifier can be used to identify and analyse various aspects in both serial and parallel programs and can be used for both [[OpenMP]] and [[MPI]] applications. It can be used with a command line interface (CLI) or a graphical user interface (GUI).
+
[[Category:HPC-Developer]]
 +
The Intel VTune™ Profiler (prior version 2020: Amplifier XE) can be used to identify and analyse various aspects in both serial and parallel programs and can be used for both [[OpenMP]] and [[MPI]] applications. It can be used with a command line interface (CLI) or a graphical user interface (GUI).
  
 
__TOC__
 
__TOC__
  
== Using the Graphical User Interface (GUI) ==
+
== Overwiew ==
  
The graphical interface of the Intel VTune Amplifier XE can usually be started by using the command <code>amplxe-gui</code>. The following analysis categories are available:
+
The graphical interface of the Intel VTune Profiler can usually be started by using the command <code>vtune-gui</code>. The following analysis categories are available:
  
 
'''Hotspots'''
 
'''Hotspots'''
Line 25: Line 26:
 
* HPC Performance Characterization
 
* HPC Performance Characterization
  
The following steps lead to a basic optimization of the code. Note that this is only a general approach and that a custom analysis may be more helpful depending on the application.
+
'''Platform Analysis'''
 +
 
 +
Various options to analyze GPU usage, I/O and the platform in general
 +
* System Overview
 +
* GPU Compute/Media Hotspots (preview)
 +
* GPU Rendering (preview)
 +
* Input and Output
 +
* CPU/FPGA Interaction (preview)
 +
* GPU Offload (preview)
 +
* Throttling (preview)
 +
* Platform Profiler
 +
 
  
=== Step 1: Find the Hotspots ===
+
'''Custom Analysis'''
 +
is the way of go if you are interested in very special view to your application.
  
Click on '''Configure Analysis''' and select the Hotspot Analysis (usually selected by default). Configure the analysis by specifying a script or executable and setting necessary parameters and environment variables. Click the start button to start the analysis. Try to keep the amount of other software running on the same machine to a minimum to achieve accurate and reproducable results. Once the analysis has finished, the '''Summary''' window should open automatically and the results must be interpreted.
+
 
 +
 
 +
 
 +
== Using the Graphical User Interface (GUI) ==
 +
=== Hotspot Analysis ===
 +
 
 +
The Hotspot Analysis is the most commonly used analysis and generally the first approach to optimizing an application. It is also the default analysis set when starting '''Configure Analysis'''. In order to run it a script or executable must be set as well as necessary parameters and environment variables. Click the start button to start the analysis. Try to keep the amount of other software running on the same machine to a minimum to achieve accurate and reproducable results. Once the analysis has finished, the '''Summary''' window should open automatically.
  
  
 
[[File:Intel-VTune-Hotspot-Summary.png|500px]]
 
[[File:Intel-VTune-Hotspot-Summary.png|500px]]
 
  
 
The Elapsed Time shows the total runtime of the application including idle times while CPU Time is the sum of the CPU times of all threads. The Paused time is the total time the application was paused using the GUI, CLI commands or user API. The Top Hotspots section shows the most time-consuming functions sorted by CPU time. Below these one can find a histogram displaying the effective CPU Utilization of the application.  
 
The Elapsed Time shows the total runtime of the application including idle times while CPU Time is the sum of the CPU times of all threads. The Paused time is the total time the application was paused using the GUI, CLI commands or user API. The Top Hotspots section shows the most time-consuming functions sorted by CPU time. Below these one can find a histogram displaying the effective CPU Utilization of the application.  
Line 57: Line 75:
 
Clicking on a function in the '''Bottom-up''' window (grouped by <code>Thread/Function/Call Stack</code>) will open the source editor at the respective code line. The Assembly window can be opened instead of or additionally to the Source window by ticking the respective boxes in the toolbar. The columns can be reorganized by drag-and-drop and the changes will be saved and used in other projects.
 
Clicking on a function in the '''Bottom-up''' window (grouped by <code>Thread/Function/Call Stack</code>) will open the source editor at the respective code line. The Assembly window can be opened instead of or additionally to the Source window by ticking the respective boxes in the toolbar. The columns can be reorganized by drag-and-drop and the changes will be saved and used in other projects.
  
=== Step 2: Find Hardware usage bottlenecks ===
+
=== Microarchitecture Exploration ===
 +
 
 +
The Microarchitecture Exploration analysis is usually run after the hotspot analysis to find inefficiencies in CPU usage. It must be selected and configured manually in the configure analysis window. Remember to choose a sensible sampling rate and to have enough memory space available. Please also note that the default data collection limit of 1GB may well be exceeded quickly by this type of analysis and may need adjustment.
 +
 
 +
 
 +
[[File:Intel-VTune-Analysis-Configuration.png|200px]]
 +
 
 +
 
 +
Once the analysis has finished, the summary window should open by default. Here you should find a number of metrics listed hierarchially depending on the provided hardware. These event-based metrics are defined by Intel as well as thresholds indicating there might be an potential performance problem if surpassed, which will be marked by a red flag.
 +
 
 +
 
 +
[[File:Intel-VTune-Microarchitecture-Summary.png|500px]]
  
=== Step 3: Optimize memory access performance ===
 
  
=== Step 4: Final check ===
+
Underneath there should be a so called '''µPipe''' diagram which shows a graphical representation of the CPU efficiency.
 +
 
 +
 
 +
[[File:Intel-VTune-µpipe.png|500px]]
 +
 
 +
 
 +
The '''Bottom-up''' window shows the individual functions of the application with the respective event-based metrics in descending order. Clicking on a function should again open the '''source''' window and show the respective lines of codes with the potential problems. On the right side there should also be a metrics tree if enough samples were collected. Underneath a timeline section can be found similarly to the one from the Hotspot analysis.
 +
 
 +
 
 +
[[File:Intel-VTune-Microarchitecture-bottom-up.png|500px]]
  
 
== Using the Command Line Interface (CLI) ==
 
== Using the Command Line Interface (CLI) ==
  
The Intel VTune Command line interface (CLI) can be started by using the command <code>amplxe-cl</code> with the following parameters:  
+
The Intel VTune Command line interface (CLI) can be started by using the command <code>vtune</code> with the following parameters:  
  
 
{| class="wikitable" style="width: 50%;"
 
{| class="wikitable" style="width: 50%;"
Line 83: Line 120:
 
=== action: collect ===
 
=== action: collect ===
  
Syntax: <code>amplxe-cl -collect <analysis_type></code> (-collect may be shortened to -c)
+
Syntax: <code>vtune -collect <analysis_type></code> (-collect may be shortened to -c)
  
The following analysis types are a selection that is of most interest for HPC applications. The full list can be found in the official Intel VTune Amplifier User Guide.
+
The following analysis types are a selection that is of most interest for HPC applications. The full list can be found in the official Intel VTune Profiler User Guide, or type
 +
<code>$ vtune -help collect | less</code>
  
{| class="wikitable" style="width: 50%;"
+
{| class="wikitable" style="width: 75%;"
| '''analysis types''' ||  
+
| ''' analysis types ''' ||  
|-
 
| <code>hotspots</code> || Identify hotspots and collect stacks and call tree information
 
 
|-
 
|-
| <code>advanced-hotspots</code> ||Identify hotspots by using hardware counters and ignore stack and call tree
+
| <code>hotspots</code> || Identify the most time consuming functions and lines of source code.
 
|-
 
|-
| <code>general-exploration</code> || find low-level hardware issues
+
| <code>hpc-performance</code> || Analyze important aspects of your application performance, including CPU utilization with details on OpenMP efficiency analysis, memory access, and vectorization information.
 
|-
 
|-
| <code>memory-access</code> || find memory access related issues and estimate bandwith
+
| <code>memory-access</code> || Measure a set of metrics to identify memory access related issues.
 
|}
 
|}
  
Line 118: Line 154:
 
'''Example:'''
 
'''Example:'''
  
Running <code>amplxe-cl -collect hotspots <target></code> with no further options set results in the following output. Similarly to the GUI output one receives the overall elapsed and idle times as well as the CPU times of the individual functions in descending order (list of hotspots). The utilization of the CPUs is also analyzed and judged.  
+
Running <code>vtune -collect hotspots <target></code> with no further options set results in the following output. Similarly to the GUI output one receives the overall elapsed and idle times as well as the CPU times of the individual functions in descending order (list of hotspots). The utilization of the CPUs is also analyzed and judged.  
  
  
 
[[File:Intel-VTune-CLI-Hotspot.png|500px]]
 
[[File:Intel-VTune-CLI-Hotspot.png|500px]]
 
  
 
=== action: report ===
 
=== action: report ===
  
Syntax: <code>amplxe-cl -report <report_type> [-report-option]</code> (-report may be shortened to -r)
+
Syntax: <code>vtune -report <report_type> [-report-option]</code> (-report may be shortened to -r)
  
 
The report types and options which are of most interest for HPC applications are:
 
The report types and options which are of most interest for HPC applications are:
Line 159: Line 194:
 
'''Example:'''
 
'''Example:'''
  
First, run a hotspot collection and store the results in a directory (<code>amplxe-cl -collect hotspots -r result <target></code>)
+
First, run a hotspot collection and store the results in a directory (<code>vtune -collect hotspots -r result <target></code>)
  
Next, run <code>amplxe-cl -report hotspots -r result</code> to receive a report which contains only the data of interest (set by the report-options), e.g. only specific columns like CPU time.
+
Next, run <code>vtune -report hotspots -r result</code> to receive a report which contains only the data of interest (set by the report-options), e.g. only specific columns like CPU time.
  
 
== References ==
 
== References ==
  
Tutorials by Intel [https://software.intel.com/en-us/articles/intel-vtune-amplifier-tutorials]
+
* Tutorials by Intel [https://software.intel.com/en-us/articles/intel-vtune-amplifier-tutorials]
 
+
* Intel VTune™ Profiler Performance Analysis Cookbook [https://software.intel.com/content/www/us/en/develop/tools/vtune-profiler/documentation.html]
Intel VTune™ Amplifier Performance Analysis Cookbook [https://software.intel.com/en-us/vtune-amplifier-cookbook]
 

Latest revision as of 14:36, 29 June 2020

The Intel VTune™ Profiler (prior version 2020: Amplifier XE) can be used to identify and analyse various aspects in both serial and parallel programs and can be used for both OpenMP and MPI applications. It can be used with a command line interface (CLI) or a graphical user interface (GUI).

Overwiew

The graphical interface of the Intel VTune Profiler can usually be started by using the command vtune-gui. The following analysis categories are available:

Hotspots

Information on what parts of the code take up most of the runtime and how they may be optimized

  • Hotspots
  • Memory Access

Microarchitecture

Information on how efficiently the code utilizes the underlying hardware

  • Microarchitecture Exploration
  • Memory Access

Parallelism

Information on how efficient the parallelization of the code is

  • Threading
  • HPC Performance Characterization

Platform Analysis

Various options to analyze GPU usage, I/O and the platform in general

  • System Overview
  • GPU Compute/Media Hotspots (preview)
  • GPU Rendering (preview)
  • Input and Output
  • CPU/FPGA Interaction (preview)
  • GPU Offload (preview)
  • Throttling (preview)
  • Platform Profiler


Custom Analysis is the way of go if you are interested in very special view to your application.



Using the Graphical User Interface (GUI)

Hotspot Analysis

The Hotspot Analysis is the most commonly used analysis and generally the first approach to optimizing an application. It is also the default analysis set when starting Configure Analysis. In order to run it a script or executable must be set as well as necessary parameters and environment variables. Click the start button to start the analysis. Try to keep the amount of other software running on the same machine to a minimum to achieve accurate and reproducable results. Once the analysis has finished, the Summary window should open automatically.


Intel-VTune-Hotspot-Summary.png

The Elapsed Time shows the total runtime of the application including idle times while CPU Time is the sum of the CPU times of all threads. The Paused time is the total time the application was paused using the GUI, CLI commands or user API. The Top Hotspots section shows the most time-consuming functions sorted by CPU time. Below these one can find a histogram displaying the effective CPU Utilization of the application.


Intel-VTune-Hotspot-Bottom-up.png


In the Bottom-up window one can find detailed information grouped by function and again sorted by CPU time. Functions with high CPU time and large sections of poor CPU utilization should be targeted first. When selecting a function the full stack data will be displayed in the Call Stack section with the following format:

<module>!<function>-<file>:<line> (the line being the one calling the next function)


Intel-VTune-Hotspot-Thread.png


To analyse the performance per thread the grouping level can be switched to Thread/Function/Call Stack. Furthermore, the timeline below displays the behaviour of each thread during execution. Hovering over the Timeline itself will show the elapsed time until that point. The Threads section shows the CPU utilization per thread, while the CPU Utilization section shows the overall CPU utilization of the application.


Intel-VTune-Hotspot-Source.png


Clicking on a function in the Bottom-up window (grouped by Thread/Function/Call Stack) will open the source editor at the respective code line. The Assembly window can be opened instead of or additionally to the Source window by ticking the respective boxes in the toolbar. The columns can be reorganized by drag-and-drop and the changes will be saved and used in other projects.

Microarchitecture Exploration

The Microarchitecture Exploration analysis is usually run after the hotspot analysis to find inefficiencies in CPU usage. It must be selected and configured manually in the configure analysis window. Remember to choose a sensible sampling rate and to have enough memory space available. Please also note that the default data collection limit of 1GB may well be exceeded quickly by this type of analysis and may need adjustment.


Intel-VTune-Analysis-Configuration.png


Once the analysis has finished, the summary window should open by default. Here you should find a number of metrics listed hierarchially depending on the provided hardware. These event-based metrics are defined by Intel as well as thresholds indicating there might be an potential performance problem if surpassed, which will be marked by a red flag.


Intel-VTune-Microarchitecture-Summary.png


Underneath there should be a so called µPipe diagram which shows a graphical representation of the CPU efficiency.


Intel-VTune-µpipe.png


The Bottom-up window shows the individual functions of the application with the respective event-based metrics in descending order. Clicking on a function should again open the source window and show the respective lines of codes with the potential problems. On the right side there should also be a metrics tree if enough samples were collected. Underneath a timeline section can be found similarly to the one from the Hotspot analysis.


Intel-VTune-Microarchitecture-bottom-up.png

Using the Command Line Interface (CLI)

The Intel VTune Command line interface (CLI) can be started by using the command vtune with the following parameters:

parameters
<-action> usually collect or report
[-action-option] modify an actions behavior
[-global-option] modify the global settings
<target> set the target application
[target-options] additional parameters or input required by the target application

action: collect

Syntax: vtune -collect <analysis_type> (-collect may be shortened to -c)

The following analysis types are a selection that is of most interest for HPC applications. The full list can be found in the official Intel VTune Profiler User Guide, or type

$ vtune -help collect | less
analysis types
hotspots Identify the most time consuming functions and lines of source code.
hpc-performance Analyze important aspects of your application performance, including CPU utilization with details on OpenMP efficiency analysis, memory access, and vectorization information.
memory-access Measure a set of metrics to identify memory access related issues.

Additionally, there is a large number of global modifiers available of which a small selection can be found below aswell.

global modifiers
-[no]auto-finalize [do not] finalize the result after collection
-data-limit limit the amount of data that may be collected (defualt 1GB)
-quiet display less information
-search-dir set the path where the binary and symbol files are stored
-result-dir set the path where the result should be stored


Example:

Running vtune -collect hotspots <target> with no further options set results in the following output. Similarly to the GUI output one receives the overall elapsed and idle times as well as the CPU times of the individual functions in descending order (list of hotspots). The utilization of the CPUs is also analyzed and judged.


Intel-VTune-CLI-Hotspot.png

action: report

Syntax: vtune -report <report_type> [-report-option] (-report may be shortened to -r)

The report types and options which are of most interest for HPC applications are:

report types
summary Identify hotspots and collect stacks and call tree information
hotspots Identify hotspots by using hardware counters and ignore stack and call tree
hw-events find low-level hardware issues
report options
-column Include or exclude columns
filter Include or exclude data
group-by specify grouping
time-filter specify a time range
-source-search-dir set the path where the source code is stored
-result-dir set the path where the result should be stored


Example:

First, run a hotspot collection and store the results in a directory (vtune -collect hotspots -r result <target>)

Next, run vtune -report hotspots -r result to receive a report which contains only the data of interest (set by the report-options), e.g. only specific columns like CPU time.

References

  • Tutorials by Intel [1]
  • Intel VTune™ Profiler Performance Analysis Cookbook [2]