Divide-and-Conquer CoT: RL for Reducing Latency via Parallel Reasoning

TL;DR

Proposes DC-CoT with RL training to identify and execute parallel subtasks, reducing longest path length by 35-40%.

cs.LG 🔴 Advanced 2026-01-30 41 views
Arvind Mahankali Kaiyue Wen Tengyu Ma
LLMs reasoning optimization reinforcement learning parallel inference mathematical reasoning

Key Findings

Methodology

This work builds on long chain-of-thought (Long CoT) models, designing the Divide-and-Conquer CoT (DC-CoT) architecture. The model acts as a director, identifying subtasks suitable for parallel execution, and spawns worker modules to perform these tasks. A multi-stage RL algorithm, combining correctness and path length penalties, is used to train the model to improve subtask recognition and reduce inference latency. The training involves initial supervised fine-tuning (SFT) on synthetic data, followed by iterative RL to recover accuracy lost during SFT. Experiments on benchmarks like AIME 2024 and HMMT 2025 show the model maintains high accuracy while reducing the longest path length by 35-40%, demonstrating effective parallel reasoning.

Key Results

  • On AIME 2024, DC-CoT achieves a 37.4% reduction in longest path length with accuracy comparable to the baseline, demonstrating significant speedup.
  • In HMMT 2025, the model reduces response latency by approximately 40%, with minimal accuracy loss.
  • Multi-stage RL training effectively balances accuracy and latency, validating the approach's practicality for complex reasoning tasks.

Significance

This research addresses the critical bottleneck of inference latency in large language models performing long chain-of-thought reasoning. By enabling models to learn how to identify and execute subtasks in parallel, it opens pathways for deploying high-performance reasoning systems in real-time applications such as automated math solving, logical inference, and decision support. The approach offers a scalable solution to speed up reasoning without sacrificing accuracy, thus bridging the gap between model capability and practical deployment constraints.

Technical Contribution

The paper introduces a novel architecture combining a director-worker paradigm with multi-stage RL training, explicitly teaching models to recognize parallelizable subtasks. The key innovation lies in using the longest path length as a proxy for latency, with tailored reward functions balancing correctness and efficiency. This approach surpasses traditional prompt-based heuristics, providing a trainable, end-to-end framework for parallel reasoning in large models, with strong theoretical and practical implications.

Novelty

This work is the first to systematically train large language models to perform explicit subtask decomposition for parallel inference, integrating RL to optimize both accuracy and latency. Unlike prior methods relying solely on prompt engineering or heuristic heuristics, DC-CoT enables models to autonomously learn how to partition reasoning processes, representing a significant step forward in scalable, efficient reasoning architectures.

Limitations

  • The approach may struggle with highly ambiguous or deeply nested tasks where subtask boundaries are unclear, affecting the quality of parallelization.
  • RL training is computationally intensive, requiring substantial resources, which may limit accessibility for some research groups.
  • Current methods depend on the model’s initial reasoning ability; in tasks where initial reasoning is weak, subtask identification may be suboptimal.

Future Work

Future directions include developing more efficient RL algorithms to reduce training costs, enhancing subtask recognition in ambiguous scenarios, and extending the framework to multi-modal reasoning tasks. Additionally, integrating meta-learning techniques could improve generalization across diverse problem domains, further broadening the applicability of parallel reasoning in large-scale AI systems.

AI Executive Summary

Long chain-of-thought (CoT) reasoning has revolutionized the capabilities of large language models (LLMs) in tackling complex mathematical and logical problems. However, the sequential nature of traditional CoT generation results in high latency, limiting real-time applications. Addressing this challenge, the authors introduce Divide-and-Conquer CoT (DC-CoT), a novel architecture that enables models to identify independent subtasks within a reasoning process and execute them in parallel. The core idea is to train the model as a director, capable of decomposing problems into parallelizable components, and to employ a multi-stage reinforcement learning (RL) process that optimizes both accuracy and response latency. The RL training leverages a reward function combining correctness and the longest path length, serving as a proxy for inference delay. Starting from a long CoT base model, DeepScaleR-1.5B-Preview, the approach involves supervised fine-tuning on synthetic data, followed by iterative RL to recover performance lost during initial training. Extensive experiments on benchmarks like AIME 2024 and HMMT 2025 demonstrate that DC-CoT maintains high accuracy comparable to the original models while reducing the longest path length by 35-40%, effectively speeding up inference. This significant reduction in latency opens new possibilities for deploying large models in real-time, high-stakes environments. The methodology's novelty lies in explicitly training models to recognize and execute parallel subtasks, a departure from heuristic prompt-based methods. Despite its success, challenges remain, such as computational costs and handling ambiguous tasks. Future work aims to improve training efficiency, extend to multi-modal reasoning, and enhance generalization. Overall, this work marks a substantial step toward scalable, fast, and accurate reasoning in large language models, with broad implications for AI deployment in industry and academia.

