{"slug": "periodic-labs-details-the-1300-gpu-stack-behind-neon", "title": "Periodic Labs details the 1,300-GPU stack behind Neon", "summary": "Periodic Labs disclosed in a September 15th engineering post that its Neon 1-trillion-parameter model's final training run peaked at 1,300 Nvidia H200 GPUs, achieving over 95% cluster utilization, 4.1x the training throughput of its Megatron baseline, and a 2.5x inference speedup from 10 to 25 tokens per second per request. Founders Liam Fedus and Ekin Dogus Cubuk built custom routing, sandboxing, and training systems for long scientific reinforcement-learning runs, including Delta Router Replay, contributed via SGLang pull request 24851, which cut routing-data collection at a 32,768-token input from 121.23 milliseconds to 1.90 milliseconds, a 63.77x speedup on a benchmark using Kimi-K2-Instruct on eight H200 GPUs. The disclosure shows Periodic Labs treating physical experiments as an RL environment, requiring model training, tool execution, and laboratory operations to run as one system.", "body_md": "# Periodic Labs details the 1,300-GPU stack behind Neon\n\n**Liam Fedus and Ekin Dogus Cubuk built custom routing, sandboxing and training systems for long scientific RL runs.**\n\n        By [RuntimeWire Staff](https://runtimewire.com/author/runtimewire-staff)\n        · Published \n\nPrimary source: [Aligned News - AI Intelligence](https://x.com/khoomeik/status/2100338891492577727)\n\n## Why it matters\n\nPeriodic Labs is treating physical experiments as an RL environment, forcing its founders to build model training, tool execution and laboratory operations as one system.\n\n[Liam Fedus (@LiamFedus)](https://x.com/LiamFedus?ref=runtimewire) and [Ekin Dogus Cubuk (@ekindogus)](https://x.com/ekindogus?ref=runtimewire) have detailed the reinforcement-learning infrastructure behind Neon, the 1-trillion-parameter model analyzing experiments inside [Periodic Labs](https://periodic.com/?ref=runtimewire)' high-throughput laboratories.\n\nPeriodic Labs said in a [September 15th engineering post](https://periodic.com/news/ai-infrastructure-at-periodic?ref=runtimewire) that Neon's final training run used a peak of 1,300 Nvidia H200 GPUs across midtraining and reinforcement learning. Periodic Labs reported more than 95% cluster utilization, 4.1x the training throughput of its Megatron baseline and a 2.5x improvement in inference speed for its workload. An [Aligned News thread](https://x.com/khoomeik/status/2100338891492577727?ref=runtimewire) highlighted Delta Router Replay, one of the narrower engineering fixes inside that larger system.\n\nThose are Periodic Labs' internal measurements. The training comparison uses a Megatron v0.18 recipe adapted for H200s and Periodic Labs' workloads, followed by custom recipe tuning, sequence packing and scheduling. The inference result measures decoding on a 1-trillion-parameter model at the same batch size, improving from 10 to 25 tokens per second per request.\n\nThe engineering disclosure shows what Fedus and Cubuk's scientific thesis requires in practice. Periodic Labs wants AI models to reason over experiments for hours, call scientific tools and learn from results produced in physical laboratories. That workload behaves differently from the short prompts and bounded tasks behind much commercial model serving.\n\n### The router was resending the whole conversation\n\nNeon uses a mixture-of-experts architecture, which sends each token to a selected subset of specialized neural-network components. Reinforcement learning introduces a synchronization problem: routing decisions made while a model generates a rollout can diverge from the decisions used later during optimization. Router replay preserves the original choices so the training step can reproduce what happened during inference.\n\nPeriodic Labs found that the original SGLang implementation returned routing information for the entire conversation after every turn, including tokens already stored in the prefix cache. The payload grew with the conversation even though the rollout client needed only the routing decisions for newly generated tokens.\n\nDelta Router Replay caches the earlier decisions on the client and asks the server only for the new suffix. Periodic Labs contributed the change through [SGLang pull request 24851](https://github.com/sgl-project/sglang/pull/24851?ref=runtimewire), which added a `routed_experts_start_len` parameter for specifying where the returned routing data should begin. The pull request was merged on May 10th, several months before Periodic Labs published the broader infrastructure account.\n\nThe pull request's benchmark used [Kimi-K2](https://runtimewire.com/models/moonshotai/kimi-k2)-Instruct on eight H200 GPUs, with a 95% prefix-cache hit rate and 100 generated tokens. At a 32,768-token input, returning the full routing history took 121.23 milliseconds. Returning only the new slice took 1.90 milliseconds, a 63.77x speedup for that operation under the stated conditions.\n\nThat benchmark measures routing-data collection and transfer, rather than Neon's full end-to-end performance. Its value is in removing a delay that spread beyond one request. In SGLang's data-parallel attention setup, ranks synchronize during decoding, so a single rank stalled while gathering a large routing payload can slow the entire group.\n\n### Scientific rollouts break the usual training loop\n\nPeriodic Labs said its scientific reinforcement-learning rollouts can reason and execute tools for more than an hour, while a training step takes minutes. Waiting for every rollout before updating the model would leave expensive training hardware idle. Updating too aggressively creates another problem: later portions of a rollout may be generated by different weight versions than the one that started it.\n\nPeriodic Labs runs training and inference asynchronously on separate GPU allocations and uses SGLang's in-place mode to preserve the key-value cache during weight synchronization. [Prefill-decode disaggregation](https://periodic.com/news/ai-infrastructure-at-periodic?ref=runtimewire) reduced rollout duration by 2x in Periodic Labs' tests. Together, prefill-decode disaggregation and Delta Router Replay made decoding 2.5x faster for Periodic Labs' use case.\n\nCheckpoint handling created a second bottleneck. Converting a trillion-parameter Megatron checkpoint into Hugging Face format initially took 30 minutes. Periodic Labs distributed the conversion across Ray workers and avoided reconstructing full mixture-of-experts tensors, reducing the process to one minute. Periodic Labs contributed that work to the Miles project.\n\nThe physical-science tools required another custom layer. Periodic Labs' first reinforcement-learning loop ran training, inference and model-written code without isolation. According to the engineering post, one generated program requested 80 GB of memory and crashed the job.\n\nPeriodic Labs responded by building pbox, a sandbox system that runs on spare CPUs inside GPU nodes already assigned through Slurm. In a 100-sandbox test, Periodic Labs said pbox completed 1 MiB upload-and-download trips with 4.5x lower median latency and delivered 3.3x the aggregate throughput of an unnamed hosted provider. The unnamed comparison and internal test setup limit how broadly those figures can be applied.\n\n### The founders are joining the model and the laboratory\n\nFedus previously led post-training research at OpenAI and worked on ChatGPT-era systems after studying physics at MIT and the University of California, San Diego, and completing a computer science doctorate in Montreal. Cubuk earned a doctorate in applied physics at Harvard, completed postdoctoral research at Stanford and later led materials and chemistry research at Google DeepMind. He was a senior author on [GNoME](https://deepmind.google/blog/millions-of-new-materials-discovered-with-deep-learning/?ref=runtimewire), DeepMind's system for predicting stable crystal structures.\n\nCubuk told [Physics Today in March](https://physicstoday.aip.org/news/ekin-dogus-cubuk-runs-a-startup-to-accelerate-physics-r-d-using-ai?ref=runtimewire) that experiments were essential because theory and simulations could not carry solid-state physics alone. He also said building a physical laboratory inside a large software company had proved difficult. Periodic Labs gives the founders control of both sides: the models proposing and interpreting work, and the laboratories generating evidence.\n\nThat combination attracted a [$300 million seed round](https://techcrunch.com/2025/09/30/former-openai-and-deepmind-researchers-raise-whopping-300m-seed-to-automate-science/?ref=runtimewire) in September 2025, led by Andreessen Horowitz. Backers included [Felicis](https://www.felicis.com/blog/periodic-labs-investment?ref=runtimewire), DST Global, NVentures, Accel, Jeff Bezos, Elad Gil, Eric Schmidt and Jeff Dean. Felicis partner Peter Deng wrote that he offered the first check before Periodic Labs had a name or had been incorporated.\n\nThe new infrastructure account explains where some of that capital is going: a large GPU fleet, customized open-source systems and autonomous laboratories designed as one reinforcement-learning environment. Periodic Labs' reported throughput gains could let its researchers run more experiments within the same compute budget. The scientific test remains the output of that loop. The September post documents how Periodic Labs trains and serves Neon; it does not report a newly validated material or superconductivity result.", "url": "https://wpnews.pro/news/periodic-labs-details-the-1300-gpu-stack-behind-neon", "canonical_source": "https://runtimewire.com/article/periodic-labs-neon-reinforcement-learning-infrastructure", "published_at": "2026-09-17 00:25:10+00:00", "updated_at": "2026-09-17 00:54:24.304806+00:00", "lang": "en", "topics": ["ai-research", "ai-infrastructure", "large-language-models", "ai-chips", "mlops"], "entities": ["Periodic Labs", "Neon", "Liam Fedus", "Ekin Dogus Cubuk", "Nvidia H200", "SGLang", "Megatron", "Kimi-K2-Instruct"], "alternates": {"html": "https://wpnews.pro/news/periodic-labs-details-the-1300-gpu-stack-behind-neon", "markdown": "https://wpnews.pro/news/periodic-labs-details-the-1300-gpu-stack-behind-neon.md", "text": "https://wpnews.pro/news/periodic-labs-details-the-1300-gpu-stack-behind-neon.txt", "jsonld": "https://wpnews.pro/news/periodic-labs-details-the-1300-gpu-stack-behind-neon.jsonld"}}