agentsclimarketplace

Torchrun ddp training scaffold

Skill kjuhwa/skills-hub/skills/ml-ops/torchrun-ddp-training-scaffold

Minimal torchrun + DDP scaffold with init/cleanup, per-rank seeding, model-size print, all_reduce aggregation, and rank-0-only logging and checkpointing.From its SKILL.md

Install
npx -y skills add kjuhwa/skills-hub --skill torchrun-ddp-training-scaffold

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.3 KB, 645 tokens by cl100k_base, as published. Nobody here has run it

torchrun + DDP scaffold for multi-GPU training

When to use

  • You are training a PyTorch model across multiple GPUs on one node.
  • You need the standard "launch via torchrun" contract (LOCAL_RANK, RANK, WORLD_SIZE env vars).
  • You want a reusable setup_ddp / cleanup_ddp / set_seed / reduce_tensor / get_model_size helper set.

Pattern

Keep DDP plumbing in a utils/training_utils.py: initialize the process group with nccl, read env vars, set the CUDA device for the local rank, and seed each rank differently to decorrelate data loaders. In the main script, wrap the model in DDP(... device_ids=[local_rank]), use a DistributedSampler, and only let rank == 0 touch the logger, checkpoint directory, and stdout summaries. Reduce per-rank metrics with all_reduce before printing. End every epoch with dist.barrier() so no rank races ahead of a save.

# finetune/utils/training_utils.py
def setup_ddp():
    dist.init_process_group(backend="nccl")
    rank       = int(os.environ["RANK"])
    world_size = int(os.environ["WORLD_SIZE"])
    local_rank = int(os.environ["LOCAL_RANK"])
    torch.cuda.set_device(local_rank)
    return rank, world_size, local_rank

def set_seed(seed: int, rank: int = 0):
    actual = seed + rank
    random.seed(actual); np.random.seed(actual); torch.manual_seed(actual)
    if torch.cuda.is_available():
        torch.cuda.manual_seed_all(actual)
        torch.backends.cudnn.deterministic = True
        torch.backends.cudnn.benchmark     = False

# main script
rank, world_size, local_rank = setup_ddp()
set_seed(config['seed'], rank)
model = MyModel.from_pretrained(path).to(f"cuda:{local_rank}")
model = DDP(model, device_ids=[local_rank], find_unused_parameters=False)
# ... training loop ...
dist.barrier()
cleanup_ddp()

Launch: torchrun --standalone --nproc_per_node=NUM_GPUS train.py.

Why it works / tradeoffs

torchrun sets the env vars and spawns one process per GPU; DistributedSampler partitions the dataset deterministically across ranks. Rank-0-only logging prevents duplicate Comet / tensorboard entries and race conditions on the checkpoint file. find_unused_parameters=False avoids the extra graph traversal at the cost of forbidding branches that skip parameters. If your validation metric is a sum rather than a mean, remember to reduce the count tensor too, not just the loss sum.

References

  • finetune/utils/training_utils.py in Kronos — setup_ddp, cleanup_ddp, set_seed, reduce_tensor, get_model_size, format_time
  • finetune/train_tokenizer.py and finetune/train_predictor.py — end-to-end loops using the scaffold

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.