Close Menu
WithO2WithO2

    Subscribe to Updates

    Get the latest AI News Tools Updates in your Inbox

    What's Hot

    Claude Voice Mode Now Runs Opus and Automates Gmail, Slack and Canva

    July 31, 2026

    Mesh LLM Pools Ordinary PCs to Run 235B AI Models Without the Cloud

    July 31, 2026

    Salesforce Agentforce Help Agent Now GA: You Pay Only When It Resolves the Issue

    July 31, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    WithO2WithO2
    • AI
    • Blog
    • Business Software
    • Trending News
    • Stories
    WithO2WithO2
    Home » Trending News
    Trending News

    Mesh LLM Pools Ordinary PCs to Run 235B AI Models Without the Cloud

    By Amitabh SarkarJuly 31, 20265 Mins Read0
    Facebook Twitter Pinterest LinkedIn Tumblr Email
    Four consumer PCs linked by peer-to-peer network lines pooling into one large AI model node
    Mesh LLM splits a model's layers across several machines so their GPU memory combines.
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Published: July 30, 2026

    Mesh LLM pools the GPU memory of several ordinary computers over a peer-to-peer network so they can jointly run AI models up to 235 billion parameters, a size no single consumer machine can load. The MIT-licensed project, built in Rust on the iroh networking library and llama.cpp, launched in April 2026 and returned to the Hacker News front page on July 12, 2026 with 175 points and 40 comments. Mesh LLM connects machines by public key using NAT-traversing QUIC connections, splits a model’s layers across those machines, and exposes an OpenAI-compatible API so existing applications connect without code changes. It ships with support for more than 40 models, ranging from 500-million-parameter models that fit on a laptop to 235-billion-parameter mixture-of-experts models.

    Table of Contents

    Toggle
    • How Mesh LLM Splits One Model Across Several Machines
    • Why Pooled VRAM Matters for Running Open Models
    • Frequently Asked Questions

    How Mesh LLM Splits One Model Across Several Machines

    Mesh LLM uses pipeline parallelism, which assigns different layers of the same model to different machines — layers 0 to 15 on one node, layers 16 to 31 on the next — and streams the intermediate activations between them. A request arrives at any node in the mesh, and Mesh LLM routes it to whichever peer has the required model loaded.

    The networking layer is what makes the arrangement practical outside a data centre. According to the iroh team: “iroh gives authenticated, NAT-traversing QUIC between any two machines addressed by public key, so ‘route to a peer’ and ‘stream activations to the next pipeline stage’ become the same primitive as ‘talk to localhost,’ just with a different endpoint ID.”

    iroh is an open-source peer-to-peer networking library built by n0 for content-addressed data transfer over QUIC. NAT traversal means the machines do not need public IP addresses or port forwarding, so a gaming desktop and a work laptop on separate home networks can join the same mesh.

    Why Pooled VRAM Matters for Running Open Models

    Pooled VRAM removes the single hard ceiling on local AI: a 235-billion-parameter mixture-of-experts model needs more than 140GB of video memory, which no consumer graphics card provides. Three machines with 24GB cards each contribute their memory to the same model under Mesh LLM instead of each being capped at what one card holds.

    This distinguishes Mesh LLM from the tools most local-AI guides cover, such as Ollama and LM Studio, which run a model on one machine and are therefore bounded by that machine’s VRAM. Petals, released by Hugging Face in 2022, pioneered distributed inference but targeted research use and required stable, directly reachable connections. Mesh LLM adds NAT traversal and the OpenAI-compatible API that production tooling expects.

    Pipeline parallelism across home networks carries a latency cost the project has not quantified. The iroh team has not published tokens-per-second figures for distributed inference, and pipeline parallelism is latency-sensitive by design, so throughput depends on the network between nodes. Mesh LLM is a different trade-off from cloud inference — data stays on hardware you own and there is no per-token bill — not a faster version of it.

    💡 Our Take: Local AI has been stuck behind one number: the VRAM on your single best card. Mesh LLM treats that number as a networking problem instead of a hardware problem, and for a small business with three or four decent machines already sitting on a desk, that reframing is the whole story — the models that previously required a cloud invoice now require an evening of setup. The missing figure is throughput, and until iroh publishes tokens-per-second across real home networks, treat Mesh LLM as a privacy-and-cost play rather than a performance one.

    Frequently Asked Questions

    What is Mesh LLM?

    Mesh LLM is an MIT-licensed open-source tool that runs a single large language model across multiple computers connected in a peer-to-peer mesh. It is built in Rust using the iroh networking library and llama.cpp. Mesh LLM splits a model’s layers across machines using pipeline parallelism, supports more than 40 models from 500 million to 235 billion parameters, and exposes an OpenAI-compatible API.

    Do the computers need to be on the same network?

    No, the computers do not need to share a network. Mesh LLM uses iroh’s NAT-traversing QUIC connections, which address each machine by public key and connect peers across separate networks without public IP addresses or port forwarding. A desktop on a home network and a laptop elsewhere on the internet can join the same mesh.

    How fast is distributed inference with Mesh LLM?

    The iroh team has not published tokens-per-second figures for Mesh LLM. Pipeline parallelism streams activations between machines at every stage boundary, which makes throughput dependent on network latency between nodes. Buyers evaluating Mesh LLM should benchmark it on their own hardware and network rather than assume cloud-comparable speed.

    Mesh LLM belongs to a wider shift toward running capable open models on owned hardware rather than metered APIs, driven by the open-weight models that have closed most of the quality gap. Our coverage of GLM-5.2 and its 1M-token open-source context window explains what a frontier-class open model now delivers, and our comparison of the best AI tools for business covers where self-hosted inference fits against hosted alternatives on cost and control.

    For Context: Mesh LLM extends the local-AI trend we covered when Moonshot shipped a desktop agent swarm — see our reporting on Kimi Work running a 300-agent local AI swarm on a desktop, which pushed agent orchestration onto local hardware the same way Mesh LLM pushes model capacity there.

    Last Updated: July 2026

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Amitabh Sarkar
    • Website

    I am a software engineer, I have a passion for working with cutting-edge technologies and staying up-to-date with the latest developments in the field. In my articles, I share my knowledge and insights on a range of topics, including business software, how to set up tools, and the latest trends in the tech industry.

    Related Posts

    Claude Voice Mode Now Runs Opus and Automates Gmail, Slack and Canva

    July 31, 2026

    Salesforce Agentforce Help Agent Now GA: You Pay Only When It Resolves the Issue

    July 31, 2026

    Databricks Tested AI Coding Agents on Real Code — Here’s Who Won

    July 31, 2026

    Comments are closed.

    Don't Miss
    Trending News

    Claude Voice Mode Now Runs Opus and Automates Gmail, Slack and Canva

    By Amitabh SarkarJuly 31, 2026

    Published: July 27, 2026 Anthropic upgraded Claude’s voice mode on July 23, 2026 to support…

    Salesforce Agentforce Help Agent Now GA: You Pay Only When It Resolves the Issue

    July 31, 2026

    Databricks Tested AI Coding Agents on Real Code — Here’s Who Won

    July 31, 2026

    TypeScript 7 Is Out — Microsoft’s Go Rewrite Makes It 10x Faster

    July 31, 2026

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    Our Picks

    9 Best Ecommerce Platforms Compared (2026)

    July 30, 2026

    Rippling vs Gusto vs BambooHR: Full HRMS Comparison 2026

    July 15, 2026

    Best Ecommerce Platform 2026: Top 10 Options Compared

    July 5, 2026

    Hostinger vs Bluehost 2026: Which Cheap Host Wins?

    July 3, 2026
    Editors Picks

    Claude Voice Mode Now Runs Opus and Automates Gmail, Slack and Canva

    July 31, 2026

    Salesforce Agentforce Help Agent Now GA: You Pay Only When It Resolves the Issue

    July 31, 2026

    Databricks Tested AI Coding Agents on Real Code — Here’s Who Won

    July 31, 2026

    TypeScript 7 Is Out — Microsoft’s Go Rewrite Makes It 10x Faster

    July 31, 2026
    About Us
    About Us

    Your Source for Innovation: Discover in-depth guides, solutions, and tools tailored to modern business challenges.

    Links
    • Blog
    • Privacy Policy
    • Contact WithO2.com
    • Terms and Conditions
    Facebook X (Twitter) Instagram Pinterest
    • About
    • Editorial Policy
    • Contact
    • Privacy Policy
    • Terms
    © 2026 WITHO2.COM

    Type above and press Enter to search. Press Esc to cancel.