DDT

DDT is a debugger for C, C++ and Fortran 90 threaded and parallel codes, produced by Linaro. 

Forge’s GUI runs on Bridges-2.  To use it, you must first install and configure the Linaro Forge client on your local machine.   Once the client is installed and configured, you can run DDT on Bridges-2.

No matter which compiler you use, you must compile your code with the -g option to produce debug information.

Documentation

Usage on Bridges-2

 

You must have a Forge client installed on your local machine. Be sure to get the latest client from Linaro using the link below.

Uninstall old versions of the Forge client

 

If you have an older version of the Forge client installed, you must uninstall it before installing the new one.  Be sure the configuration files are removed also. Old configuration files are not overwritten when a new client is installed.  On a Windows system, the configuration files are stored by default in a folder under the Program Files folder.

Install and configure the client

 

The client and server versions of Forge must match.  Determine the version of the Forge server on Bridges-2 by typing  module avail ddt. The output shows that the current version is 23.0.3.

[user@brides2-login013]$ module avail ddt
  ------------------------- /opt/modulefiles --------------------------
 ddt/20.1.3   ddt/20.2.1   ddt/23.0.3 (D)

 

To install the Forge client, follow these steps:

  1. Download the appropriate client for your local machine from https://www.linaroforge.com/downloadForge/
  2. Run the installer.  When it completes successfully, start up the Forge client on your local machine.
  3. Under Options, from the Remote Launch drop-down field in the middle of the screen, select Configure. A Configure Remote Connections window opens.
  4. Choose Add. A Remote Launch Settings window will open.
  5. Enter these settings:
    • For Host Name: your-username@bridges2.psc.edu
    • For Remote Installation Directory, use /opt/packages/linaro/forge/version. In this example, you would use /opt/packages/linaro/forge/23.0.3.

    Click OK.  The Remote Launch Settings window will close. A Configure Remote Connections window will open.

  6. In the Configure Remote Connections window, click Close. The  Remote Launch drop-down field will now have a connection named your-username@bridges2.psc.edu.

Running on Bridges-2

 

Your code must be compiled before running DDT. Be sure to use the -g option when compiling so that debug information is produced.

When you have the Forge client installed and configured on your local machine, follow these steps to run DDT  on Bridges-2:

  1. Open a connection from your Forge client to Bridges-2 by starting the Forge client on your local machine.
    1. From the remote Launch drop-down field, select the connection for your-usename@bridges2psc.edu.  A Connect to Remote Host window will open.
    2. Enter your PSC password when prompted. The Connect to Remote Host window will close.  When the connection is made successfully, you will see “Licence Serial: 16490” (the serial number may vary) in the lower left of the Forge client window,  meaning it found the license and is talking to the server on Bridges-2.  This may take a minute to happen.
  2. Choose DDT  from the left side of the window.
  3. Run and debug or profile your executable.
    1. For DDT, click on RUN  to run and debug your program.    A  Run (queue submission mode) window opens.
    2. Enter the path to your executable in the Application input field. Note that it must already be compiled. DDT should automatically detect if you are using MPI, OpenMP, CUDA, and fill in some details for you.
    3. Set the queue parameters. The first time you use DDT , you must configure the queue submissions. Check the box next to Submit to queue.
      1. In the Submit to queue row, select the Configure tab.  A Job Submission Settings window will open.
      2. Click on the file folder icon in the template file input field. A Choose Queue Template window will open.
      3. Choose the template file ‘slurm.qtf’. Click Open.  The Choose Queue Template window will close. Click OK in the Job Submission Settings window and it will close.
      4. In the Run (queue submission mode) window, in the Submit to queue row, select  the Parameters tab.  A Queue parameters window will open.
        • Set the queue name to be one of RM, RM-small, EM, or GPU.
        • If you are using MPI, you must specify the number of Processes (the number of processes that you want to debug), Nodes (the number of compute nodes that you want to use) and Processes per Node (the number of MPI processes to run on each compute node).
        • Change the clock time limit, if you choose.

        Click OK when done. The Queue parameters window will close.

  4. Click Submit in the Run (queue submission mode) window. A debugging or profiling window will open. If there are not enough resources available to run your job, a window showing the partition and your job in it will open. When resources are available your job will begin, and you can debug or profile your program.