Home / Companies / Nebius / Blog / July 2026

July 2026 Summaries

3 posts from Nebius

Filter
Month: Year:
Post Summaries Back to Blog
In 2026, nearly all frontier models in machine learning are mixture-of-experts (MoE), which rely heavily on expert parallelism (EP) to efficiently distribute model training across multiple GPUs. However, this approach encounters significant communication bottlenecks due to the all-to-all data exchanges required in each layer, making traditional NCCL collectives inefficient. The document discusses GPU-initiated RDMA using NVSHMEM and DeepEP as a solution to this bottleneck, enabling direct GPU memory access and reducing latency in communication. By implementing these technologies, particularly on platforms like Nebius, significant improvements in model FLOPs utilization (MFU) and training throughput have been observed without increasing memory costs. The text provides insights into the challenges of MoE models, the advantages of RDMA over traditional collective communication, and the specific tools and configurations necessary to optimize performance in large-scale distributed machine learning tasks.
Jul 23, 2026 1,532 words in the original blog post.
SlimSpec is a low-rank draft LM-head architecture designed to enhance speculative decoding by compressing the drafter's hidden representation without reducing its vocabulary, thereby maintaining full-vocabulary support while significantly reducing computational costs. In contrast to vocabulary-reduction methods, which can compromise acceptance quality by limiting token proposal capabilities, SlimSpec achieves a 4-5x reduction in LM-head costs in experiments, such as EAGLE-3, while preserving competitive acceptance quality. This approach is particularly beneficial for production environments with strict throughput and latency requirements, as it balances speed and token acceptance effectively. SlimSpec avoids the limitations of static and dynamic vocabulary truncation methods, which either cap acceptance rates or introduce additional inference-time complexities. The architecture has shown superior performance across various models and benchmarks, making it a practical choice for improving end-to-end speculative decoding throughput in applications like coding assistants and enterprise copilots. SlimSpec has been submitted to NeurIPS, and the preprint is available on ArXiv, offering production teams a robust solution for optimizing their speculative decoding workflows.
Jul 20, 2026 2,153 words in the original blog post.
LangChain has released a Deep Agents profile optimized for the NVIDIA Nemotron 3 Ultra, achieving high accuracy at a significantly lower cost compared to closed alternatives without altering the model itself. This improvement comes from enhancing the orchestration around the model, focusing on how efficiently the agent plans, calls tools, and executes tasks. The Nebius Agents Blueprint supports this setup by pairing LangChain Deep Agents with open-source models like the NVIDIA Nemotron 3 Ultra, providing a production-ready framework for AI agent development. The cost efficiency derives from reducing the number of tokens used in processing, as inefficiencies in harnessing the model can lead to higher operational costs, especially in complex tasks. By tuning the harness rather than the model, LangChain offers a solution that maintains the quality of AI agents while minimizing expenses, making it accessible to deploy using the Nebius Agents Blueprint, which simplifies integration and deployment processes.
Jul 08, 2026 545 words in the original blog post.