Topograph with SLURM
For the SLURM engine, topograph supports tree and block topology configurations.
Automatic block-size inference
When blockSizes is not configured, Topograph derives it from the discovered
accelerator domains.
For single-level topology, let D be the smallest discovered accelerator-domain
size and N be the number of discovered domains. Topograph emits a doubling
sequence through the largest power-of-two group that fits within N domains:
This can produce more than one block size as the cluster grows:
For topology containing accelerator sub-domains, Topograph:
- Finds the largest sub-domain size,
maxSubDomainSize. - Finds the largest total accelerator-domain size,
maxDomainSize. - Starting with
maxSubDomainSize, repeatedly doubles it until it is at leastmaxDomainSize.
The resulting aggregate size is:
where n is the smallest non-negative integer for which
aggregateSize >= maxDomainSize. The inferred result is:
If aggregateSize equals maxSubDomainSize, only one value is emitted.
The inferred sizes are used both to construct the complemented block tree and
to emit the final BlockSizes value. Explicitly configured blockSizes always
take precedence over inference.
Deriving block names from node names
For topology/block, the optional blockName engine parameter derives each block name from the names of its nodes. Both nodeNameRegexp and format are required when blockName is set.
For a block containing nodes such as gpu-d05-r04-srv4, this produces the name domain05_rack04. The expression uses Go regular-expression syntax and may match anywhere in the node name; use ^ or $ when the site naming convention requires anchoring. The format uses Go regexp expansion syntax, including numeric captures such as ${1} and named captures such as ${domain}.
Every node in a non-empty block must match the expression and produce the same non-empty block name. Different blocks must produce unique names. Topograph rejects topology generation when any of these conditions is not met. Empty complemented blocks have no node name to evaluate and retain their generated default name.
The option can also be set on each topologies entry for per-partition output.
Test Provider and Engine
There is a special provider and engine named test, which supports both SLURM and Kubernetes. This configuration returns static results and is primarily used for testing purposes.
Installation and Configuration
Topograph can be installed using the topograph Debian or RPM package. This package sets up a service but does not start it automatically, allowing users to update the configuration before launch.
The configuration file and certificates created by the installer are located in the /etc/topograph directory.
Service Management
To enable and start the service, run the following commands:
Upon starting, the service executes:
To disable and stop the service, run the following commands:
Verifying Health
To verify the service is healthy, you can use the following command:
Automated Solution for SLURM
The Cluster Topology Generator enables a fully automated solution when combined with SLURM’s strigger command. You can set up a trigger that runs whenever a node goes down or comes up:
In this setup, the <script> would contain the curl command to call the endpoint:
We provide scripts/create-topology-update-script.sh in the repository, which performs the steps outlined above: it creates the topology update script and registers it with the strigger.
The script accepts the following parameters:
- provider name (
aws,gcp,oci,nebius,netq,nscale,lambdai, orinfiniband-bm) - path to the generated topology update script
- path to the topology.conf file
Usage:
Example:
This automation ensures that your cluster topology is updated and SLURM configuration is reloaded whenever there are changes in node status, maintaining an up-to-date cluster configuration.