Skip to content

Profiling and Performance

Profiling is an important task to be considered when a computer code is written. Writing parallel code is less challenging, but making it more efficient on a given parallel architecture is challenging. Moreover, from the programming and programmer’s perspective, we want to know where the code spends most of its time. In particular, we would like to know if the code (given algorithm) is compute bound, memory bound, cache misses, memory leak, proper vectorisation, cache misses, register spilling, or hot spot (time-consuming part in the code). Plenty of tools are available to profile a scientific code (computer code for doing arithmetic computing using processors). However, Here, we will focus few of the widely used tools.

ARM Forge

Arm Forge is another standard commercial tool for debugging, profiling, and analysing scientific code on the massively parallel computer architecture. They have a separate toolset for each category with the common environment: DDT for debugging, MAP for profiling, and performance reports for analysis. It also supports the MPI, UPC, CUDA, and OpenMP programming models for a different architecture with different variety of compilers. DDT and MAP will launch the GUI, where we can interactively debug and profile the code. Whereas perf-report will provide the analysis results in .html and .txt files.

Example: ARM Forge
# compilation with debugging tool
$ gcc test.c -g -fopenmp
# execute and profile the code
$ map --profile --no-mpi ./a.out
# open the profiled result in GUI
$ map xyz.map

# for debugging
$ ddt ./a .out

# for profiling
$ map ./a .out

# for analysis
$ perf-report ./a .out
# compilation 
$ gfortran test.f90 -fopenmp
# execute and profile the code
$ map --profile --no-mpi ./a.out
# open the profiled result in GUI
$ map xyz.map

# for debugging
$ ddt ./a .out

# for profiling
$ map ./a .out

# for analysis
$ perf-report ./a .out

Intel tools

Intel Application Snapshot

Intel Application Performance Snapshot tool helps to find essential performance factors and the metrics of CPU utilisation, memory access efficiency, and vectorisation. aps -help will list out profiling metrics options in APS

Example: APS
# compilation
$ icc -qopenmp test.c

# code execution
$ aps --collection-mode=all -r report_output ./a.out
$ aps-report -g report_output                        # create a .html file
$ firefox report_output_<postfix>.html               # APS GUI in a browser
$ aps-report report_output                           # command line output
# compilation
$ ifort -qopenmp test.f90

# code execution
$ aps --collection-mode=all -r report_output ./a.out
$ aps-report -g report_output                        # create a .html file
$ firefox report_output_<postfix>.html               # APS GUI in a browser
$ aps-report report_output                           # command line output

Intel Inspector

Intel Inspector detects and locates the memory, deadlocks, and data races in the code. For example, memory access and memory leaks can be found.

Example: Intel Inspector
# compile the code
$ icc -qopenmp example.c
# execute and profile the code
$ inspxe-cl -collect mi1 -result-dir mi1 -- ./a.out
$ cat inspxe-cl.txt
# open the file to see if there is any memory leak
=== Start: [2020/12/12 01:19:59] ===
0 new problem(s) found
=== End: [2020/12/12 01:20:25] ===
# compile the code
$ ifort -qopenmp test.f90
# execute and profile the code
$ inspxe-cl -collect mi1 -result-dir mi1 -- ./a.out
$ cat inspxe-cl.txt
# open the file to see if there is any memory leak
=== Start: [2023/05/10 01:19:59] ===
0 new problem(s) found
=== End: [2020/05/10 01:20:25] ===
Intel Advisor

Intel Advisor: a set of collection tools for the metrics and traces that can be used for further tuning in the code. survey: analyse and explore an idea about where to add efficient vectorisation.

Example: Intel Advisor
# compile the code
$ icc -qopenmp test.c
# collect the survey metrics
$ advixe-cl -collect survey -project-dir result -- ./a.out
# collect the report
$ advixe-cl -report survey -project-dir result
# open the gui for report visualization
$ advixe-gui
# compile the code
$ ifort -qopenmp test.90
# collect the survey metrics
$ advixe-cl -collect survey -project-dir result -- ./a.out
# collect the report
$ advixe-cl -report survey -project-dir result
# open the gui for report visualization
$ advixe-gui

Intel VTune
  • Identifying the time consuming part in the code.
  • And also identify the cache misses and latency.
Example: Intel VTune
# compile the code
$ icc -qopenmp test.c
# execute the code and collect the hotspots
$ amplxe-cl -collect hotspots -r amplifier_result ./a.out
$ amplxe-gui
# open the GUI of VTune amplifier
# compile the code
$ ifort -qopenmp test.90
# execute the code and collect the hotspots
$ amplxe-cl -collect hotspots -r amplifier_result ./a.out
$ amplxe-gui
# open the GUI of VTune amplifier

amplxe-cl will list out the analysis types and amplxe-cl -hlep report will list out available reports in VTune.

AMD uProf

AMD uProf profiler follows a statistical sampling-based approach to collect profile data to identify the performance bottlenecks in the application.

Example: AMD uProf
# compile the code
$ clang -fopenmp test.c
$ AMDuProfCLI collect --trace openmp --config tbp --output-dir solution ./a.out -d 1
# compile the code
$ flang -fopenmp test.90
$ AMDuProfCLI collect --trace openmp --config tbp --output-dir solution ./a.out -d 1

Last update: January 31, 2024 09:18:25
Created: April 26, 2023 10:45:49