Deep Analysis

Background

Recent advances in large language models (LLMs) have demonstrated remarkable capabilities in natural language understanding and reasoning, especially with techniques like chain-of-thought (CoT) prompting. Long CoT enables models to generate detailed reasoning chains, significantly improving performance on complex tasks such as mathematical problem solving and logical inference. However, the sequential generation process inherently leads to high latency, which becomes problematic for real-time applications. Prior efforts mainly relied on heuristic prompt engineering or prompt optimization, which are limited in enabling models to autonomously identify opportunities for parallelization. Reinforcement learning (RL) has been explored to optimize reasoning strategies, but existing methods lack explicit mechanisms for subtask decomposition, especially in the context of long, complex reasoning chains. Consequently, there remains a critical need for architectures that can learn to efficiently partition reasoning processes into parallelizable components, reducing inference time without sacrificing accuracy.

Core Problem

The core challenge addressed in this paper is reducing the latency of long chain-of-thought reasoning in large language models. Traditional models generate responses sequentially, resulting in long response times that hinder deployment in real-time systems. While some tasks naturally decompose into independent subproblems, current models lack the ability to recognize and leverage this structure. The key bottleneck is the inability to balance the trade-off between maintaining high reasoning accuracy and minimizing inference latency, especially as the length of reasoning chains increases. Developing a trainable mechanism for models to autonomously identify and execute sub-tasks in parallel is essential to overcoming this bottleneck, enabling faster and more scalable reasoning systems.

Innovation

This work introduces the DC-CoT architecture, which explicitly trains models to decompose reasoning tasks into parallel subtasks. The key innovations include:

  • �� A director-worker paradigm where the model as a director identifies subtask opportunities and spawns worker modules to perform these tasks concurrently.
  • �� A multi-stage RL training process that optimizes a reward function combining correctness and the longest path length, a proxy for latency.
  • �� A rewriting strategy to convert sequential CoT responses into parallelizable formats, facilitating supervised training.
  • �� Use of the longest path length as a differentiable metric to guide RL optimization.
  • �� Empirical validation that the approach reduces latency by 35-40% while maintaining accuracy, outperforming baseline models.

This framework enables models to learn autonomous subtask decomposition, a significant departure from previous heuristic or prompt-based methods, providing a scalable solution for efficient large-scale reasoning.

Methodology

  • �� Start with a base long CoT model (DeepScaleR-1.5B-Preview), perform supervised fine-tuning (SFT) on a curated dataset to teach format following.
  • �� Generate initial sequential CoT responses for training data, then use a rewriting model to convert responses into a parallel format, preserving reasoning content.
  • �� Fine-tune the model on rewritten data to instill the ability to spawn workers and perform parallel reasoning.
  • �� Design a multi-stage RL training process:
  • �� Use correctness and path length as reward signals.
  • �� Filter data dynamically to balance accuracy and speed.
  • �� Incorporate penalties for responses exceeding a path length cutoff.
  • �� Rerun RL with different filtering strategies to avoid plateauing.
  • �� During inference, implement a two-phase process:
  • �� Initial reasoning to identify subtasks.
  • �� Parallel execution of subtasks with multiple worker modules.
  • �� Aggregation of worker outputs and further reasoning if needed.
  • �� Use attention masks and position IDs to simulate parallel and sequential stages during training, ensuring consistency with inference.

Experiments

