Inference acceleration for large language models using "stairs" assisted greedy generation
Domas Grigaliūnas, Mantas Lukoševičius
TL;DR
The paper addresses the high inference latency of billion-parameter LLMs by introducing stairs-assisted greedy generation, which leverages a small assistant model to generate a batch of candidate tokens and a stairs-based validation to prune outputs, effectively reducing main-model iterations. This hybrid approach aims to preserve accuracy while lowering latency. Experiments on T5-large and T5-3B show substantial inference-time reductions of $17.24\%$ and $9.58\%$, respectively, with BLEU scores staying in the $75$–$100$ range, outperforming a baseline and, in some cases, the HuggingFace-assisted method. The findings suggest that adjusting the assistant-batch size can yield up to ~2x improvements in throughput, offering a practical deployment strategy and motivating future work on more prompts, tasks, and architectures.
Abstract
Large Language Models (LLMs) with billions of parameters are known for their impressive predicting capabilities but require lots of resources to run. With their massive rise in popularity, even a small reduction in required resources could have an impact on environment. On the other hand, smaller models require fewer resources but may sacrifice accuracy. In this work, we are proposing an implementation of ``stairs'' assisted greedy generation. It is a modified assisted generation methodology that makes use of a smaller model's fast generation, large model's batch prediction, and "stairs" validation in order to achieve a speed up in prediction generation. Results show between 9.58 and 17.24 percent inference time reduction compared to a stand-alone large LLM prediction in a text generation task without a loss in accuracy.
