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

推荐订阅源

P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
B
Blog
月光博客
月光博客
博客园 - 【当耐特】
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
博客园 - Franky
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
B
Blog RSS Feed
H
Help Net Security

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
TPUs vs GPUs: How Google's Tensor Processing Units Actual...
Shrijith Venkatramana · 2026-06-22 · 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.


Machine learning engineers spend countless hours optimizing models, tweaking architectures, and squeezing performance out of hardware.

Yet many developers who train large models today have only a vague understanding of the machines doing the actual work.

Ask a developer how a GPU works, and you'll usually hear something about "lots of parallel cores."

Ask how a TPU works, and the answer is often, "Google made a chip for AI."

But the design differences are much more interesting than that.

TPUs weren't built as faster GPUs. They were built around a different assumption: that neural networks spend most of their time performing enormous matrix multiplications. Once you accept that premise, the entire chip architecture changes.

Let's explore how TPUs work, why Google built them, and where they outperform GPUs.

Why Deep Learning Is Mostly Matrix Multiplication

At a high level, modern neural networks are giant collections of matrix operations.

Consider a simple transformer layer:

output = X @ W

Where:

  • X is the input activation matrix
  • W is the weight matrix

Under the hood, this becomes millions or billions of multiply-and-add operations.

For example:

A (4096 x 4096)
×
B (4096 x 4096)
=
C (4096 x 4096)

This single operation contains over 68 billion multiply-accumulate computations.

Training and inference repeatedly execute these operations.

The hardware question becomes:

What is the fastest possible machine for multiplying giant matrices?

GPUs and TPUs answer this question differently.

How GPUs Became the First AI Accelerators

GPUs were never originally designed for machine learning.

They were built to render graphics.

Rendering a video game requires performing similar operations on millions of pixels simultaneously.

This naturally led GPU manufacturers to create architectures containing thousands of lightweight processing cores.

A simplified GPU architecture looks like this:

CPU
 |
 | launches kernels
 |
GPU
 ├── Thousands of parallel cores
 ├── Shared memory
 ├── Global memory
 └── Scheduling logic

The key idea:

  • Many threads run simultaneously
  • Each thread performs small calculations
  • Hardware schedules work dynamically

This approach works extremely well for deep learning because matrix multiplication can be broken into many independent tasks.

The result was almost accidental:

The hardware built for gaming turned out to be excellent for neural networks.

Google's Observation: GPUs Are Doing Too Much

Around 2013–2015, Google's infrastructure was serving billions of machine learning predictions every day.

Engineers noticed something important.

Many GPU features were rarely used during inference:

  • Complex scheduling
  • Branch prediction
  • General-purpose execution logic
  • Graphics-related circuitry

These features are valuable for a broad range of workloads.

But neural networks are highly predictable.

Most of the work boils down to:

Multiply
Add
Multiply
Add
Multiply
Add

Over and over.

Google asked a radical question:

What if we remove everything that isn't useful for matrix multiplication?

The answer became the TPU.


The Heart of a TPU: The Systolic Array

The most important component inside a TPU is the systolic array.

A systolic array is a grid of processing elements that pass data rhythmically through the chip.

Imagine a matrix multiplication:

A × B = C

Instead of sending data back and forth to memory repeatedly, the TPU streams values through a grid.

A simplified example:

A →
[PE][PE][PE]
[PE][PE][PE]
[PE][PE][PE]
      ↓
      B

Each Processing Element (PE):

  1. Receives values from neighbors
  2. Multiplies them
  3. Accumulates partial results
  4. Passes data onward

The data "flows" through the chip like blood through arteries.

That's where the name systolic comes from.

This architecture dramatically reduces memory movement, which is often the true bottleneck in modern computing.

Moving data frequently costs more energy and time than performing arithmetic.

TPUs are designed around minimizing that movement.

Why Memory Bandwidth Matters More Than Compute

Many developers assume AI workloads are limited by compute.

In reality, large models are often limited by memory.

Consider two scenarios.

Scenario 1

The processor performs:

2 × 3

This operation is extremely cheap.

Scenario 2

The processor fetches:

2
3

from distant memory before performing the multiplication.

The memory access can cost far more than the arithmetic.

As models scale, this becomes increasingly important.

TPUs address this problem using:

  • Large on-chip buffers
  • High-bandwidth memory
  • Data reuse strategies
  • Systolic execution

The goal is simple:

Move data as little as possible.

This is one reason TPUs achieve impressive performance-per-watt.

TPU Training Pods: Scaling Beyond a Single Chip

One TPU is powerful.

A TPU Pod is where things become interesting.

Google connects thousands of TPUs using specialized high-speed interconnects.

Conceptually:

TPU  TPU  TPU  TPU
 |    |    |    |
TPU  TPU  TPU  TPU
 |    |    |    |
TPU  TPU  TPU  TPU

These chips behave almost like one giant distributed accelerator.

Large language models frequently require:

  • Model parallelism
  • Data parallelism
  • Pipeline parallelism

TPU Pods were designed with these workloads in mind.

This is one reason many frontier-scale models have historically been trained on TPU infrastructure.

The networking architecture becomes nearly as important as the chips themselves.


TPU vs GPU: Which Is Better?

The answer depends on the workload.

GPUs excel when:

  • Running diverse workloads
  • Supporting many frameworks
  • Performing graphics and AI together
  • Requiring maximum ecosystem support

Advantages:

  • Mature tooling
  • Massive developer community
  • Broad software compatibility
  • Flexible execution

TPUs excel when:

  • Running large-scale neural networks
  • Using TensorFlow or JAX ecosystems
  • Maximizing throughput
  • Optimizing energy efficiency

Advantages:

  • Specialized matrix hardware
  • Excellent scaling characteristics
  • High utilization for AI workloads
  • Lower overhead for tensor operations

The tradeoff is flexibility.

A GPU is a powerful general-purpose parallel computer.

A TPU is a highly specialized neural network machine.

Think of it like:

  • GPU = Swiss Army knife
  • TPU = Industrial assembly line

The assembly line wins if your workload matches its design.

Why This Matters for Modern AI Engineers

As models continue growing, hardware architecture is becoming a first-class concern.

Ten years ago, most developers could treat hardware as a black box.

Today:

  • Training costs millions of dollars
  • Model efficiency directly impacts profitability
  • Inference latency affects user experience
  • Hardware choices influence architecture decisions

Understanding TPUs isn't just about learning another chip.

It's about understanding a broader trend:

The era of general-purpose computing is giving way to increasingly specialized hardware.

TPUs are one example.

AI accelerators from NVIDIA, AMD, Amazon, Microsoft, Cerebras, Groq, and many others are pushing the same idea further.

The future of AI may not belong to the fastest processor.

It may belong to the processor whose architecture most closely matches the mathematics of machine learning.

Conclusion

GPUs helped ignite the deep learning revolution because they offered massive parallelism at scale. TPUs took the next step by asking a narrower question: if neural networks mostly perform matrix multiplication, why not build hardware specifically for that task?

The result was a radically different architecture centered around systolic arrays, data movement efficiency, and large-scale distributed training.

As AI systems continue growing, understanding these architectural choices becomes increasingly valuable—not just for hardware engineers, but for every developer building machine learning systems.

If you were training a large model today, would you prioritize the flexibility of GPUs or the specialization of TPUs—and why?


*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…