Close Menu
    Facebook X (Twitter) Instagram
    Cloud Tech ReportCloud Tech Report
    • Home
    • Crypto News
      • Bitcoin
      • Ethereum
      • Altcoins
      • Blockchain
      • DeFi
    • AI News
    • Stock News
    • Learn
      • AI for Beginners
      • AI Tips
      • Make Money with AI
    • Reviews
    • Tools
      • Best AI Tools
      • Crypto Market Cap List
      • Stock Market Overview
      • Market Heatmap
    • Contact
    Cloud Tech ReportCloud Tech Report
    Home»AI News»NVIDIA AI Unveils ProRL Agent: A Decoupled Rollout-as-a-Service Infrastructure for Reinforcement Learning of Multi-Turn LLM Agents at Scale
    AI News

    NVIDIA AI Unveils ProRL Agent: A Decoupled Rollout-as-a-Service Infrastructure for Reinforcement Learning of Multi-Turn LLM Agents at Scale

    March 28, 2026
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    NVIDIA AI Unveils ProRL Agent: A Decoupled Rollout-as-a-Service Infrastructure for Reinforcement Learning of Multi-Turn LLM Agents at Scale
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email
    synthesia


    NVIDIA researchers introduced ProRL AGENT, a scalable infrastructure designed for reinforcement learning (RL) training of multi-turn LLM agents. By adopting a ‘Rollout-as-a-Service’ philosophy, the system decouples agentic rollout orchestration from the training loop. This architectural shift addresses the inherent resource conflicts between I/O-intensive environment interactions and GPU-intensive policy updates that currently bottleneck agent development.

    The Core Problem: Tight Coupling

    Multi-turn agent tasks involve interacting with external environments, such as code repositories or operating systems, via iterative tool use. Many existing frameworks—including SkyRL, VeRL-Tool, Agent Lightning, rLLM, and GEM—embed rollout control directly within the training process.

    This tight coupling leads to two primary limitations:

    • Conflicting System Requirements: Rollouts are I/O-bound, requiring sandbox creation, long-lived tool sessions, and asynchronous coordination. Training is GPU-intensive, centered on forward/backward passes and gradient synchronization. Running both in one process causes interference and reduces hardware efficiency.
    • Maintenance Barriers: Embedding rollout logic in the trainer makes it difficult to migrate to different training backends or support new runtime environments without re-implementing the execution pipeline.
    https://arxiv.org/pdf/2603.18815

    System Design: Rollout-as-a-Service

    ProRL AGENT operates as a standalone HTTP service that manages the full rollout lifecycle. The RL trainer interacts with the server solely through an API, remaining agnostic to the underlying rollout infrastructure.

    10web

    Three-Stage Asynchronous Pipeline

    To maximize throughput, the server orchestrates rollouts through an asynchronous three-stage ‘assembly line’:

  • INIT: Initialization workers spin up sandbox containers and configure tools.
  • RUN: Rollout workers drive the multi-turn agent loop and collect trajectories.
  • EVAL: Evaluation workers score results against ground truth to produce reward signals.
  • By assigning each stage to an independent worker pool, ProRL AGENT allows phases to overlap across different jobs, preventing slow evaluations (such as full test suite executions) from stalling the rollout process.

    https://arxiv.org/pdf/2603.18815

    HPC-Compatible Sandboxing and Optimized Tools

    ProRL AGENT utilizes Singularity for its sandbox infrastructure. Unlike Docker-based platforms, Singularity allows rootless execution, which is required for deployment on shared HPC clusters managed by Slurm.

    The system includes several optimizations to reduce tool execution latency, which often dominates total rollout time:

    • Efficient Bash: Replaces tmux-based terminal multiplexing with a ptyprocess-based direct pseudo-terminal, reducing shell command latency from 0.78s to 0.42s.
    • Direct IPython API: Connects to persistent kernels via an in-process API instead of network gateways, removing networking overhead.
    • Unix Domain Sockets (UDS): Replaces TCP loopback for communication between the agent and the execution server inside the container to shave off additional latency.

    Advanced Features for Scalable RL

    The infrastructure introduces mechanisms to improve training stability and hardware utilization:

    Load Balancing and Prefix Cache Reuse

    The server manages a pool of LLM inference backends (e.g., vLLM) using a min-heap keyed by assignment counts. When a task is assigned, all subsequent calls within that task are routed to the same backend. This strategy maximizes prefix cache reuse, reducing inference time across multiple agent turns.

    Token-in/Token-out Communication

    To eliminate re-tokenization drift—where the token sequence generated during rollout differs from what is used during training—ProRL AGENT uses token IDs as the canonical representation throughout the entire process. Log-probabilities and IDs are propagated unchanged from the inference backend to the trainer.

    Optimized DAPO Implementation

    The system supports Dynamic Sampling Policy Optimization (DAPO), which filters out ‘non-informative’ prompts that yield uniform rewards. ProRL AGENT uses an asynchronous replenishment mechanism to maintain maximum throughput, terminating redundant active jobs early once the target number of informative prompts is reached.

    Experimental Results on SWE-Bench Verified

    The system was validated using Qwen3 models across multiple scales. ProRL AGENT consistently improved performance compared to reproduced baselines.

    Model ScaleReproduced BaselineProRL Agent (RL)Qwen3-4B14.821.2Qwen3-8B9.618.0Qwen3-14B15.4 (reproduced baseline)23.6

    Note: The reported prior result for SkyRL-Agent-14B-v0 was 21.6.

    In addition to software engineering, the system demonstrated generality in STEM, Math, and Code domains, showing steady reward growth during RL training. Scalability tests confirmed that rollout throughput increases near-linearly as compute nodes are added.

    Key Takeaways

    • Architectural Decoupling: ProRL Agent treats the full agentic rollout lifecycle—including environment initialization, tool execution, and reward scoring—as an independent HTTP service, separating I/O-intensive tasks from GPU-intensive policy training.
    • Significant Performance Gains: This infrastructure enabled the Qwen3-8B model to nearly double its performance on the SWE-Bench Verified benchmark (from 9.6% to 18.0%), while the Qwen3-14B model improved from 15.4% to 23.6%.
    • System Latency Reductions: Targeted optimizations, such as replacing tmux with ptyprocess for shell execution, reduced action latency from 0.78s to 0.42s, contributing to near-linear throughput scaling across compute nodes.
    • Elimination of Tokenization Drift: The framework utilizes a token-in/token-out communication pipeline, ensuring that the exact token IDs generated during rollout are passed to the trainer without the risk of lossy re-tokenization.
    • HPC-Native Deployment: By using Singularity instead of Docker, ProRL Agent supports rootless execution and native Slurm integration, allowing large-scale agent training on shared high-performance computing clusters.

    Check out the Paper and Repo. Also, feel free to follow us on Twitter and don’t forget to join our 120k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.



    Source link

    notion
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email

    Related Posts

    Microsoft launches 3 new AI models in direct shot at OpenAI and Google

    April 3, 2026

    KiloClaw targets shadow AI with autonomous agent governance

    April 2, 2026

    How to Build a Production-Ready Gemma 3 1B Instruct Generation AI Pipeline with Hugging Face Transformers, Chat Templates, and Colab Inference

    April 1, 2026

    MIT researchers use AI to uncover atomic defects in materials | MIT News

    March 31, 2026

    RSAC 2026 shipped five agent identity frameworks and left three critical gaps open

    March 30, 2026

    RPA matters, but AI changes how automation works

    March 29, 2026
    frase
    Latest Posts

    Ethereum L2s Need Responsive Pricing to Scale, Says Offchain Labs

    April 3, 2026

    Rivian Just Earned Another $1 Billion Investment From Volkswagen. Here’s Why That’s An Important Milestone for the Stock.

    April 3, 2026

    Microsoft launches 3 new AI models in direct shot at OpenAI and Google

    April 3, 2026

    How I Make VIRAL 3D Shorts Using FREE AI Tools (Full Workflow)

    April 3, 2026

    Aave V3 Avoided Unrecovered Bad Debt From 2023 to 2025: Study

    April 3, 2026
    10web
    LEGAL INFORMATION
    • Privacy Policy
    • Terms Of Service
    • Social Media Disclaimer
    • DMCA Compliance
    • Anti-Spam Policy
    Top Insights

    Crypto Hackers Steal $168 Million from DeFi Protocols in Q1 2026

    April 4, 2026

    Drift Seeks Contact With The Hacker After $280M Exploit

    April 4, 2026
    bybit
    Facebook X (Twitter) Instagram Pinterest
    © 2026 CloudTechReport.com - All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.

    bitcoin
    Bitcoin (BTC) $ 67,092.00
    ethereum
    Ethereum (ETH) $ 2,049.69
    tether
    Tether (USDT) $ 0.999926
    bnb
    BNB (BNB) $ 589.84
    xrp
    XRP (XRP) $ 1.31
    usd-coin
    USDC (USDC) $ 1.00
    solana
    Solana (SOL) $ 80.10
    tron
    TRON (TRX) $ 0.317131
    figure-heloc
    Figure Heloc (FIGR_HELOC) $ 1.03
    staked-ether
    Lido Staked Ether (STETH) $ 2,265.05