LGPFJan 31, 2021

A Runtime-Based Computational Performance Predictor for Deep Neural Network Training

arXiv:2102.00527v288 citationsHas Code
AI Analysis

This helps deep learning practitioners optimize GPU choices for training efficiency and cost, though it is an incremental improvement over existing performance prediction methods.

The paper tackles the problem of selecting cost-efficient GPUs for deep neural network training by developing a runtime-based performance predictor that estimates iteration execution times across different GPUs, achieving an average error of 11.8% on models like ResNet-50 and Transformer.

Deep learning researchers and practitioners usually leverage GPUs to help train their deep neural networks (DNNs) faster. However, choosing which GPU to use is challenging both because (i) there are many options, and (ii) users grapple with competing concerns: maximizing compute performance while minimizing costs. In this work, we present a new practical technique to help users make informed and cost-efficient GPU selections: make performance predictions with the help of a GPU that the user already has. Our technique exploits the observation that, because DNN training consists of repetitive compute steps, predicting the execution time of a single iteration is usually enough to characterize the performance of an entire training process. We make predictions by scaling the execution time of each operation in a training iteration from one GPU to another using either (i) wave scaling, a technique based on a GPU's execution model, or (ii) pre-trained multilayer perceptrons. We implement our technique into a Python library called Habitat and find that it makes accurate iteration execution time predictions (with an average error of 11.8%) on ResNet-50, Inception v3, the Transformer, GNMT, and DCGAN across six different GPU architectures. Habitat supports PyTorch, is easy to use, and is open source.

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