Linaro MAP is a full scale profiler for HPC programs. We recommend using Linaro MAP after reviewing reports from Linaro Performance Reports. MAP supports pthreads, OpenMP, and MPI software on CPU, GPU, and MIC based architectures.
The Linaro MAP versions currently available at OSC are:
Version | Owens | Pitzer | Ascend |
---|---|---|---|
22.0.2 | X | X | X |
23.1 | X* | X* | X* |
You can use module spider linaro-map
to view available modules for a given machine. Feel free to contact OSC Help if you need other versions for your work.
Linaro MAP is available to all OSC users. We have 64 seats with 80 HPC tokens. Users can monitor the Linaro License Server Status.
Linaro, Commercial
To load the default version of the Linaro MAP module, use module load linaro-map
. To select a particular software version, use module load linaro-map/version
. For example, use module load linaro-map/6.0
to load Linaro MAP version 6.0, provided the version is available on the cluster in use.
Note: Before you run MAP from the command line for the first time, open MAP as a GUI from OnDemand to configure with appropriate settings for your environment.
Profiling HPC software with Linaro MAP typically involves three steps:
Regular executables can be profiled with Linaro MAP, but source code line detail will not be available. You need executables with debugging information to view source code line detail: re-compile your code with a -g
option added among the other appropriate compiler options. For example:
mpicc wave.c -o wave -g -O3
This executable built with the debug flag can be used for Linaro Performance Reports as well.
Note: The -g
flag turns off all optimizations by default. For profiling your code you should use the same optimizations as your regular executable, so explicitly include the -On
flag, where n is your normal level of optimization, typically -O2
or -O3
, as well as any other compiler optimization options.
Profiles are normally generated in a batch job. To generate a MAP profile for an MPI program:
module load linaro-map map --profile -np <num proc> --mpiargs="<mpi args>" <program> <program args>
where <num procs>
is the number of MPI processes to use, <mpi args>
represents arguments to be passed to srun (other than -n), <program>
is the executable to be run and <program args>
represents arguments passed to your program.
For example, if you normally run your program with mpiexec -n 12 wave_c
, you would use
map --profile -np 12 wave_c
To profile a non-MPI program:
module load linaro-map map --profile --no-mpi <program> <program args>
The profile data is saved in a .map file in your current directory.
As a result of this step, a .map file that is the profile data file is created in your current directory. The file name is based on the executable name, number of processes, date and time, for example, wave_c_12p_2016-02-05_12-46.map
.
For more details on using Linaro MAP, refer to the Linaro Forge User Guide.
You can open the profile data file using a client running on your local desktop computer. For client installation and usage instructions, please refer to the section: Client Download and Setup. This option typically offers the best performance.
Alternatively, you can run MAP in interactive mode, which launches the graphical user interface (GUI). For example:
map wave_c_12p_2016-02-05_12-46.map
For the GUI application, one should use an OnDemand VDI (Virtual Desktop Interface) or have X11 forwarding enabled (see Setting up X Windows). Note that X11 forwarding can be distractingly slow for interactive applications.
Linaro MAP can be used for CUDA codes. If you have an executable compiled with the CUDA library, you can launch Linaro MAP with
map {executable}
For more information, please read the Chapter 15 of the Linaro Forge User Guide.
To download the client, go to the Linaro website and choose the appropriate Linaro Forge remote client download for Windows, Mac, or Linux. For Windows and Mac, just double click on the downloaded file and allow the installer to run. For Linux, extract the tar file using the command tar -xf file_name
and run the installer in the extracted file directory with ./installer
. Please contact OSC Help, if you have any issues on downloading the client.
After installation, you can configure the client as follows:
Open the client program. For Windows or Mac, just click the desktop icon or navigate to the application through its file path. For Linux use the command {linaro-forge-path}/bin/map
.
/usr/local/linaro/forge-{version}
, specifying the Linaro Forge version number that created the data profile file you are attempting to view. For example, /usr/local/linaro/forge-7.0
for Linaro Forge version 7.0.This login configuration is needed only for the first time of use. In subsequent times, you can just select your profile.
After login, click on LOAD PROFILE DATA FILE. This opens a file browser of your home directory on the OSC cluster you logged onto. Go to the directory that contains the .map file and select it. This will open the file and allow you to navigate the source code line-by-line and investigate the performance characteristics.
A license is not required to simply open the client, so it is possible to skip 2. Configure the client, if you download the profile data file to your desktop. You can then open it by just selecting LOAD PROFILE DATA FILE and navigating through a file browser on your local system.