Rail security to be reviewed after train stabbings
Public barred as Tanzanian president sworn in
Scotland recall Shankland for World Cup qualifiers
Trump says he doubts US will go to war with Venezuela
Valencia leader resigns over handling of deadly floods
Israeli military's ex-top lawyer arrested as scandal over video leak deepens
Israeli military's ex-top lawyer arrested as scandal over video leak deepens - BBC
Big Oil gets big boost from escalating economic war on Russia - Reuters
Vue cinema boss: I don't see streaming as the competition
America is bracing for political violence — and a significant portion think it’s sometimes OK
Mazón anuncia su dimisión y apela a Vox para pactar un presidente interino de la Generalitat: “Ya no puedo más”
China extends visa-free policy to end-2026, adds Sweden to scheme - Reuters
Trump Addresses Shutdown And Controversial Pardon In ‘60 Minutes’ Interview
Why the Future of Coffee Doesn’t Belong to Starbucks
Chipotle’s Big Bet on Younger Consumers Is Unraveling
Trump's major student-loan repayment overhaul continues during the government shutdown
Fast-casual dining feels the pain of a nervous consumer
Yardeni Warns ‘Too Many Bulls’ Put Stocks on Cusp of a Pullback
ECB's Kazimir: No need to 'overengineer' policy
I was a hedge fund manager at Balyasny. Now I work at an AI startup helping bankers cut out the work they hate
Apple's Record iPhone Upgrades, Netflix Eyes Warner Bros. Discovery, OpenAI's Historic IPO And More: This Week In Tech
Construction Update From Japan's Tallest Tower
La manipulación de la ira: un aspecto de la modernidad explosiva
Labour MPs back gambling tax to fight child poverty
O'Neill 'lit the fuse' & fearless Rohl - fan verdict on Old Firm semi
Should Earps' 'negative' comments on Hampton have been made public?
'I worry about unity' - Southgate on St George's flag
Tanzania's Hassan sworn into office after deadly election violence - Reuters
Tariffs, TACOs, and dollars: global markets in a year of Trump 2.0 - Reuters
'Utterly shameful': Congress to crush US record this week for longest shutdown - Politico
Clooney says Harris replacing Biden was a 'mistake'
Trump's planned tests are 'not nuclear explosions', US energy secretary says
How to follow the Ashes across the BBC
Tesla to buy $2 bln of ESS batteries from Samsung SDI over 3 years, newspaper says - Reuters
El tiempo será estable en la mayor parte del país, con temperaturas altas para la época
El Supremo propone juzgar a Ábalos, Koldo García y Aldama por la compra de mascarillas
At least 20 dead after magnitude-6.3 earthquake hits Afghanistan
Exclusive: ExxonMobil warns EU law could force exit from Europe - Reuters
China confirms first visit by a Spanish monarch in 18 years - Reuters
How India finally embraced World Cup fever
The FBI says it thwarted a potential terror attack in a Michigan city. But the community’s residents are skeptical - CNN
Israel confirms Hamas returned bodies of three soldiers held hostage
Credit scores to include rental payments, says major ratings agency
Will Alexander-Arnold show what Liverpool are missing on return?
China to ease chip export ban in new trade deal, White House says
The tactics behind Sunderland's impressive start
I'm the luckiest man alive, but also suffering, says Air India crash sole survivor
Food bank vows to continue despite setback
Trump administration faces Monday deadline on use of contingency funds for SNAP - NPR
'No idea who he is,' says Trump after pardoning crypto tycoon
Van Dijk rejects Rooney's 'lazy criticism'
China intimidated UK university to ditch human rights research, documents show
At least 20 dead after magnitude-6.3 earthquake hits Afghanistan - BBC
Judge Extends Block of Trump’s National Guard Deployment to Portland - The New York Times
What’s on the ballot in the first general election since Donald Trump became president - AP News
El Consejo de Ministros aprueba este martes el estatuto del becario
Vox capitaliza el desgaste del Gobierno, el PP se estanca y el PSOE vuelve a caer
Junts anticipó a Zapatero y al mediador en Suiza la ruptura al no fijar la siguiente cita
Hablar con una persona
Alberto Casas, físico: “El libre albedrío es una ilusión creada por nuestro cerebro. Todo lo que va a suceder está ya escrito”
El futuro próximo de Sareb: liquidación y un déficit de 16.500 millones que pagará el contribuyente
Brazil opens three weeks of COP30-linked climate events - Reuters
Why is Afghanistan so prone to earthquakes? - Reuters
Trump threat of military action in Nigeria prompts confusion and alarm - The Washington Post
‘Let Them Fight’ – Trump Cools on Tomahawk Missiles for Ukraine, Urges Self-Settlement - Kyiv Post
Israel says it received remains of 3 hostages from Gaza as fragile ceasefire holds - NPR
Trump tariffs head to Supreme Court in case eagerly awaited around the world
Trump says no Tomahawks for Ukraine, for now - Reuters
Will AI mean the end of call centres?
Nato 'will stand with Ukraine' to get long-lasting peace, senior official tells BBC
India earn first World Cup title with win over SA
Shein accused of selling childlike sex dolls in France
King to strip Andrew of his final military title, minister says
GOP leaders denounce antisemitism in their ranks but shift blame to Democrats
Football Manager has finally added women's teams after 20 years. I put the game to the test
Military homes to be renovated in £9bn government plan
Democrats are searching for their next leader. But they still have Obama.
Trump tells Ilhan Omar to leave the country
The New Jersey bellwether testing Trump’s Latino support
Warm welcome spaces return to Surrey this winter
Van PVV naar D66, van NSC naar CDA: de kiezer was deze week flink op drift
China to loosen chip export ban to Europe after Netherlands row
Gemeenten wijzen aantijgingen Wilders over stemgesjoemel van de hand
Businesses are running out of pennies in the US
Links likt de wonden na verlies: waarom lukt het niet het tij te keren?
McConnell pans Heritage Foundation for its defense of Tucker Carlson’s Nick Fuentes interview
Hoe wil D66-leider Jetten de kabinetsformatie aanpakken?
Graham Platner’s finance director resigns in latest personnel shakeup
Reform UK councillor defects to the Conservatives
Birmingham was not bankrupt in 2023, say experts
Security concerns over system at heart of digital ID
Winst D66 staat vast, maar hoeveel zetels de partij krijgt is nog even spannend
ANP: D66 grootste bij verkiezingen, niet meer in te halen door PVV
From MIPS to Frame Times: Measuring Performance That Actually Matters

