← Latest papers
🤖 AI

Parason: Revealing Subtask and Trial Parallelism in LLM Reasoning

The paper introduces Parason, a framework that significantly accelerates LLM reasoning by identifying and leveraging both subtask and trial parallelism through a structured grammar and a specialized training algorithm, achieving approximately 1.7x speedup on complex mathematical benchmarks while maintaining accuracy.

Original authors: Zhengyang Zhang, Zijian Zhang, Jiaxuan Gao, Shusheng Xu, Yi Wu, Song Han, Ligeng Zhu

Published 2026-08-26
📖 5 min read🧠 Deep dive

Original authors: Zhengyang Zhang, Zijian Zhang, Jiaxuan Gao, Shusheng Xu, Yi Wu, Song Han, Ligeng Zhu

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Large language models have become remarkably skilled at solving complex problems, from cracking difficult math puzzles to writing sophisticated code. This ability often comes from a simple strategy: letting the model think for a longer time. By generating a long, step-by-step chain of thoughts before giving an answer, these systems can navigate tricky logic and avoid simple mistakes. However, this approach has a significant physical limitation. The standard way these models work is like a single person reading a book one word at a time, strictly in order. Every thought must wait for the previous one to finish. When a problem is extremely hard, the chain of thoughts can stretch to hundreds of thousands of words, meaning the user might wait minutes, hours, or even days for a single answer. This delay makes it impractical for real-time tools like coding assistants or interactive tutors, where speed matters as much as accuracy.

Researchers have long suspected that the answer lies in parallel thinking. Instead of one long line of thought, imagine a team of experts working on different parts of a problem at the same time. Some existing systems have tried to do this by breaking a big task into smaller, independent pieces, solving each piece separately, and then combining the results. While helpful, this method misses a crucial part of how intelligent reasoning actually works. When facing a truly difficult problem, a smart thinker does not just break the problem down; they also try out different ideas, see which ones fail, and keep the ones that work. They explore multiple paths simultaneously, discarding the dead ends and following the promising ones. This paper introduces a new system called Parason that teaches language models to do exactly this, turning the slow, single-file process of thinking into a fast, multi-lane highway.

The researchers began by analyzing thousands of reasoning traces from advanced models to see exactly how they think. They discovered that the thinking process is not just a single line of steps, but a mix of two very different types of activity. The first type is like a construction crew dividing a building project: one team lays the foundation, another frames the walls, and a third installs the roof. All these tasks are necessary, and they can be done at the same time. The researchers call this subtask parallelism. The second type is more like a detective testing several theories at once. The detective tries one suspect, realizes it doesn't fit, and immediately tries another, while a colleague checks a third possibility. Only one of these paths needs to be correct to solve the case, but the detective must explore them all to find the right one. The researchers call this trial parallelism.

What they found was surprising. In the hardest problems, the "detective" style of thinking—trying many different ideas and discarding the failures—makes up the majority of the work. In fact, for some of the most advanced models, this trial-based exploration accounts for more than two-thirds of the reasoning steps. Previous systems that only focused on breaking tasks into smaller pieces were essentially ignoring the most common way these models solve hard problems. They were optimizing for the construction crew while the real work was being done by the detectives.

To fix this, the team built a framework that teaches models to recognize when to split a task and when to try multiple ideas at once. They created a special set of rules, like a structured language, that allows the model to say, "Here are three different ways to solve this, and I will try them all at the same time." The system then runs these different attempts in parallel, collecting the results. If one attempt fails, the model simply moves on to the next one without having to wait for the failed attempt to finish before starting the next. This is a significant shift from the old way, where the model would have to finish one idea, realize it was wrong, and then start the next one, one after another.

The training process used a reward system that encouraged the model to be both correct and fast. The model was praised not just for getting the right answer, but for organizing its thoughts in a way that allowed the computer to do the work faster. By running these parallel branches simultaneously, the system effectively reduced the time it took to reach a conclusion. In tests on difficult math competitions, the new system achieved an average speedup of about 1.7 times compared to the standard sequential approach, while maintaining the same high level of accuracy. This means a problem that might have taken ten minutes to solve now takes roughly six minutes, without sacrificing the quality of the solution.

The researchers also observed that the harder the problem, the more this parallel approach helped. On the most difficult questions, the amount of work saved was the greatest. This is because hard problems naturally generate more dead ends and require more exploration of different possibilities. By allowing the model to explore these possibilities side-by-side rather than one after another, the system turns what was once a long, slow wait into a much more efficient process. The study suggests that the future of artificial intelligence reasoning is not just about thinking longer, but about thinking in many directions at once, mimicking the way human experts tackle the world's most complex challenges.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →