Logo
Graphcore Command Line Tools
Version: 1.2.1
  • 1. Introduction
  • 2. Runtime options
  • 3. gc-docker
    • 3.1. Start a container with IPU devices
    • 3.2. Show Docker command
    • 3.3. Usage
      • 3.3.1. Commands
      • 3.3.2. Command options
      • 3.3.3. Examples
      • 3.3.4. Notes
  • 4. gc-exchangetest
    • 4.1. Usage
      • 4.1.1. Allowed options
  • 5. gc-exchangewritetest
    • 5.1. Usage
      • 5.1.1. Allowed options
  • 6. gc-flops
    • 6.1. Precision
    • 6.2. Device
      • 6.2.1. Usage
    • 6.3. Allowed options
  • 7. gc-gwlinkstraffictest
    • 7.1. Standard mode
    • 7.2. Single IPU mode
    • 7.3. Usage
      • 7.3.1. Allowed options
  • 8. gc-hostsynclatencytest
    • 8.1. Usage
      • 8.1.1. Allowed options
  • 9. gc-hosttraffictest
    • 9.1. Usage
      • 9.1.1. Allowed options
  • 10. gc-info
    • 10.1. Commands
      • 10.1.1. List devices
      • 10.1.2. Device info
      • 10.1.3. Tile overview
      • 10.1.4. Register dump
      • 10.1.5. Dump tile memory
    • 10.2. Usage
      • 10.2.1. Commands
      • 10.2.2. Command options
      • 10.2.3. Examples
    • 10.3. Glossary
  • 11. gc-inventory
    • 11.1. Usage
      • 11.1.1. Allowed options
  • 12. gc-iputraffictest
    • 12.1. Usage
      • 12.1.1. Allowed options
      • 12.1.2. Single ipu mode options
      • 12.1.3. Single ipu loopback mode
  • 13. gc-links
    • 13.1. Usage
      • 13.1.1. Allowed options
  • 14. gc-memorytest
    • 14.1. Usage
      • 14.1.1. Allowed options
  • 15. gc-monitor
    • 15.1. Output
      • 15.1.1. IPU-Machine device information
      • 15.1.2. PCIe card device information
      • 15.1.3. Process information
        • Usage
    • 15.2. Allowed options
    • 15.3. Notes
    • 15.4. Examples
  • 16. gc-podman
  • 17. gc-powertest
    • 17.1. Usage
      • 17.1.1. Allowed options
  • 18. gc-reset
    • 18.1. Usage
      • 18.1.1. Allowed options
      • 18.1.2. Examples
      • 18.1.3. Notes
  • 19. gc-boardtool
    • 19.1. Thermal design power (TDP) limit
    • 19.2. Usage
      • 19.2.1. Available options
  • 20. Device attributes
    • 20.1. List of supported attributes
  • 21. C2 PCIe Device IDs and channel map
    • 21.1. Device IDs
    • 21.2. IPU-Link channel mapping
    • 21.3. PCIe ID to slot mapping
  • 22. Trademarks & copyright
Graphcore Command Line Tools

13. gc-links

This tool displays the status and connectivity of each of the IPU-Links that connect the IPUs. It does this by “training” the links with some data, and then checking that the data can be retrieved across all the links.

To use it, run:

gc-links -j

Note: On IPU-POD systems, the IPU-Links are trained when the partition is created. When running gc-links, the output will look something like this:

{
  "iteration_0": {
      "warning": "Links already trained - no training performed",
      "overall_result": "passed",
      "discovery_method": "VIRM"
  },
  "requested_iterations": "1",
  "iterations_with_failures": "0",
  "overall_result": "passed"
}

On a system where link training is available, the output will look similar to the following example:

{
  "ipu to ipu": {
      "from pcie id": "5",
      "to pcie id": "7",
      "channel": {
          "from": "NLC_E_2A",
          "to": "NLC_E_3A",
          "status": "passed",
          "gen": "4",
          "lanes": "8"
      },
      "channel": {
          "from": "NLC_E_2B",
          "to": "NLC_E_3B",
          "status": "passed",
          "gen": "4",
          "lanes": "8"
      }
  },
  "num ipus": "16",
  "overall result": "passed",
  "training fails": "0"
}

The “status” field shows the training status for each link. The “lanes” field shows the number of lanes being trained, and the “gen” field shows what generation of link is tested.

When gc-links finds that a link fails to train, the output looks like this:

{
  "ipu to ipu": {
    "from pcie id": "7",
    "to pcie id": "6",
    "channel": {
        "from": "NLC_W_1B",
        "to": "NLC_W_1B",
        "status": "passed",
        "gen": "4",
        "lanes": "8"
    },
    "channel": {
        "from": "NLC_W_1C",
        "to": "NLC_W_1C",
        "status": "failed",
        "gen": "0",
        "lanes": "0"
    }
  }
}

This output shows that it failed to train the link from device 7 to device 6, using link NLC_W_1C.

You can run gc-inventory to show more information on devices 6 and 7:

Device:
  id: 6
  type: C2
  Firmware Major Version: 1
  Firmware Minor Version: 0
  Firmware Patch Version: 4
  IPU: 1
  IPU version: ipu0
  PCI Id: 0000:43:00.0
  link speed: 8 GT/s
  link width: 8
  physical slot: PCIe Slot 12
  serial number: 0020.0004.018471
Device:
  id: 7
  type: C2
  Firmware Major Version: 1
  Firmware Minor Version: 0
  Firmware Patch Version: 4
  IPU: 1
  IPU version: ipu0
  PCI Id: 0000:44:00.0
  link speed: 8 GT/s
  link width: 8
  physical slot: PCIe Slot 13
  serial number: 0027.0004.018481

You can see, in this example, that there’s an issue with the link between the card in slot 12 and 13.

When training a chassis full of IPUs, the tool outputs additional information on IPU-Link failures, for example:

{
  "failures": [
    {
        "cable_id": "IPUL-00"
    },
    {
        "cable_id": "IPUL-24"
    },
    {
        "cable_id": "IPUL-25"
    }
  ]
}

The physical location of these failing cables is shown in IPU-Link channel mapping.

13.1. Usage

13.1.1. Allowed options

-j, --json-output

Emit JSON output

-n {arg}, --num-retries {arg}

Number of link training retries (default: 3)

-d {id}, --device-id {id}

Device id (default is largest group)

-i {arg}, --num-iterations {arg}

Number of times to train each link (default: 1)

-v, --verbose

Verbose output

-p, --phy-summary

Print PHY summary after all training runs

-h, --help

Produce help message

--until-trained

Run the training until it succeeds

--train-to-gen {arg}

Train links to specified generation, default is gen 4

--single-ipu-loopback

Train links using single IPU loopback config

--version

Version number

Previous Next

Revision 3b0603c5.