How we measure computer performance has evolved from counting instructions and floating-point operations to profiling entire user experiences. Early metrics like MIPS and FLOPS offered tidy numbers, but they often misrepresented real workloads where memory, I/O, and software behavior dominate. Modern benchmarks span SPEC suites, database transactions, browser responsiveness, and gaming frame times, reflecting a landscape where CPUs, GPUs, storage, and networks interact. Understanding why traditional metrics sometimes fail—and how newer methods address those gaps—helps engineers and users choose systems that perform well in practice, not just on paper.

Performance matters because computing is now defined by responsiveness, efficiency, and scale as much as by raw speed. A laptop that compiles code quickly but stutters during video calls feels slow, and a server that shines in synthetic benchmarks may miss service-level objectives under mixed traffic. The shift from single, homogeneous workloads to heterogeneous, concurrent tasks exposes limits in one-number summaries. Measuring what users actually experience requires metrics that reflect the whole system, not just a chip’s theoretical peak.

MIPS, or millions of instructions per second, once promised a simple yardstick, but instructions vary dramatically in complexity and usefulness across architectures. A program dominated by simple integer operations can inflate MIPS while doing less real work than a different program with fewer, heavier instructions. Dhrystone-style tests boosted headline MIPS by encouraging compilers to optimize away meaningful computation, revealing how easily synthetic loops diverge from practical software. As superscalar and out-of-order designs arrived, the gap widened between counted instructions and the true throughput of useful work.

FLOPS quantify floating-point throughput and remain vital in scientific and engineering computing, especially for GPUs. The LINPACK benchmark popularized by the TOP500 list measures dense linear algebra, but it overstates performance for memory- and communication-bound applications. Complementary suites like HPCG emphasize memory access patterns and interconnect behavior, offering a more realistic view of high-performance systems. In machine learning, MLPerf evaluates both training and inference across models and hardware, reflecting that mixed precision, tensor units, and software stacks can matter as much as raw FLOPS.

System-level benchmarks emerged to bridge the gap between microbenchmarks and real workloads. SPEC CPU measures single-thread speed and throughput across standardized integer and floating-point programs, while SPECpower introduces energy as a first-class metric. Transactional benchmarks like TPC-C and analytical counterparts such as TPC-DS reflect database behavior under concurrency, logging, and complex queries. General suites like PCMark and cross-platform tests like Geekbench and Cinebench add breadth, but differences in compilers, libraries, and tuning flags still shape results and require transparent methodologies.

Microarchitectural realities often dominate performance more than nominal metrics indicate. Instructions per cycle (IPC), cache hit rates, branch prediction accuracy, and memory latency can bottleneck workloads long before ALUs or tensor cores reach their peaks. The roofline model shows how arithmetic intensity and memory bandwidth constrain attainable performance, explaining why raising clock speed or FLOPS alone may not move the needle. Power limits and thermal throttling further bind sustained throughput, so performance per watt and steady-state behavior matter as much as short bursts.

Gaming benchmarks illustrate the shift from average speed to experienced smoothness. Frames per second gives a coarse picture, but frame-time distributions and percentiles (such as 1% and 0.1% lows) surface stutter that averages conceal. Modern engines juggle CPU simulation, GPU rendering, shader compilation, and asset streaming, so performance depends on APIs, drivers, and storage as much as on silicon. Resolution and settings change whether a title is CPU- or GPU-bound, and technologies like shader precompilation and variable rate shading can alter results more than clock speeds suggest.

Traditional metrics fall short when systems are heterogeneous, software-driven, and sensitive to latency. A database with great average throughput can still miss deadlines due to p99 tail latency from garbage collection, I/O hiccups, or noisy neighbors in the cloud. A browser benchmark like Speedometer measures interactive responsiveness that neither MIPS nor FLOPS capture, highlighting JavaScript engines, JIT compilers, and DOM performance. In mobile devices, dynamic voltage and frequency scaling, background tasks, and thermal envelopes shape real responsiveness, meaning identical chips can feel different depending on firmware and cooling.

Better evaluation starts by aligning metrics with goals and measuring full-stack behavior. Representative workloads, repeatable setups, and transparent tuning reduce the gap between benchmark scores and production outcomes. Triangulating with microbenchmarks, application benchmarks, and observability data—such as performance counters and tail latency—yields a more faithful picture. The result is performance that users actually notice: consistent frame pacing, stable service latencies, and efficient power use rather than just a bigger number on a spec sheet.