CLMSOct 12, 2021

LightSeq2: Accelerated Training for Transformer-based Models on GPUs

arXiv:2110.05722v338 citations
Originality Incremental advance
AI Analysis

This addresses the high computational cost of training Transformers for AI practitioners, offering a significant but incremental improvement over existing systems.

The paper tackles the problem of expensive GPU training for Transformer-based models by presenting LightSeq2, a system that accelerates training for a general family of Transformer architectures, achieving speedups of 1.4-3.5x and a 308% speedup on a large machine translation benchmark.

Transformer-based neural models are used in many AI applications. Training these models is expensive, as it takes huge GPU resources and long duration. It is challenging because typical data like sentences have variable lengths, and Transformer's computation patterns are more complex than convolutional neural networks. Existing systems either only focus on model inference or optimization for only BERT-like encoder models. In this paper, we present LightSeq2, a system to accelerate training for a general family of Transformer models on GPUs. We propose a series of GPU optimization techniques tailored to the specific computation flow and memory access patterns of Transformer models. LightSeq2 supports many model architectures, including BERT (encoder-only), GPT (decoder-only), Transformer (encoder-decoder), and vision Transformer. Our experiments for a variety of models and benchmarks show that LightSeq2 is consistently faster (1.4-3.5x) than previous systems on different GPUs. In particular, it gains 308% training speedup compared with existing systems on a large public machine translation benchmark (WMT14 English-German).

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes