LiteStage: Latency-aware Layer Skipping for Multi-stage Reasoning
Beomseok Kang, Jiwon Song, Jae-Joon Kim
TL;DR
LiteStage addresses the latency of multi-stage reasoning in small LLMs by combining a stage-aware offline layer-budget search with online confidence-based generation early exit. It estimates sub-layer importance via cosine similarity, then greedily allocates skipped layers from the slowest to the fastest stage, ensuring accuracy remains within a threshold. An online module terminates decoding early when token confidence decays, reducing extra generation tokens. Across OBQA, CSQA, and StrategyQA, LiteStage delivers up to 1.70x speedup with minimal accuracy loss, outperforming prior training-free methods and demonstrating the value of stage-aware efficiency in reasoning tasks.
Abstract
Multi-stage reasoning has emerged as an effective strategy for enhancing the reasoning capability of small language models by decomposing complex problems into sequential sub-stages. However, this comes at the cost of increased latency. We observe that existing adaptive acceleration techniques, such as layer skipping, struggle to balance efficiency and accuracy in this setting due to two key challenges: (1) stage-wise variation in skip sensitivity, and (2) the generation of redundant output tokens. To address these, we propose LiteStage, a latency-aware layer skipping framework for multi-stage reasoning. LiteStage combines a stage-wise offline search that allocates optimal layer budgets with an online confidence-based generation early exit to suppress unnecessary decoding. Experiments on three benchmarks, e.g., OBQA, CSQA, and StrategyQA, show that LiteStage achieves up to 1.70x speedup with less than 4.0% accuracy loss, outperforming prior training-free layer skipping methods.
