AI-assisted analysis. See our editorial policy.
Human editorial review not recorded
The number that matters in this short session is not a benchmark. It is a shape: scaling up to 2.2 million virtual cores and back down to zero across four hours (8:07).
That curve is the product. Everything else — the accelerated pipelines, the instance generation, the container orchestration — exists to make the peak worth reaching and the trough cost nothing.
Why the trough is the achievement
Peak capacity has never been the hard part of scientific computing. Institutions have built large clusters for decades. The difficulty was always that the cluster was sized for the peak and idle the rest of the time, which meant the peak had to be justified against a year of underutilisation.
Returning to zero removes that calculation. A four-hour run at two million cores costs four hours of two million cores, and the question of whether the workload justifies owning the hardware disappears — replaced by whether the result justifies the run.
For genomics that reframing is substantial. Analysis is bursty by nature: a sequencing batch completes, everything needs processing at once, and then nothing happens until the next batch. That pattern is the worst possible fit for owned infrastructure and the best possible fit for this curve.
What the acceleration buys
The performance claim is specific and easy to underrate: a pipeline that takes over eight hours completes in about thirty-five minutes using the accelerated tooling (8:36).
That is not a productivity improvement. It is a change in what kind of activity the analysis is. Eight hours means submit and return tomorrow. Thirty-five minutes means run it, look at the result, adjust, and run it again before lunch — which converts a batch process into something closer to an interactive one, and changes how many variations anyone bothers to try.
The hardware explanation is unusually clear about where the gain comes from. The current generation offers 24 virtual cores against 16 previously, a fifty per cent increase (6:19), but the largest contributor is cores per chip rather than the total (6:47), with up to 16 gigabytes of high-bandwidth memory alongside.
Cores per chip matters because it determines how much of the work stays on one device rather than crossing an interconnect. That distinction is invisible in a specification sheet comparison and dominates the actual result — which is why a fifty per cent increase in cores produces a considerably larger performance improvement.
The operational details worth stealing
Two findings are more portable than the hardware.
The first is a provisioning cost stated plainly: roughly two minutes for an instance to appear, where a serverless container backend would start in seconds (13:04, 14:24). For a run measured in hours that is noise. For a pipeline of many short steps it is the dominant cost, and the choice of backend should follow the shape of the work rather than a general preference.
The second is a benchmark that came out negative and is reported anyway: network-attached and local storage performed almost identically in their comparison, and the resulting guidance is to use local storage (17:10).
Reporting a test that showed no difference is more useful than most positive results, because it tells other teams not to spend a week rediscovering it. The recommendation still favours local, presumably on cost or operational grounds rather than throughput — and knowing that the performance argument is not the reason is exactly the sort of detail that saves someone an unnecessary migration.
The honest scope
The framing at the end is the right one: this tooling is convenient for testing and essential for production at scale, where scale means tens of thousands of samples per month (14:52).
That is a real boundary. A laboratory processing dozens of samples has different economics, and the orchestration overhead described here would exceed the work being orchestrated. The curve that makes this compelling only appears when the peak is large enough to be unaffordable any other way.
Key numbers
Talk chapters
Key takeaways
- 01
The workload scaled to 2.2 million virtual cores and back to zero within four hours, which is the actual capability being demonstrated. 8:07
- 02
Hardware-accelerated tooling runs in about thirty-five minutes a pipeline that otherwise takes over eight hours. 8:36
- 03
Cores per chip rather than total core count is named as the largest contributor to the performance improvement. 6:47
- 04
Instances take roughly two minutes to provision, where a serverless container backend would start in seconds. 13:04
- 05
Network-attached and local storage benchmarked almost identically, and the guidance still favours local for other reasons. 17:10
Entities mentioned
Organizations
Related talks

