By Liam Vance • 2026-09-22

Developers Run Local LLM on Apple Watch: 24 Tokens/Sec on Series 6

Can aging wristwear run modern generative artificial intelligence completely offline? While industry consensus assumed on-device AI required gigabytes of unified memory and neural accelerators, software engineers have just shattered that assumption. In a groundbreaking optimization milestone, developers at Better Stack demonstrated how to run a local large language model directly on an Apple Watch Series 6—generating up to 24 tokens per second without an iPhone or internet connection.

Running local AI on a wearable originally launched in 2020 seems improbable given its strict 1GB RAM budget and watchOS sandbox restrictions. Yet by deploying the lightweight 90-million parameter Falcon H1 model and porting the llama.cpp runtime, engineers bypassed cloud latency entirely. The results reveal surprising computational headroom in legacy Apple Silicon.

Overcoming 32-Bit Memory and Core ML Hurdles

Deploying an LLM onto watchOS presented severe software barriers. Apple's native Core ML framework could not compile the Falcon H1 architecture, which relies on a cutting-edge Mamba-2 State Space Model (SSM) rather than standard transformer attention blocks. To circumvent this, the team customized open-source C++ llama.cpp code to compile under watchOS build flags.

Furthermore, the Apple Watch's `arm64_32` architecture limits pointer addressing to 32-bit spaces despite its 64-bit compute registers. By aggressively quantizing weights and streamlining memory allocation, Falcon H1 maintained a completely flat memory footprint regardless of token generation depth. The 90M model generated text at 15 to 24 tokens per second—nearly 50 times faster than a first-generation Raspberry Pi.

Voice Prompts, Offline Tools, and the Battery Trade-Off

The prototype application does not just output text strings; it processes spoken audio prompts and executes local tool calls, such as querying cached Wikipedia entries or formatting weather data without dialing external cloud APIs. While larger 135M parameter models pushed the hardware beyond comfortable thermal margins, the 90M configuration ran smoothly.

Preserved Benefit: Truly private, zero-latency on-device intelligence operating in complete airplane mode, eliminating subscription fees and cloud tracking.

Explicit Trade-Off: Sustained local neural inferencing generates noticeable thermal build-up and accelerates battery drain on compact lithium-ion cells.

Interested in how intensive background workloads affect your device's daily runtime? Test your setup with our sensor matrix tool or calculate daily battery drain with our Apple Watch battery estimator.