惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
爱范儿
爱范儿
月光博客
月光博客
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
T
Tailwind CSS Blog
美团技术团队
D
Docker
V
Visual Studio Blog
Martin Fowler
Martin Fowler
博客园 - 聂微东
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
NCCL: The Hidden Engine Behind Multi-GPU LLM Training
Shrijith Venkatramana · 2026-06-18 · via DEV Community

Hello, I'm Shrijith Venkatramana. I'm building git-lrc, an AI code reviewer that runs on every commit. Star Us to help devs discover the project. Do give it a try and share your feedback for improving the product.


When developers first learn about Large Language Models, they focus on transformers, attention mechanisms, datasets, and GPUs.

Then reality hits.

A modern frontier model might be trained on thousands of GPUs simultaneously. The challenge is no longer just matrix multiplication. The real challenge becomes communication.

How do 4,000 GPUs continuously exchange gradients, activations, parameters, and synchronization signals without spending all their time waiting on each other?

The answer is a piece of infrastructure that most developers never think about:

NVIDIA Collective Communications Library (NCCL).

While frameworks like PyTorch and JAX get most of the attention, NCCL is often the component making large-scale training actually possible.

Let's explore how it works.

1. Why Communication Becomes the Bottleneck

Imagine training a small neural network on a single GPU.

Life is simple:

  1. Run forward pass
  2. Compute loss
  3. Run backward pass
  4. Update weights

Now imagine training a 1 trillion parameter model.

A single GPU cannot store the model.

You split the work across hundreds or thousands of GPUs.

Suddenly every training step requires communication.

For example:

  • GPU 1 computes gradients
  • GPU 2 computes gradients
  • GPU 3 computes gradients
  • GPU 4 computes gradients

Before updating weights, everyone must agree on the final gradients.

This means data must move between GPUs.

And moving data is slow compared to arithmetic.

A modern GPU can perform hundreds of teraflops of computation, but communication bandwidth grows much more slowly.

As model sizes increase, communication becomes one of the dominant costs.

2. What NCCL Actually Does

At a high level, NCCL provides extremely optimized communication primitives for GPUs.

Think of it as MPI specifically redesigned for GPU workloads.

Common operations include:

Broadcast

One GPU sends data to all others.

Example:

ncclBroadcast(...)

Useful for distributing model parameters.

Reduce

Multiple GPUs contribute values that get combined.

Example:

sum = g1 + g2 + g3 + g4

Useful for gradient aggregation.

AllReduce

Every GPU contributes data and receives the final reduced result.

This is the workhorse of distributed training.

GPU1 → Sum
GPU2 → Sum
GPU3 → Sum
GPU4 → Sum

After completion every GPU has identical gradients.

AllGather

Each GPU contributes a chunk.

Everyone receives the complete set.

Common in tensor parallelism.

ReduceScatter

Reduce first.

Then distribute chunks.

Frequently used in modern distributed optimizers.

These operations are called collectives, which is where NCCL gets its name.

3. The Ring Algorithm: NCCL's Secret Weapon

The most famous NCCL optimization is the ring-based AllReduce.

Suppose we have 4 GPUs.

GPU0 → GPU1 → GPU2 → GPU3
 ↑                 ↓
 └─────────────────┘

Each GPU sends data to its neighbor.

Instead of one giant communication event, the gradient tensor is divided into chunks.

Communication happens in stages.

Step 1:
GPU0 sends chunk A
GPU1 sends chunk B
GPU2 sends chunk C
GPU3 sends chunk D

Step 2:
Chunks move again

Step 3:
Chunks move again

Eventually:

  1. Every chunk is reduced
  2. Every GPU receives the final result

The beauty is that all links stay busy simultaneously.

Bandwidth utilization becomes extremely high.

Compared to naive approaches, ring AllReduce scales much better as GPU counts increase.

4. NCCL Inside PyTorch Distributed Training

Many developers use NCCL without realizing it.

Consider:

torchrun \
  --nproc-per-node=8 \
  train.py

Inside:

import torch.distributed as dist

dist.init_process_group(
    backend="nccl"
)

