On-device AI is quietly killing the cloud round-trip

For a decade the deal was simple: your device captured the data, a data centre did the thinking. That deal is being quietly renegotiated, and the reason is mundane — the chip in your pocket got good enough that sending the work away stopped being worth the trip.
What actually moved onto the chip
Almost every phone and laptop sold in the last three years contains a dedicated block of silicon for running neural networks — Apple calls it a Neural Engine, Qualcomm an NPU, Intel and AMD ship their own. These are not general-purpose processors. They are narrow accelerators built to do one kind of arithmetic, matrix multiplication in low precision, extremely fast and at very low power.
What changed alongside the hardware is the models themselves. Quantisation — storing model weights at 4 or 8 bits instead of 16 or 32 — cut memory requirements by a factor of four or more with surprisingly little loss in output quality. A model that needed 28GB of server memory two years ago now fits in 4GB on a handset. Distillation went further, training small models to imitate the behaviour of much larger ones on specific tasks. The result is that transcription, translation, summarisation, image cleanup and voice synthesis all now run acceptably on hardware you already own.
Three things improve at once
When inference moves local, the wins arrive together rather than as a trade-off.
- Latency collapses. A cloud round-trip costs you the network hop in both directions plus queueing at the far end — typically 200 to 800 milliseconds before the model has done any work at all. On-device, the response begins immediately. For anything interactive, that gap is the difference between a feature that feels like part of the device and one that feels like a website.
- The data does not leave. This is the structural privacy argument, and it is stronger than any policy promise. Data that never crosses the network cannot be logged, subpoenaed, retained past its stated window, or exposed in someone else's breach.
- It works with no signal. Aeroplane, underground, rural notspot, or during the provider's outage — a local feature has no dependency to fail.
Where the cloud still wins, and will keep winning
On-device models are smaller, and smaller means genuinely less capable at the hardest end of the range. Long-context reasoning, tasks requiring broad world knowledge, anything that benefits from a model an order of magnitude larger than fits in your RAM — these still belong in a data centre and will for the foreseeable future.
There is also a freshness problem. A model shipped in a firmware update knows what it knew at training time. Anything requiring current information — prices, availability, news, live data of any kind — needs a network call regardless of where the reasoning happens. The interesting engineering is not local-versus-cloud but the routing layer that decides, per request, which one to use.
The battery question, answered honestly
Running a model locally uses power. Sending a request over a cellular radio also uses power, and radios are thirstier than most people assume — waking the modem, negotiating, and holding the connection open costs meaningful energy. For short, frequent tasks, local inference is usually the cheaper option in battery terms. For a single very heavy task, the cloud wins.
Where local inference does hurt is sustained load. Transcribing an hour of audio on-device will warm the phone and visibly move the battery percentage. This is why most implementations quietly wait for you to plug in before running the expensive jobs, and why the same feature may behave differently at 15% battery than at 90%.
How to tell whether a feature is actually local
Marketing language is unreliable here — "on-device" and "private" are used loosely. Two practical tests. First, turn on aeroplane mode and try the feature; if it still works, it is local. Second, look for a one-time download: local models are large, so a feature that needs to fetch a few hundred megabytes before first use is almost certainly running that model on your hardware afterwards.
A caveat on the first test. Hybrid features may degrade rather than fail — falling back to a smaller local model when offline and using the cloud when connected. If the offline result is noticeably worse, you have learned something useful about where the good version runs.
What this changes for the people building things
The economics invert. Cloud inference is a per-request cost that scales with usage, which means a popular free feature is a growing liability. On-device inference is paid for by the user's own hardware and electricity. For a company shipping a feature to millions of people, moving it local turns a variable cost into a fixed engineering cost — which is a large part of why this shift is happening now rather than later.
It also changes what is possible to offer. Features that were previously uneconomic to give away — always-on transcription, continuous photo analysis, real-time translation — become viable when each invocation costs the provider nothing.
The trade-offs nobody advertises
Local models are harder to fix. A cloud model can be corrected the same afternoon someone finds a problem with it; a model baked into firmware waits for the next update cycle, which may be months. Fragmentation is worse too — the same app running on three-year-old and current hardware may deliver visibly different quality, which is difficult to explain to users and difficult to support.
And local does not automatically mean private. An application can run a model on your device and still transmit the input, the output, or telemetry about both. Local inference removes one mechanism of exposure; it does not remove the others.
Where this is heading
The end state looks like a hybrid default that you never think about: small, instant, frequent tasks handled by the chip in your hand, the cloud reserved for the genuinely heavy lifting and for anything needing current data. The routing decision becomes an implementation detail, the way your device already decides between Wi-Fi and cellular without asking.
For most everyday features, you will never notice the cloud is gone. That is precisely the point — the best version of this shift is the one that arrives as nothing more dramatic than things feeling faster.
Hardware capabilities and feature behaviour vary by device and software version. Check your manufacturer's documentation for what runs locally on your specific model.