The evaluation involved benchmarks like AIME 2024 and HMMT 2025, focusing on accuracy and response latency. The models were trained with different RL reward weights and filtering strategies, comparing the baseline DeepScaleR-1.5B-Preview with DC-CoT variants. Metrics included pass@1 accuracy and the longest path length. Ablation studies examined the impact of data filtering, RL stages, and response format. The experiments demonstrated that DC-CoT reduces the longest path length by approximately 37% on AIME 2024, with negligible accuracy loss, and achieves similar improvements on HMMT 2025. The results validate the effectiveness of the multi-stage RL approach in balancing speed and accuracy, confirming the model’s ability to identify and execute parallel subtasks efficiently.

Results

DC-CoT achieves a 37.4% reduction in longest path length on AIME 2024, with accuracy within 1% of the original long CoT model. In HMMT 2025, the latency decreases by about 40%, demonstrating practical speedups. The multi-stage RL training effectively balances accuracy and latency, outperforming baseline models trained without subtask decomposition. Additional experiments with majority voting further improve accuracy, confirming the robustness of the approach across different settings.

Applications

This architecture is suitable for real-time mathematical problem solving, logical reasoning, and decision-making systems where latency is critical. It can be integrated into AI assistants, automated tutoring, and intelligent decision support tools. The ability to identify and execute subtasks in parallel makes it highly scalable for industrial applications requiring high throughput and low response times. Future extensions could include multi-modal reasoning and broader domain adaptation, expanding its utility in complex AI systems.

Limitations & Outlook

Despite promising results, the approach depends heavily on the initial reasoning quality, which may limit performance on ambiguous or highly nested tasks. RL training incurs high computational costs, restricting accessibility. The subtask identification process may sometimes produce suboptimal partitions, affecting accuracy. Further research is needed to improve robustness, efficiency, and generalization across diverse problem types.

Plain Language Accessible to non-experts

想象你在厨房准备一顿大餐,传统的方法是每个步骤都由你一个人慢慢做,从切菜到炒菜,再到摆盘,全部串行完成。这就像模型的传统推理,慢得让人等不及。而现在,假设你有几个朋友,每个人负责一道菜,同时开始准备。你们提前商量好每个人的任务,然后同时动手,最后把所有菜合在一起。这不仅节省了时间,还能做出更丰富的菜肴。模型也是这样,它可以学会提前判断哪些步骤可以同时进行,然后让不同的“助手”同时工作,最后合成答案。这样一来,整个过程既快又高效,答案也不会差太多,就像厨房里的大厨团队一样。

ELI14 Explained like you're 14

想象你在学校做一个超级复杂的科学项目,老师让你写一篇长长的报告。以前你会一个字一个字慢慢写,花好几天时间。而现在,你的朋友们也帮你一起做,每个人负责不同的部分,然后你们同时写,最后合在一起。这样一来,整个报告很快就完成了,而且每个人都能把自己的部分做好。这就像这篇论文里的新方法,模型可以自己判断哪些步骤可以同时做,然后让不同的“助手”同时工作,最后把所有部分拼在一起。这样既快又准,就像一个高效的团队!

Abstract

Long chain-of-thought reasoning (Long CoT) is now fundamental to state-of-the-art LLMs, especially in mathematical reasoning. However, LLM generation is highly sequential, and long CoTs lead to a high latency. We propose to train Divide-and-Conquer CoT (DC-CoT) to reduce the latency. With DC-CoT, the model can act as a director that identifies distinct subtasks that can be performed in parallel in its reasoning process, and then spawns workers to execute the subtasks. Our goal is to achieve high accuracy, with a low longest path length, which is a theoretical measure of the latency needed for the response. We start with a long CoT base model (DeepScaleR-1.5B-Preview), and first use SFT with a small curated demonstration set to initialize its ability to spawn workers in a certain format. Because SFT degrades the accuracy significantly, we design a multi-stage RL algorithm, with various data filtering strategies, to recover the accuracy while decreasing the longest path length. Across several benchmarks including AIME 2024 and HMMT 2025, DC-CoT achieves similar accuracy as DeepScaleR-1.5B-Preview while decreasing longest path length by 35-40%. Our code, SFT dataset and models are publicly available at https://github.com/amahankali10/DC_CoT_RL_for_Low_Latency_CoT_with_Parallel_Reasoning.

cs.LG