LGARMar 11, 2022

DNN Training Acceleration via Exploring GPGPU Friendly Sparsity

arXiv:2203.05705v13 citationsh-index: 20
Originality Incremental advance
AI Analysis

This work addresses the high computational cost of DNN training for AI practitioners by introducing incremental optimizations that enhance efficiency without major accuracy trade-offs.

The paper tackles the problem of accelerating DNN training by exploiting sparsity in a GPGPU-friendly manner, proposing methods like Approximate Random Dropout and sensitivity-aware dropout, which achieve significant performance improvements (e.g., up to 2.5x speedup) while maintaining accuracy within 1% loss on models like MLP, LSTM, and CNN.

The training phases of Deep neural network~(DNN) consumes enormous processing time and energy. Compression techniques utilizing the sparsity of DNNs can effectively accelerate the inference phase of DNNs. However, it is hardly used in the training phase because the training phase involves dense matrix-multiplication using General-Purpose Computation on Graphics Processors (GPGPU), which endorse the regular and structural data layout. In this paper, we first propose the Approximate Random Dropout that replaces the conventional random dropout of neurons and synapses with a regular and online generated row-based or tile-based dropout patterns to eliminate the unnecessary computation and data access for the multilayer perceptron~(MLP) and long short-term memory~(LSTM). We then develop a SGD-based Search Algorithm that produces the distribution of row-based or tile-based dropout patterns to compensate for the potential accuracy loss. Moreover, aiming at the convolution neural network~(CNN) training acceleration, we first explore the importance and sensitivity of input feature maps; and then propose the sensitivity-aware dropout method to dynamically drop the input feature maps based on their sensitivity so as to achieve greater forward and backward training acceleration while reserving better NN accuracy. To facilitate DNN programming, we build a DNN training computation framework that unifies the proposed techniques in the software stack. As a result, the GPGPU only needs to support the basic operator -- matrix multiplication and can achieve significant performance improvement regardless of DNN model.

Foundations

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

Your Notes