
Share
A GPU-agnostic Vulkan backend and a new fine-tuning framework let Microsoft's ternary-quantized BitNet b1.58 run and train on phones and consumer GPUs, cutting VRAM use by up to 78% and sidestepping the CUDA monopoly entirely.
The pitch against the current AI boom usually comes down to infrastructure. Training frontier models eats electricity, water, and rare minerals at a scale that makes "one prompt equals a bottle of water" jokes land a little too well. Tether's latest release doesn't solve that problem outright, but it does chip away at one specific corner of it: getting a genuinely large language model to run, and be fine-tuned, on hardware you already own.
To put the baseline in perspective: running a half-precision (FP16) Gemma 3 1B model needs roughly 2.2GB of VRAM, doable on an 8GB RTX 3050 laptop. Bump up to a 10B model like GPT-NeoX-20B and you're looking at a $1,500 rig with an RTX 5060 Ti. And that's just inference. Fine-tuning costs scale even worse. FP16 quantization (storing weights in 16-bit instead of 32-bit) helps, cutting VRAM roughly in half, but you're still trading accuracy for savings, and you're still bound to GPU-heavy setups.
Microsoft's BitNet b1.58 took a different swing at the problem in 2024: ternary quantization, where weights are represented as -1, 0, or 1 instead of floating-point values. That's a genuinely different arithmetic model, not just a smaller one. It lets you replace floating-point multiplication with plain integer addition and subtraction, which is dramatically cheaper computationally. The catch is that this design was optimized for CPUs. GPUs are built around floating-point math, not ternary logic, so BitNet's efficiency gains never made it onto the hardware most people actually associate with AI workloads.
Tether's contribution is closing that gap. The company built a Vulkan-based GPU backend (the same approach used in its QVAC Fabric LLM fine-tuning framework) that lets BitNet run on essentially any graphics card, not just NVIDIA's CUDA-locked lineup. Vulkan is a cross-platform graphics and compute API, so this isn't a CUDA port or a workaround. It's a genuinely hardware-agnostic path to running ternary models on GPUs for the first time.
Two results stand out from Tether's benchmarking, and they're worth breaking down separately because they answer different questions.
Those two numbers together are the actual story. Speed alone would just mean "BitNet doesn't suck on GPUs anymore." Speed plus a 29% VRAM advantage over a model with a third of the parameters means the ternary approach is pulling ahead on efficiency, not just catching up.

The practical output of all this is a local-first fine-tuning framework, detailed in Tether's press release, that supports BitNet variants up to the full 13B model on devices like the Samsung S25, Google Pixel 9, and iPhone 16. To make fine-tuning actually feasible on phone-class GPUs, Tether added a dynamic tiling algorithm that splits large matrices into adjustable-size tiles so they fit cleanly into a GPU's fast on-chip SRAM. That's a fairly standard technique in HPC contexts, but applying it to consumer mobile GPUs for LLM fine-tuning is the less common part.
The timing numbers give a decent sense of what "fine-tuning on a phone" actually costs in practice. A 125M-parameter BitNet model fine-tuned on a biomedical dataset (roughly 300 documents, ~18k tokens) takes about 10 minutes on a Samsung S25's Adreno GPU. Scale to 1B parameters on the same data, and it's 1 hour 18 minutes on the S25, 1 hour 45 minutes on an iPhone 16. Tether says this marks the first time a 13B-parameter model has been fine-tuned successfully on an iPhone 16, a workload that used to require a data center rack, not a device in your pocket.
Whether "successfully fine-tuned" at the 13B scale on a phone means production-grade quality or a proof-of-concept run isn't fully spelled out in the release, and that's worth keeping in mind before treating this as a solved problem. The timing figures given are for much smaller models. Still, getting a 13B model to run at all on that hardware, let alone train, is a meaningfully different capability than what existed before.
The bigger implication here isn't really about Tether specifically. It's about what happens when quantization research (Microsoft's) and systems engineering (Tether's Vulkan backend and tiling work) combine to decouple large model training from NVIDIA's CUDA ecosystem. That's a real dependency being loosened, not just a cost optimization.
For practitioners, the near-term relevance is straightforward: if you're building anything that needs on-device fine-tuning with privacy constraints (health data, personal assistants, anything where uploading to a server is a non-starter), a 13B model that fits in under 3GB of VRAM changes what's feasible on edge hardware. It also means teams without access to multi-GPU clusters have a genuine path to experimenting with billion-parameter models locally.
The open questions are the usual ones with any efficiency claim: how does BitNet's ternary quantization hold up on tasks beyond biomedical text classification, and does fine-tuning quality at 13B parameters on a phone actually match what you'd get on a proper GPU cluster. Tether has published its work on Hugging Face, so those benchmarks are at least checkable rather than taken on faith. Worth digging into if you're evaluating BitNet for an actual deployment rather than just admiring the VRAM numbers.
Tags
Original Sources
Tether is pushing the 13-billion parameter BitNet b1.58 LLM to the edge. | TechCrunch
↗ https://techcrunch.com/sponsor/tether/tether-is-pushing-the-13-billion-parameter-bitnet-b1-58-llm-to-the-edge
About the author
Kai built ML infrastructure at a Bay Area startup before developing an obsession with transformer architectures and inference optimisation that eventually pulled him out of product work entirely. A stint at a compute research lab sharpened his instinct for what actually matters in a model release versus what is marketing. He writes from the inside — from the perspective of someone who has debugged the systems he is describing at three in the morning. He is allergic to hype and instinctively drawn to the unglamorous plumbing questions that everyone else skips over.
More from The Engineer →This Week's Edition
7 September 2026
23 articles
Related Articles

Meta ships Muse Spark 1.3, promises open weights for the flagship model "soon"
Models & Research · 5 min

Russian Startup Mostik Claims a Math Trick for Direct AI Model-to-Model Communication
Models & Research · 5 min

Everpure's FlashBlade//EXA Tops MLPerf Storage v3.0 for Checkpointing and KV Cache
Models & Research · 5 min
Related Articles

Meta ships Muse Spark 1.3, promises open weights for the flagship model "soon"
Models & Research · 5 min

Russian Startup Mostik Claims a Math Trick for Direct AI Model-to-Model Communication
Models & Research · 5 min

Everpure's FlashBlade//EXA Tops MLPerf Storage v3.0 for Checkpointing and KV Cache
Models & Research · 5 min
More Stories
© 2026 Cedar & Bloom. All rights reserved.