The leaderboard score won’t tell you what your system will do We find that someone wants to benchmark their PC for AI — not for gaming, not for general computing, but for AI inference or training. The instinct is to run a standard benchmark, get a number, and compare it to a published leaderboard. This process produces a number. It doesn’t tell you what you want to know. The leaderboard was measured under specific conditions: a fixed model, a specific batch size, a particular inference runtime, an optimised software configuration that may not match what you’re running. Your system will run different software under different conditions and produce a different result — and there is no reliable way to translate the leaderboard number to your expected outcome without measuring directly. What does this mean in practice? A meaningful PC benchmark for AI tests three dimensions: raw compute throughput, memory bandwidth under realistic batch sizes, and sustained performance over time — most benchmark tools test only the first. Dimension 1: Raw compute throughput — This is what most benchmark tools measure: how fast can the hardware process matrix multiply operations at a given precision? It’s usually expressed as TFLOPS (FP16, BF16, INT8). It’s a necessary measurement, but it’s the theoretical ceiling, not the operational outcome. Dimension 2: Memory bandwidth under realistic batch sizes — For AI inference, particularly transformer models with large context windows or large batch sizes, the bottleneck is often not compute but memory bandwidth. How fast the system can load model weights into compute units determines throughput more than the peak FLOPS number. This dimension doesn’t show up in most benchmark tools, which typically measure compute-bound synthetic workloads. Dimension 3: Sustained performance over time — GPUs operate with thermal and power limits. Initial performance (first 30–60 seconds) often reflects boost-clock behavior. Sustained performance — what you get after the system reaches thermal steady state — is what matters for workloads that run for minutes or hours. A benchmark run that lasts 30 seconds doesn’t capture this. The benchmark workflow for AI workloads Our benchmark workflow for AI is: define your workload profile, select a representative model, measure inference/training throughput under production conditions, and compare sustained (not peak) numbers. Step 1: Define your workload profile Before running anything, specify what you’re actually deploying: Model architecture and size (e.g., a 7B parameter transformer, a ResNet-50, a YOLO variant) Batch size at inference (real batch sizes, not maximum theoretical) Precision format (FP32, FP16, BF16, INT8, INT4) Latency constraint or throughput target Context length, if applicable for language models Step 2: Select a representative model If you’re benchmarking for a specific deployment, use the actual model. If you’re doing general-purpose AI capability assessment, use a model representative of the workload class: a small transformer for conversational AI, a detection model for computer vision, a training workload for training capacity evaluation. Step 3: Configure the production software stack The software stack determines as much of the outcome as the hardware. Use: The inference runtime you’ll actually use in production (PyTorch, TensorRT, ONNX Runtime, vLLM, llama.cpp) The CUDA/driver version matching your production environment The precision configuration matching your deployment (don’t benchmark FP32 if you’ll deploy INT8) Step 4: Measure at steady state Run the workload for a minimum of 10–15 minutes. Record: Mean throughput (tokens per second, inferences per second, or training steps per second) Latency at your target percentile (p50, p95, p99) GPU temperature at steady state Clock frequency at steady state Actual power draw Discard the first 2–3 minutes from your analysis to allow thermal warm-up. Step 5: Compare sustained numbers Compare your sustained throughput — not your peak burst — against your requirements. If you’re comparing hardware options, compare both at sustained performance, using the same software stack. AI benchmarking checklist Workload profile defined (model, batch size, precision, target metric) Production inference runtime configured (not default PyTorch for a TensorRT deployment) Minimum 10-minute run duration First 2–3 minutes excluded from steady-state analysis Throughput, latency, temperature, and clock frequency recorded Software stack documented (framework version, CUDA version, driver version) Comparison uses identical software on both systems (if comparing hardware) The most common benchmarking mistake Running a single benchmark number and comparing it to a leaderboard is the most common benchmarking mistake — the leaderboard conditions never match your production conditions. The leaderboard number was produced by someone else, under their software configuration, with their optimisation choices, at their batch size. Comparing it to your benchmark — run under different conditions — doesn’t tell you whether your hardware is better or worse. It tells you whether your result is higher or lower than a number from a different context. This mistake happens because leaderboard comparisons feel rigorous. They have a reference point. The number can be ranked. But two hardware systems producing different leaderboard scores under different conditions doesn’t mean the hardware is different in the way the numbers suggest — it means the configurations are different. If you want to know which hardware is better for your workload, you have to measure your workload on both systems under identical conditions. Understanding why benchmarks function as decision infrastructure — and why the benchmark workflow above maps to real deployment requirements — is the underlying argument in Benchmarks Are Decision Infrastructure. Single-score comparisons fail because they substitute a simplified measurement for the multi-dimensional evaluation that actual hardware procurement requires.