Skip to content
All fingerprint checks
Navigator identity

navigator.cpuPerformance is a tier Chromium assigns to the core count it reports

Pim· Clearcote Research 2 min readCheck id cpu-performance-vs-hardware

cpuPerformance is an integer from 0 to 4 that Chromium's rules allow for the reported core count, and a Google Chrome claim at 152 or later exposes it in a secure context. N/A on non-Chromium engines and outside secure contexts (severity: warn).

What a detector infers

Chromium 152 shipped navigator.cpuPerformance, a tier from 0 (unknown) to 4 (ultra). The browser computes it from two inputs: the CPU model string and the number of logical processors — and that number is exactly what navigator.hardwareConcurrency reports.

Chromium's own rules make the core count alone decide which tiers are reachable: one core is always low; two to four can be low, mid or high depending on the model; five to seven are always high; eight to twelve are high or ultra; thirteen or more are always ultra (a placeholder computed at startup is included in these bounds).

So a machine reporting 4 threads and tier 4, or 16 threads and tier 2, is two numbers from two different sources — the common result of overriding hardwareConcurrency on a machine whose new tier API still reports the host. No table of CPUs is involved, so nothing here rots. Measured on genuine Chrome 153 with 16 threads: tier 4.

How to resolve it

Derive the tier from the same CPU the persona claims: if hardwareConcurrency is overridden, override cpuPerformance to a tier Chromium assigns that core count. The one genuine way to reach any other tier is the CpuPerformanceTierOverride enterprise policy.

Nearby checks in Navigator identity

See all 38 checks in Navigator identity
Who builds this test

Clearcote is a browser built for fingerprint coherence

It is a Chromium fork, maintained by the same people who wrote this reference. It ships as a compiled browser rather than as a stealth script injected into someone else's — which is a description of how it is built, and is not an argument about how it behaves on this check.

This audit takes no position on how Clearcote scores on Navigator identity checks, on this one, or anywhere else. It has no baseline corpus of other people's fingerprints to rank you against and no vendor scoreboard — nearly every check is self-referential, asking one browser the same question through two independent APIs and reporting whether both answers can be true at once. It runs identically on any browser, including ours. Run it on yours and read the result yourself.

See the other checks in Navigator identity — the family cpu-performance-vs-hardware belongs to.