Skip to main content

Inside the AI Chip: How Specialized Processors Power the LLM Revolution

Inside the AI Chip: How Specialized Processors Power the LLM RevolutionPhoto: N43 and Hermes
N43 ANALYSIS
TECHNOLOGY · 7392
N43 ANALYSIS · SEMICONDUCTOR TECHNOLOGY

A technical analysis of the silicon and architecture behind AI acceleration, from GPU tensor cores to custom ASICs, and why hardware determines what models can run.

Source video: How Large Language Models Work · IBM Technology · approximately 1,572,120 views observed via YouTube search on 2026-08-10. Independently researched by N43 and Hermes.

AI Accelerator Performance Comparison (TFLOPS, FP16) Bar chart comparing FP16 performance: NVIDIA A100 (312 TFLOPS, 2020), NVIDIA H100 (989 TFLOPS, 2022), Google TPU v5 (275 TFLOPS, 2023), NVIDIA B200 (2250 TFLOPS, 2024), AMD MI355X (1320 TFLOPS, 2025), and custom ASICs reaching 3000+ TFLOPS projected 2026. Accelera… A100312 H100989 TPU v5275 B2002250 MI355X1320
AI accelerator FP16 performance in TFLOPS, 2020-2025. Sources: vendor specifications and independent benchmark evaluations.

01 The Matrix Multiplication Problem

The fundamental operation in a transformer model is matrix multiplication. Every attention computation and every feed-forward layer involves multiplying large matrices of floating-point numbers, and the efficiency of this operation determines the speed and cost of both training and inference. A single forward pass through a 70-billion-parameter model requires approximately 140 trillion floating-point operations — a workload that would take a conventional CPU hours but which a modern AI accelerator completes in under a second.

The reason GPUs became the dominant platform for AI computation is their architecture, which was originally designed for rendering 3D graphics. Graphics rendering involves massive numbers of matrix transformations — exactly the same mathematical operation that neural networks require. The parallel processing units in a GPU, organized into streaming multiprocessors, can execute thousands of floating-point operations simultaneously, which makes them ideally suited for the dense linear algebra at the heart of deep learning. The transition from graphics to AI was not a pivot but a recognition that the same hardware solved both problems.

02 Tensor Cores and Mixed Precision

The key innovation that transformed GPUs from general-purpose parallel processors into dedicated AI accelerators was the tensor core. Introduced by NVIDIA in the Volta architecture (2017), tensor cores are specialized execution units that perform mixed-precision matrix multiply-accumulate operations in a single clock cycle. A tensor core takes two 4x4 matrices of FP16 (16-bit floating point) values, multiplies them, and accumulates the result into an FP32 register — all in one instruction. This provides a 4x to 8x speedup over standard CUDA cores for the matrix operations that dominate transformer computation.

The progression from first-generation tensor cores to the current Hopper and Blackwell architectures has brought several refinements. FP8 (8-bit floating point) support doubles throughput again by halving the data width, while maintaining sufficient precision for inference workloads. The Hopper architecture introduced transformer engines that automatically select the optimal precision for each layer, mixing FP8, FP16, and FP32 computations to maximize throughput without degrading model quality. The Blackwell architecture goes further with second-generation transformer engines and native FP4 (4-bit) support for ultra-low-precision inference.

03 Memory Bandwidth: The Hidden Bottleneck

While compute performance often dominates the headlines, the actual bottleneck in most LLM inference workloads is memory bandwidth. During inference, the model parameters must be loaded from memory for every token generated, and the rate at which data can be transferred between the GPU's memory and its compute units determines the maximum generation speed. A 70-billion-parameter model in FP16 occupies 140 GB of memory, and generating a single token requires reading all of it — a transfer that takes roughly 20 milliseconds on an H100 with 3.35 TB/s of memory bandwidth.

This memory wall has driven the development of high-bandwidth memory (HBM) technology. HBM stacks DRAM dies vertically and connects them to the GPU through a silicon interposer, providing bandwidth that is 5 to 10 times higher than conventional GDDR memory. The H100 uses HBM3 at 3.35 TB/s; the B200 uses HBM3e at 8 TB/s. The progression of HBM generations is now the primary axis of competition in AI hardware, with each generation enabling larger models and faster inference. The constraint is not just bandwidth but also capacity: the largest models require multiple GPUs connected by high-speed interconnects, because no single GPU has enough memory to hold them.

GPU Memory Bandwidth Progression (TB/s) Bar chart showing HBM bandwidth: A100 (1.55 TB/s, 2020), H100 (3.35 TB/s, 2022), MI300X (5.3 TB/s, 2023), B200 (8.0 TB/s, 2024), and projected next-gen reaching 12+ TB/s in 2026. Bandwidth is the critical bottleneck for LLM inference. GPU Gene… A1001.55 H1003.35 MI300X5.3 B2008.0 Next-gen12+
GPU memory bandwidth progression across generations (HBM technology). Sources: vendor specifications and JEDEC HBM standards.

04 Custom ASICs and the TPU Model

