LGAIFeb 11, 2022

Learning from distinctive candidates to optimize reduced-precision convolution program on tensor cores

arXiv:2202.06819v2
Originality Incremental advance
AI Analysis

This work addresses performance optimization for deep learning practitioners using GPUs, but it is incremental as it builds on existing scheduling techniques for hardware-specific bottlenecks.

The paper tackles the challenge of optimizing reduced-precision convolution on GPU Tensor Cores by proposing an automatic scheduling method that explores thread tile and warp sizes to increase data reuse and reduce overhead, resulting in substantial speedup compared to state-of-the-art methods with shortened search time.

Convolution is one of the fundamental operations of deep neural networks with demanding matrix computation. In a graphic processing unit (GPU), Tensor Core is a specialized matrix processing hardware equipped with reduced-precision matrix-multiply-accumulate (MMA) instructions to increase throughput. However, it is challenging to achieve optimal performance since the best scheduling of MMA instructions varies for different convolution sizes. In particular, reduced-precision MMA requires many elements grouped as a matrix operand, seriously limiting data reuse and imposing packing and layout overhead on the schedule. This work proposes an automatic scheduling method of reduced-precision MMA for convolution operation. In this method, we devise a search space that explores the thread tile and warp sizes to increase the data reuse despite a large matrix operand of reduced-precision MMA. The search space also includes options of register-level packing and layout optimization to lesson overhead of handling reduced-precision data. Finally, we propose a search algorithm to find the best schedule by learning from the distinctive candidates. This reduced-precision MMA optimization method is evaluated on convolution operations of popular neural networks to demonstrate substantial speedup on Tensor Core compared to the state of the arts with shortened search time.

Foundations

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

Your Notes