How to use arm-forge

Software
Version
Cluster
arm-forge
21.1
Dardel

Load the the ARM-forge 21.1 suite

$ module load PDC/21.09
$ module load arm

To prepare code for MAP or DDT, just compile with debugging enabled

$ ftn -g sourcecode.f90 -o prog.ex

The binary prog.ex is now instrumented for ARM MAP (and DDT).

In order to run you must prepend the srun command in your bash script or interactive run with map –profile. Here is a simple script:

#!/bin/bash -l


#SBATCH -A <insert-your-allocation>
#SBATCH -J forge-test
#SBATCH -t 00:10:00
#SBATCH --nodes 1
#SBATCH -n 64

module load PDC/21.09
module load arm

map --profile srun -n ${SLURM_NTASKS} ./wave.ex

The run will generate an additional file next to the normal output of the mapped application, namely:

<app>_<cores>p_<date-stamp>_<time-stamp>**.map**

You can open the map file in ARM-forge GUI.

(you must have x11-forwarding enabled in your logged in session)

Running example for map

We will here demonstrate an example from the official documentation that has been lightly profiled and optimized by us

$ mkdir forge-test
$ cd forge-test
$ cp -r /pdc/software/21.09/other/arm/forge/21.1/examples/wave_demo_TKL .

This example implements the concurrent wave equation. A vibrating string is decomposed into points and distributed to the processors who update local slices of the string. End points of each slice is communicated to the neighbors between iterations.

There are three fortran source codes

$ wave_modified0.f90
$ wave_modified1.f90
$ wave_modified2.f90

where 0 indicates original example and 1,2 are updates where identified bottlenecks have been handled.

Light profiling of original code to identify bottlenecks

$ ftn -g examples/wave_modified0.f90 -o wave_mod0.ex

Submit a job of a binary compiled from wave_modified0.f90. When finished, open the resulting .map file in the gui

$ map wave_mod0_64p_1n_2021-11-30_01-58.map

../../../../_images/map0.png

Here we see that total run time is 79s and 99.9% of the time is spent in the subroutine update(). Clicking this field gives us a detailed view of where this time is spent.

../../../../_images/map0-zoomed.png

The 46.6% post is not so much to do about in terms of rearranging operations. But two others can easily be modified:

  1. Line 345 can be moved outside the do loop. (8.8% of the time)

  2. Line 356-357 are better to turn into vector operations. (13.2% and 3% of the time)

In wave_modified1.f90 these parts have been modified. Let’s compile this file and run the binary.

../../../../_images/map1.png

The total time is now 38s. Interestingly, the slowest part went from 36.8s (46.6%) to 16.3s (43.0%) without seemingly touching it. However, note that we eliminated the if-else statement that previously was done at each iteration of the inner do loop.

Note also for previous line 345 and 356:

  1. Below 0.1% execution time now.

  2. Went from 10.4s (13.2%) and 2.4s (3%) to 3.0s (8%) and 3.0s (8%).

The last part is now slower than the previous due to memory access - in the original code line 357 benefitted from line 356 where data had already been fetched. Overall performance is however still faster now.

Now we turn to the next posts - (15.7%) on line 338 and (14.3%) line 331. These are places where the processes are waiting to receive (MPI_recv) for the endpoints from their neighbors. However, one may observe that the bulk of time in line 349 in the original code can actually be performed immediately - all points except the end points. We separate these from the loop and use non-blocking MPI_Isend to match the moved MPI_Recv.

../../../../_images/map2.png

Now we see that the waiting time for the processes were reduced to (8%) while the total time is now 37s. In absolute terms, no big difference but this last step still illustrates how one can use non-blocking routines to fine-tune design.

Disclaimer

PDC takes no responsibility for the correctness of results produced with the binaries. Always evaluate the binaries against known results for the systems and properties you are investigating before using the binaries for production jobs.