Field guide / AI infrastructure

The language behind the inference curve.

Definitions for agentic inference, benchmark metrics, serving techniques, numerical formats, and distributed systems concepts used across InferenceX. Entries describe measured behavior and published benchmark recipes.

Terms
118
Categories
8
Articles reviewed
31

118 terms

A

Acceptance length

AL

Benchmark metrics

Acceptance length is how many drafted tokens the full model actually approves per verification step, which is what decides whether speculation pays off.

Active parameters

Model architecture

Active parameters are the weights a mixture of experts model actually uses for each token, a small slice of its much larger total size.

Agentic coding workload

Agentic inference

This is the request pattern created when a coding agent reads a repository, edits code, runs tools, and revisits the model until the task is done.

Agentic inference

Agentic inference

Agentic inference serves an AI system that works through a task over many model requests, often using tools and delegating work along the way.

AgentX

Agentic inference

AgentX is the InferenceX workload for testing how inference systems serve complete long-context, multi-turn coding-agent sessions.

AI inference

Serving

You give a trained model something new, such as a prompt, image, or audio. It uses what it learned to produce an answer.

AIPerf

Agentic inference

AIPerf is the vendor-neutral client that sends the benchmark traffic, reconstructing recorded agent sessions and timing every request.

AITER

Software

AITER is AMD’s tuned kernel library, the layer that decides how fast attention and matrix work actually run on Instinct chips.

All-gather

Parallelism

All-gather is a group communication step where every chip ends up holding the combined data that started out split across all of them.

All-reduce

Parallelism

All-reduce lets every chip solve one piece of a calculation, combines those pieces, and gives the combined result back to everyone.

All-to-all

Parallelism

All-to-all is a coordinated exchange where every chip sends a different package of data to every other chip.

Arithmetic intensity

Benchmark metrics

Arithmetic intensity is how much math a computation does per byte it moves, which decides whether the chip or its memory is the limit.

ATOM

Software

ATOM is AMD’s own inference engine, its answer to a vendor runtime rather than an upstream open-source one.

B

C

Chunked prefill

Serving

Chunked prefill reads a long prompt in slices instead of all at once, so other users keep receiving tokens while it is being read.

Closed-loop benchmark

Agentic inference

In a closed-loop benchmark, each simulated user waits for one step to finish before sending the next step in that session.

Concurrency

Benchmark metrics

Concurrency is how many people or requests the system is serving at once.

Context parallelism

CP

Parallelism

Context parallelism splits one long prompt across several chips so they share the work of reading it and of scanning its stored attention state.

Context window

Model architecture

The context window is the maximum number of tokens a model can consider at once, covering both the input and everything generated so far.

Continuous batching

Serving

Continuous batching lets new requests join a running batch the moment old ones finish, instead of waiting for the whole batch to complete.

Cost per million tokens

Benchmark metrics

This is the estimated infrastructure bill for producing one million tokens, the chunks of text an AI model reads and writes.

CUDA

Software

CUDA is NVIDIA’s software toolbox for making programs run on its chips.

CUDA graphs

Software

CUDA graphs record a whole sequence of chip operations once and replay it as a unit, removing the per-step cost of launching each one.

CUTLASS

Software

CUTLASS is an NVIDIA template library that provides the building blocks for writing matrix multiply kernels that approach peak hardware speed.

D

E

F

G

H

I

K

L

M

N

O

P

Q

R

S

T

Tail latency

Benchmark metrics

Tail latency describes the slowest requests rather than the typical one, because the unlucky few are what users actually notice.

Tensor parallelism

TP

Parallelism

Tensor parallelism splits one large calculation across several chips so they solve it together.

TensorRT-LLM

Software

TensorRT-LLM is NVIDIA’s optimized software stack for getting high inference performance from NVIDIA chips.

Thermal design power

TDP

Hardware

TDP is the sustained power a chip is designed to draw and shed as heat, the headline wattage on every accelerator spec sheet.

Throughput

Benchmark metrics

Throughput is how much total work the system gets done each second across everyone using it.

TileRT

Software

TileRT is an inference runtime built for very fast single-user generation, compiling a model into one resident program instead of many separate kernel launches.

Time per output token

TPOT

Benchmark metrics

TPOT is the gap between each new piece of a streamed answer. Smaller gaps make the response feel faster and smoother.

Time to first token

TTFT

Benchmark metrics

TTFT is the “thinking…” pause between sending your prompt and seeing the first piece of the answer.

Tokenization

Model architecture

Tokenization splits text into the sub word units a model actually reads and writes, and every performance and price number is quoted in them.

Tokens per dollar

tok/$

Benchmark metrics

Tokens per dollar asks how many tokens one dollar of infrastructure spend can produce under the cost basis named on the chart.

Tokens per megawatt

Benchmark metrics

Tokens per megawatt asks how much AI output a data center can produce from a fixed amount of available power.

Total cost of ownership

TCO

Benchmark metrics

TCO covers the hardware purchase plus the cost of powering, cooling, networking, and operating it over time.

Trace replay

Agentic inference

Trace replay recreates the timing and shape of recorded sessions so a benchmark sends requests like the original workload.

Triton

Software

Triton is a Python-based language for writing custom accelerator kernels, letting ML engineers get near hand-tuned speed without writing low level code.

U

V

W

Reading the benchmark

The full curve tells the story.

LLM serving balances per-user speed against aggregate throughput. InferenceX uses full Pareto curves and matched-interactivity comparisons to show that tradeoff across operating points. One maximum-throughput point cannot rank the complete system.

Grounded in measurements

Definitions connected to real recipes.

Every term page links to InferenceX articles where the concept changes a measured result, including MTP acceptance behavior, NVL72 wide-EP scaling, and software-only speedups on unchanged chips.