The model behind 3,000 tokens/s is now open-source.
Laneformer 2B is on Hugging Face with weights, model code, and the full training recipe under Apache 2.0. Here is why we trained it from scratch.
The Kog Inference Engine (KIE) generates 3,000 output tokens/s per request on 8× AMD MI300X GPU. Delayed Tensor Parallelism (DTP) is one of the reasons.
Standard tensor parallelism blocks on an all-reduce at every layer. DTP delays each all-reduce by δ = 2 layers and overlaps it with the next weights streaming in, which keeps inter-GPU communication overhead negligible.
Laneformer runs this as an 8-lane structure across the 8 GPUs, with the delay built into the architecture.
DTP works best when the model is designed around it from day one. A fresh architecture starts from random weights, so we trained Laneformer from scratch on 6T tokens of open Nemotron data.
In greedy decoding, Laneformer 2B scores 45.1% on HumanEval+, ahead of Qwen3.5 2B at 31.1%, Gemma 2 2B at 32.9%, and SmolLM2 1.7B at 29.9%.
A 500-token completion finishes in under 0.2 seconds at that speed, so drawing 8 samples takes about 1.3 seconds and lifts HumanEval+ to 65.0%, which makes test-time compute a cheap option.
Weights, model code, and the recipe are open.
Links in the first comment 👇