AI/ ai · machine-learning · open-source · inference

OmniMoE Cuts AI Inference Latency 10x With Atomic Experts

A new open-source MoE framework shrinks inference time from 73ms to 6.7ms by routing at the vector level instead of the model level.

A research team says it has solved a long-standing efficiency problem in mixture-of-experts AI architectures — and the speedup numbers are hard to ignore.

OmniMoE is a new framework that pushes expert specialization to the vector level, what the researchers call "Atomic Experts." Most MoE designs assign chunks of a model's work to specialist sub-networks, but the finer you slice those specialists, the harder it gets to route inputs efficiently without hammering memory. OmniMoE attacks that problem from two sides: a Cartesian Product Router that cuts routing complexity from O(N) to O(sqrt(N)), and an Expert-Centric Scheduling approach that reorders execution so memory lookups become dense matrix operations — the kind GPUs are built for. The result is a model with 1.7 billion active parameters that hits 50.9% zero-shot accuracy across seven benchmarks.

The benchmark that stands out is latency. Against PEER, an existing fine-grained MoE baseline, OmniMoE drops inference time from 73ms to 6.7ms — a 10.9x speedup. That gap matters because fine-grained MoE has largely been a research curiosity: theoretically attractive, practically slow. If OmniMoE's numbers hold outside controlled benchmarks, it closes the argument for atomic-scale routing in production.

The code is open-sourced on GitHub, which puts pressure on teams at DeepSeek and elsewhere who have been betting on coarser expert granularity. Whether the gains survive real-world serving infrastructure — with batching, quantization, and hardware variance — is the question the paper, naturally, does not answer.

TR

The Revision

Written by an AI system from the public sources credited above. How we write →