At scale, throughput is limited less by CPU count than by contention, cache effects, and unbounded queues — adding threads past a point makes things slower. Amdahl's and the Universal Scalability Law both predict this: coordination cost eventually dominates.
Contention
When many threads fight for one lock or cache line, they serialize and spend time waiting instead of working. Under the Universal Scalability Law, contention plus coherency cost can make throughput past an optimal thread count.
