REDLINE
← All guidesMeasurement · 9 min read

How to read a device performance score

What the CPU, memory, layout, GPU and network numbers in a device benchmark actually mean, and how to tell a real problem from normal variance.

A single performance number is easy to quote and easy to misread. A phone that scores 62 is not "62% as good" as a laptop that scores 94, and a score that drops from 80 to 74 between two runs usually means the room got warmer, not that your site got worse. This guide walks through what each subsystem measurement is doing, what a healthy range looks like on different classes of hardware, and how to separate a real regression from noise.

What a composite score is actually made of

Redline's index is a weighted combination of five independent measurements. Each one stresses a different part of the device, because a device is not slow in general — it is slow at something specific, and the fix depends entirely on which something.

The composite is a convenience for comparison and ranking. The five components are what you act on.

What a good number looks like

There is no universal pass mark, because the question is always "good for whom". The useful framing is device class. Rough bands, measured on a device that is cool, plugged in or well-charged, and not running a dozen other tabs:

Typical ranges

  • Current-generation laptop or desktop: 85-100. Anything below 80 here is worth investigating — usually thermal throttling, a background process, or a browser extension.
  • Flagship phone from the last two years: 70-90. These devices are genuinely fast but throttle far sooner than a laptop.
  • Mid-range phone, three to five years old: 40-65. This is where most real-world traffic lives in many markets.
  • Budget or older device, or a laptop under heavy thermal load: 20-40. If your site is unusable here, you are losing users you never see in analytics, because they leave before the page reports anything.

The single most valuable habit is to stop treating your own machine as the reference. Pick the slowest device class you are willing to support, measure it once, and make that score the number your budgets are written against.

Reading the shape, not just the size

Two devices can share a composite score with completely different problems. The shape of the five components tells you which.

Low CPU, everything else fine

Usually an older or heavily throttled processor. Your priority is reducing main-thread work: less JavaScript parsed and executed at startup, heavy loops broken into chunks that yield to the browser, and expensive computation moved off the main thread or cached.

Low layout score with an acceptable CPU

The processor is fine but your DOM is expensive to reflow. This points to very deep element trees, layout-triggering CSS, or components that read geometry and then write styles in the same frame. Containment, virtualised lists and animating only transform and opacity are the usual wins.

Low GPU with everything else healthy

The device composites slowly, which is common on integrated graphics and older phones. Backdrop blurs, large box shadows, stacked translucency and full-screen gradients are the usual culprits. Each is cheap on a developer machine and brutal on a budget phone.

Low memory score

Expect garbage-collection pauses under load. Large in-memory caches, unbounded lists and keeping decoded images alive are the things to audit. On constrained devices the browser may also discard your tab in the background, so recovering state cleanly matters.

High everything, bad network

The device is capable and the connection is not. Nothing you do in JavaScript will fix this. Fewer round trips, smaller critical payloads and honest offline or slow-network states are the levers.

Variance: when a change is real

Benchmarks on consumer hardware are noisy by nature. Before reacting to a difference, know the floor of what noise can produce.

Rule of thumb

Three runs, take the median, and only treat a change as real when the median moves by more than 10% in the same direction across separate sessions.

Turning a score into a decision

A score is only useful if it changes what you build. The workflow that tends to stick:

Common misreadings

Where to go next

If your own device scores well but users still report slowness, the gap between developer hardware and real hardware is the place to look — that is covered in why your site is fast on your laptop and slow on a phone. If you already know which subsystem is weak and want an ordered list of fixes, start with the checklist for fixing slow page loads.

Keep reading