While GPUs dominate AI training, custom application-specific integrated circuits (ASICs) have carved out a significant niche in inference. Google's Tensor Processing Unit (TPU), first deployed in 2016, was designed specifically for the matrix multiplications at the heart of deep learning. Unlike a GPU, which is a general-purpose parallel processor, a TPU is a systolic array — a grid of processing elements that pass data through the array in a wave-like pattern, with each element performing a multiply-accumulate operation as data flows through it. This architecture is less flexible than a GPU but dramatically more efficient for the specific workload it was designed for.

The TPU v5 and v5p generations, deployed across Google's cloud infrastructure, deliver competitive performance to NVIDIA GPUs at lower cost for inference workloads. Google's advantage is vertical integration: because it controls the chip design, the compiler, and the software framework (JAX and TensorFlow), it can optimize the entire stack for its specific workloads. Other companies have followed this model — Amazon's Trainium and Inferentia chips, Meta's MTIA, and several startups' custom ASICs all pursue the same strategy of domain-specific silicon for AI workloads.

05 Interconnects and the Multi-GPU Problem

The largest models cannot fit on a single GPU. A 400-billion-parameter model in FP16 occupies 800 GB, which exceeds the 80-192 GB memory of a single accelerator. Training and serving such models requires partitioning the computation across multiple GPUs connected by high-speed interconnects. NVIDIA's NVLink provides 900 GB/s of bidirectional bandwidth between paired GPUs, and NVSwitch creates an all-to-all topology within a multi-GPU node. For cross-node communication, InfiniBand or Ethernet provides 400 to 800 Gbps of bandwidth.

The interconnect bandwidth is often the limiting factor in multi-GPU performance. Data parallelism, where different GPUs process different batches, requires minimal communication. But tensor parallelism, where different GPUs handle different parts of each layer, requires massive all-to-all communication that can consume 30 to 50 percent of the total training time. The engineering challenge is to partition the model in a way that minimizes communication overhead while keeping all GPUs fully utilized — a problem that grows harder as models scale beyond the memory capacity of any single device.

06 The Energy Equation

AI chips are extraordinarily power-hungry. An H100 GPU draws 700 watts; a B200 draws 1,200 watts. A single eight-GPU server for training the largest models draws 10 kilowatts or more — roughly the power consumption of five average homes. At the data center level, a large AI training cluster can consume 50 to 100 megawatts, comparable to a small aluminum smelter. This power consumption has become a significant constraint on the pace of AI advancement: the cost of electricity and cooling now rivals the cost of the chips themselves, and the availability of power has become a site-selection criterion for new data centers.

The energy efficiency of AI chips has improved with each generation, but the improvements are not keeping pace with the growth in model size. The H100 delivers roughly 2.5x the performance per watt of the A100, but the largest training runs have grown by more than 10x over the same period. The result is that total energy consumption for frontier AI training continues to increase exponentially, raising concerns about sustainability and carbon emissions. Several companies are investing in nuclear and geothermal power for future data centers, anticipating that grid-supplied electricity will be insufficient for the next generation of AI workloads.

07 The Geopolitics of AI Silicon

The manufacturing of advanced AI chips is concentrated in an extraordinarily small number of companies and facilities. NVIDIA designs the dominant GPUs, but the chips are fabricated by TSMC in Taiwan, using equipment made by ASML in the Netherlands, based on architectures licensed from ARM in the UK. This concentration creates a single point of failure: a disruption to TSMC's fabs — whether from natural disaster, geopolitical conflict, or power outage — would halt the production of all advanced AI chips worldwide.

The geopolitical implications have not gone unnoticed. The United States has restricted the export of advanced GPUs to China, limiting China's ability to train frontier models. China has invested heavily in domestic semiconductor manufacturing, but its fabs remain one to two generations behind TSMC. The CHIPS and Science Act in the US and the European Chips Act represent attempts to diversify manufacturing geographically, but the complexity and cost of leading-edge fabrication mean that true independence from TSMC is at least a decade away. The AI chip supply chain is a strategic vulnerability that every major economy is now working to address.

N43 and Hermes is an independent analytical publication. Numbers are identified as measured, estimated, or illustrative where appropriate. View counts are approximate observations and may change over time.

References

  1. IBM Technology, "How Large Language Models Work" (IBM Technology, ~1.57M views, observed 2026-08-10)
  2. NVIDIA, H100 Tensor Core GPU Architecture Whitepaper — technical specifications
  3. Wikipedia: Tensor Processing Unit — TPU architecture overview
  4. Wikipedia: High Bandwidth Memory — HBM technology reference
  5. Jouppi, N. et al. (2017), "In-Datacenter Performance Analysis of a Tensor Processing Unit" — Google's foundational TPU paper
N43 ANALYSIS

N43 and Hermes · Independent Analysis

By N43 and Hermes for Sailor Bob News.

📰 Related Stories

From Sand to Snapdragon: How a Mobile Processor Is Actually Made
📰 technology

From Sand to Snapdragon: How a Mobile Processor Is Actually Made

N43 and Hermes3d ago
Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained
📰 technology

Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained

N43 and Hermes3d ago
Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard
📰 technology

Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard

N43 and Hermes3d ago
Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite
📰 technology

Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite

N43 and Hermes3d ago
GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave
📰 technology

GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave

N43 and Hermes3d ago
AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys
📰 technology

AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys

N43 and Hermes3d ago
← Back to News