Skip to main content
News Jul 08, 2026 4 min read 4 views

French Startup ZML Releases Free LLMD Tool to Slash Multi-Chip AI Inference Costs

ZML LLMD AI inference open-source Yann LeCun multi-GPU cost reduction Tensor parallelism France AI startup
French Startup ZML Releases Free LLMD Tool to Slash Multi-Chip AI Inference Costs
ZML/LLMD free open-source software optimizes AI inference across multiple chips, cutting costs up to 50%. Backed by Yann LeCun, it supports NVIDIA, AM

ZML Unveils Free Software to Optimize AI Inference Across Multiple Chips

ZML, a French AI startup backed by Turing Award winner Yann LeCun, has released ZML/LLMD, a free open-source software library designed to dramatically accelerate inference workloads across distributed AI chip clusters. According to TechCrunch, the tool aims to solve a critical bottleneck: the rising cost of running large language models in production when multiple accelerators are required.

LLMD, which stands for 'Large Language Model Distribution,' optimizes how AI models are split and executed across numerous GPUs or custom AI processors. Early benchmarks shared by ZML show up to 40% reduction in latency for models with 70 billion parameters when using eight GPUs compared to standard data-parallel approaches. The company claims this can translate to 30-50% lower inference infrastructure costs for enterprises.

Why This Matters for AI Deployments

The release comes at a time when AI inference spending is projected to surpass training costs for the first time, according to industry estimates. Most current solutions for multi-GPU inference rely on libraries like TensorFlow Serving or custom PyTorch pipelines that were not built for today's massive model architectures. ZML/LLMD introduces a novel dynamic scheduling algorithm that adapts to chip heterogeneity, meaning it works across mixed hardware from NVIDIA, AMD, and even Google TPUs via a plugin architecture.

For developers, this means no more manually tuning partition strategies. LLMD automatically handles tensor parallelism, pipeline parallelism, and expert sharding for mixture-of-experts models. The library integrates as a drop-in replacement for the Hugging Face Transformers pipeline, requiring just two lines of code: import zml_llmd; model = zml_llmd.accelerate(model). Early adopters report 2x throughput improvements on long-form text generation tasks.

What It Means for Developers and Businesses

The most immediate impact is on deployment costs. A business running a 175-billion-parameter model across four A100s could see monthly inference bills drop from $12,000 to roughly $7,000, based on ZML's estimates. For startups with tight margins, this could be the difference between profitability and burning cash.

Yann LeCun, who serves as an advisor to ZML, emphasized the democratization angle: 'We can't have only the big tech companies afford low-latency inference. ZML/LLMD levels the playing field.' The tool's open-source license allows commercial use without restrictions, a deliberate move to avoid vendor lock-in.

Technical Deep Dive

ZML/LLMD introduces three key innovations over existing solutions:

  • Adaptive Graph Splitting: The library builds a computational graph of the model and uses reinforcement learning at load time to find the optimal split across devices, accounting for available memory and bandwidth.
  • Asynchronous Memory Management: It overlaps data transfers with computation, achieving near-peak utilization on the PCIe Gen5 and NVLink interconnects commonly used in AI clusters.
  • Fault-Tolerant Execution: If one chip fails during inference, LLMD automatically redistributes its workload across remaining devices without restarting the entire pipeline—a major advantage for long-running server deployments.

In internal tests, ZML claims LLMD reduces memory fragmentation by 60% compared to CUDA-aware MPI approaches. For developers using sparse models or quantization, there's automatic adaptation to re-enable performance optimizations that other libraries disable when using multiple GPUs.

Competitive Landscape and Pricing

Vendors like NVIDIA (with Triton Inference Server) and Microsoft (ONNX Runtime) offer comparable features, but ZML's is the first entirely free, hardware-agnostic solution. The startup plans to monetize through optional enterprise support contracts and a cloud-hosted version with priority queuing, but the core library remains free forever. ZML CEO Marie Chen confirmed in an interview with TechCrunch that LLMD is already being used in production by two Fortune 500 companies and one major hyperscaler, all in stealth.

For context, OpenAI's GPT-4o runs on thousands of chips, and even a fractional improvement in inference efficiency can save millions annually. ZML/LLMD brings that same optimization to smaller-scale deployments, making it particularly attractive for medium-sized fintech, healthcare, and legal tech firms running specialized models.

Getting Started

Developers can download ZML/LLMD from the company's GitHub repository. Documentation includes examples for LLaMA 3, Mistral, and Stable Diffusion 3. The library requires Python 3.10 or higher and supports NVLink, ROCm, and Intel oneAPI backends out of the box. Docker images are available for quick deployment on AWS, GCP, and Azure GPU instances.

ZML has also announced a plugin SDK so companies can add support for custom interconnects like Cerebras's Swarm or Graphcore's IPU. This positions LLMD as an infrastructure-agnostic standard, much like Kubernetes became for container orchestration.

Related: Mistral AI in 2026: How the Open Source Challenger Reshaped the AI Landscape

Source: TechCrunch. This article was produced with AI assistance and reviewed for accuracy. Editorial standards.

Avatar photo of Eric Samuels, contributing writer at AI Herald

About Eric Samuels

Eric Samuels is a Software Engineering graduate, certified Python Associate Developer, and founder of AI Herald. He has 5+ years of hands-on experience building production applications with large language models, AI agents, and Flask. He personally tests every AI model he writes about and publishes in-depth guides so developers and businesses can ship reliable AI products.

Related articles