The practical counterpart to the argument made elsewhere this season that specification is what contains model entropy. Raval and Harris name the failure they are addressing precisely — a prompt-and-pray loop in which working code arrives with no record of what the model assumed, which requirements were fuzzy, what design was chosen or why, leaving nothing to review and nothing to iterate against when a defect surfaces months later. Their answer is three committed markdown artefacts: requirements written in a structured requirements syntax with acceptance criteria attached to each user story, a design document carrying technical decisions together with the reasoning behind them, and a task list whose entries cite the requirement numbers they satisfy. The traceability is the point — a reviewer questioning a decision in a pull request can follow it back through the task to the design to the requirement, all in the same repository. Notably they keep the human between each phase rather than after it, with the agent surfacing ambiguity as questions before proceeding.

Drawn from a year of engagements with more than a hundred companies, this is the most direct challenge in the season's programme to the assumption that faster code generation produces faster delivery. Mishra and Raja open with external evidence rather than their own: an industry study putting realised velocity gains in the ten to fifteen per cent range, and a controlled experiment in which developers using AI estimated themselves roughly a fifth more productive while measurement showed them a fifth slower. Their diagnosis is that both prevailing working styles fail for opposite reasons. Handing an ambiguous problem to an agent and awaiting a finished result produces a volume of code the developer must nonetheless sign for and cannot confidently review, so it stalls before production. The senior engineer's alternative — decomposing the work personally and inserting AI into narrow slots — keeps the intellectual load exactly where it was, and leaves the surrounding process untouched, so hours saved in editing are consumed by the meetings that process still requires.

Brooker builds the definition from the bottom up rather than asserting it, using a deliberately absurd arithmetic task to separate three categories: what a model computes reliably as a fixed function of its input, what merely needs to arrive in the system prompt, and what genuinely requires reaching into the world. Only the third category justifies a tool, and the distinction matters because most production disappointment comes from tools built for the first two. His working definition follows — a system given a goal that loops between inference and tool calls until it reaches one — with the observation that modern agents increasingly embed code in their definitions, not for expressiveness but because replacing inference steps with deterministic code improves reliability while lowering both latency and cost. The remainder covers what production actually demands around that loop: somewhere to run, memory that persists preferences, a gateway to internal and external tools, evaluation, and formal methods applied to policy.

The most concrete attempt this conference season to answer a question the agentic coding sessions mostly leave open: if commit counts and hours saved are the wrong measures, what replaces them? Otto's account is unusually specific about why the obvious alternative fails — summing the small time savings a platform team delivers produces figures exceeding a hundred per cent of a developer's time, and a minute returned is not code in production. Their replacement borrows from Amazon's retail supply chain, where cost to serve measures what it takes to place a package on a doorstep, and applies the same shape to software: total cost divided by units of delivery, with the unit chosen to fit the team. The supporting research is the more quotable finding — across tens of thousands of developers over five years, individual velocity reverts to the team's mean, making team velocity the strongest predictor of both individual output and perceived productivity, which is the empirical case against measuring individuals at all.

The framing statistic is organisational rather than technical: around eighty per cent of organisations expected to have platform engineering teams going into 2026, up from about forty-five per cent a couple of years earlier. The interesting part is the doubling. The problem described is teams solving the same problems separately, producing inconsistency and redundancy — dangerous not because of duplicated effort but because each independent solution has its own security properties, and the organisation's real posture is the weakest rather than the average. The most valuable content is that two financial services organisations went in diametrically opposite directions on workload identity and both are described as working, which implies the choice is determined by context rather than by a general answer. The honest note follows immediately: even with standardised patterns the result remains fragmented.

The most useful sentence here concerns where reliability is achievable: for workflows calling well-structured interfaces and producing checkable code, the path is faster. The implication is that there is a slower path, and it is the one most enterprise pilots are on. The division separates work whose output can be checked mechanically from work where correctness is a judgement, and only the first admits an engineering approach to improvement. The best illustration is browser automation that examines what the customer would observe rather than the underlying markup, walking checkout and booking flows and identifying revenue leakage — a framing that defines success in the business's own terms and is verifiable in the good sense. The demonstration's fifteen to twenty tool calls are the honest measure of what agentic means: not one clever response but a chain of decisions each depending on the last.
