cd /news/ai-chips/npu-dpu-qpu-which-one-actually-belon… · home topics ai-chips article
[ARTICLE · art-136056] src=dev.to ↗ pub= topic=ai-chips verified=true sentiment=· neutral

NPU, DPU, QPU: Which One Actually Belongs in Your Stack

A developer's technical breakdown argues that NPUs and DPUs are already earning their keep in production stacks, while QPUs remain largely a research tool. The piece walks through ONNX Runtime inference on Qualcomm NPUs and P4-based flow offload on DPUs, concluding that quantum hardware lacks a favorable cost/benefit case for essentially any commercial workload today.

by read4 min views4 publishedSep 21, 2026

Every hardware vendor keeps mailing you a new three-letter acronym like it's a subpoena. NPU. DPU. QPU. Somewhere a marketing team is very happy. Somewhere else, you're trying to figure out if any of this actually changes what you deploy on Tuesday.

Short answer: two of these are already earning their keep in production today, and one is still mostly a research toy wearing a lab coat. Let's separate the hype from the workload.

An NPU (Neural Processing Unit) is a chip optimized for the matrix-multiply-and-accumulate operations that dominate neural network inference. The pitch is real: NPUs deliver way better performance-per-watt than a CPU, and often better perf-per-watt than a GPU too, specifically for low-precision (int8/int4) inference workloads.

Where it actually matters:

Where it doesn't matter:

Here's what actually shipping to an NPU looks like today, using ONNX Runtime with a hardware-specific execution provider:

python

import onnxruntime as ort

providers = [

    ("QNNExecutionProvider", {"backend_path": "QnnHtp.dll"}),  # Qualcomm NPU

    "CPUExecutionProvider",

]

session = ort.InferenceSession("keyword_spotter_int8.onnx", providers=providers)

output = session.run(

    None,

    {"audio_frame": frame.astype("int8")},

)

The honest trade-off: you're trading model flexibility and easy debugging for power efficiency and latency. If your model is a quantized int8 CNN or small transformer running continuously on a phone or embedded board, the NPU is the correct answer. If you're prototyping on fp32 weights and want fast iteration, stay on CPU/GPU until the model is locked.

DPUs (Data Processing Units — NVIDIA BlueField, AMD Pensando, Intel IPU) offload the stuff your CPU is bad at anyway: packet processing, TLS termination, storage virtualization, RDMA, and vSwitch logic. The core insight is that a modern 100/200Gbps NIC generates more interrupts and per-packet overhead than a general-purpose CPU core can chew through without falling over.

A representative DPU workload is off flow classification with something like DPDK or P4, rather than handling it in kernel space:

c

// Simplified P4 match-action rule offloaded to DPU ASIC/FPGA pipeline table classify_flow {

    key = {

        hdr.ipv4.src_addr: exact;

        hdr.ipv4.dst_addr: exact;

        hdr.tcp.dst_port:  exact;

    }

    actions = {

        forward_to_vm;

        drop_flow;

        mirror_to_ids;

    }

    size = 65536;

}

apply {

    classify_flow.apply();

}

The trade-off here is capex and complexity versus CPU headroom. If your bottleneck is genuinely network/storage I/O stealing cycles from application logic, a DPU is a straightforward win. If you're not saturating a 25Gbps link, you're buying a Ferrari to sit in traffic.

Here's where I'll be the buzzkill. QPUs are real, IBM, IonQ, and Rigetti will happily give you cloud access, and quantum algorithms like Shor's and Grover's are mathematically legitimate. But "belongs in your stack today" implies a production workload with a favorable cost/benefit versus classical hardware. That doesn't exist yet for essentially any commercial application.

Current NISQ-era (Noisy Intermediate-Scale Quantum) hardware has: What you can legitimately do today is experimentation and skill-building, which has real value if quantum ever matures on your timeline:

python

from qiskit import QuantumCircuit

from qiskit_aer import AerSimulator

qc = QuantumCircuit(2, 2)

qc.h(0)

qc.cx(0, 1)

qc.measure([0, 1], [0, 1])

sim = AerSimulator()

result = sim.run(qc, shots=1000).result()

print(result.get_counts())

Notice this ran on a simulator, not real quantum hardware — and for almost every "quantum experiment" blog post you'll see this year, that's the honest state of things. If you're doing quantum chemistry research or working at a place with a dedicated quantum team, real QPU access via cloud APIs (Qiskit Runtime, Braket) makes sense as R&D. For a normal product stack, a QPU line item is a research budget decision, not an engineering one.

Strip away the vendor decks and it's a simple filter:

Chip Real workload today Ask yourself
NPU Quantized inference at the edge Is this model quantized, latency-sensitive, and running on battery?
DPU Line-rate network/storage offload Is my CPU actually saturated by I/O, not application logic?
QPU Research and algorithm exploration Am I doing this for a paper/PoC, or do I actually have a production problem it solves?

Most teams reading this don't need any of the three — a well-tuned GPU or even CPU inference path, a beefy NIC with kernel bypass, and zero quantum anything will outperform premature specialization. The chips earn their keep only when the workload characteristics (precision, throughput, or problem class) actually demand it.

What's the acronym you've seen misapplied the hardest — teams reaching for specialized silicon before checking if the boring hardware was actually the bottleneck? Drop your war story below.

── more in #ai-chips 4 stories · sorted by recency
── more on @nvidia 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/npu-dpu-qpu-which-on…] indexed:0 read:4min 2026-09-21 ·