That single line activates NCCL.

During backpropagation:

loss.backward()

PyTorch's Distributed Data Parallel (DDP) automatically launches NCCL AllReduce operations.

Conceptually:

GPU0 gradients
GPU1 gradients
GPU2 gradients
GPU3 gradients
        ↓
    NCCL AllReduce
        ↓
Shared gradients

The developer sees a simple training loop.

Behind the scenes NCCL is orchestrating thousands of communication events every second.

5. NCCL in Tensor Parallelism and Pipeline Parallelism

Data parallelism is only the beginning.

Modern LLMs often combine multiple parallelization strategies.

Tensor Parallelism

A single layer is split across GPUs.

Example:

GPU0 → first half of matrix
GPU1 → second half of matrix

After computation, outputs must be combined.

NCCL AllGather and ReduceScatter become critical.

Pipeline Parallelism

Different layers live on different GPUs.

GPU0 → Layers 1-12
GPU1 → Layers 13-24
GPU2 → Layers 25-36
GPU3 → Layers 37-48

Activations constantly move between devices.

NCCL handles much of this transfer.

Hybrid Parallelism

Systems like Megatron-LM combine:

  • Data parallelism
  • Tensor parallelism
  • Pipeline parallelism

Without highly optimized communication, scaling would collapse.

6. Topology Awareness: Why NCCL Is So Fast

One reason NCCL performs so well is that it understands hardware topology.

Not all GPU connections are equal.

Example:

GPU ↔ NVLink ↔ GPU

is much faster than:

GPU → CPU → Network → CPU → GPU

NCCL automatically discovers:

  • NVLink connections
  • PCIe topology
  • NUMA layout
  • InfiniBand networks
  • Multi-node configurations

It then builds communication patterns optimized for the available hardware.

This is a huge reason why the same training code can scale from:

  • 4 GPUs
  • 8 GPUs
  • 64 GPUs
  • thousands of GPUs

with minimal changes.

7. The Future: Communication Is Becoming the Main Problem

Historically, training performance was limited by computation.

Today many large-scale systems spend a significant fraction of training time moving data.

As models grow:

Compute Scaling
        ↑
Communication Scaling
        ↑↑↑

This is why modern research increasingly focuses on:

  • Gradient compression
  • Communication overlap
  • Sequence parallelism
  • Expert parallelism
  • Hierarchical AllReduce
  • Network-aware scheduling

The future bottleneck for many LLM systems may not be FLOPs.

It may be communication.

And NCCL sits directly in the middle of that battle.

Conclusion

Transformers may be the brains of modern AI, but distributed communication is the circulatory system.

Whenever thousands of GPUs train a frontier model, enormous amounts of data must continuously flow between devices. NCCL provides the optimized collective communication primitives that make this practical.

Most developers never call NCCL directly. They interact with it indirectly through PyTorch, DeepSpeed, Megatron-LM, or JAX.

Yet without NCCL, many of today's largest LLM training runs would be dramatically slower—or simply infeasible.

The next time you launch distributed training with a single line like:

dist.init_process_group(backend="nccl")

remember that an extraordinary amount of engineering is hiding behind that one argument.

As model sizes continue to grow, do you think future breakthroughs will come more from faster GPUs, or from better communication systems between GPUs?


*AI agents write code fast. They also silently remove logic, change behavior, and introduce bugs -- without telling you. You often find out in production.

git-lrc fixes this. It hooks into git commit and reviews every diff before it lands. 60-second setup. Completely free.*

Any feedback or contributors are welcome! It's online, source-available, and ready for anyone to use.


GenAI today is a race car without brakes. It accelerates fast -- you describe something, and large blocks of code appear instantly. But AI agents silently break things: they remove logic, relax constraints, introduce expensive cloud calls, leak credentials, and change behavior -- without telling you. You often find out in production.

git-lrc is your braking system. It hooks into git commit and runs an AI review on every diff before it lands. 60-second setup. Completely free.

In short, git-lrc helps Prevent Outages, Breaches, and Technical Debt Before They Happen

At a glance: 10 risk categories · 100+ failure patterns tracked · every commit…