Inference Optimization of Foundation Models on AI Accelerators
Youngsuk Park, Kailash Budhathoki, Liangfu Chen, Jonas Kübler, Jiaji Huang, Matthäus Kleindessner, Jun Huan, Volkan Cevher, Yida Wang, George Karypis
TL;DR
This work surveys inference optimization techniques for foundation models on AI accelerators, addressing the memory-bound nature of decoder-only, autoregressive generation and the resulting latency and cost challenges. It catalogs system-level optimizations (KV-cache, FlashAttention, continuous batching), structured Transformer architectures (MQA/GQA, MoE, SWT) and model compression (quantization, pruning, distillation), as well as fast decoding methods (speculative decoding) and distributed strategies (tensor/pipeline/sequence/expert parallelism). The contributions include a detailed taxonomy of techniques, hardware considerations, and practical trade-offs between latency, throughput, and accuracy to guide deployment at scale. The findings highlight that combining memory-efficient attention, architecture-aware designs, and lightweight decoding can substantially reduce inference costs while maintaining satisfactory performance, though extreme long-context and cross-device deployments remain open challenges.
Abstract
Powerful foundation models, including large language models (LLMs), with Transformer architectures have ushered in a new era of Generative AI across various industries. Industry and research community have witnessed a large number of new applications, based on those foundation models. Such applications include question and answer, customer services, image and video generation, and code completions, among others. However, as the number of model parameters reaches to hundreds of billions, their deployment incurs prohibitive inference costs and high latency in real-world scenarios. As a result, the demand for cost-effective and fast inference using AI accelerators is ever more higher. To this end, our tutorial offers a comprehensive discussion on complementary inference optimization techniques using AI accelerators. Beginning with an overview of basic Transformer architectures and deep learning system frameworks, we deep dive into system optimization techniques for fast and memory-efficient attention computations and discuss how they can be implemented efficiently on AI accelerators. Next, we describe architectural elements that are key for fast transformer inference. Finally, we examine various model compression and fast decoding strategies in the same context.
