SEAIPFJun 27, 2022

DeepPERF: A Deep Learning-Based Approach For Improving Software Performance

BaiduMicrosoftTencent
arXiv:2206.13619v112 citationsh-index: 38Has Code
Originality Incremental advance
AI Analysis

This addresses the challenge of manual performance optimization for C# developers by automating patch generation, though it is incremental as it builds on existing deep learning methods.

The paper tackles automating performance improvements in C# software by introducing DeepPERF, a transformer-based model that suggests patches, achieving ~53% accuracy in matching developer fixes and getting ~34% verbatim in expert-verified data, with 11 out of 19 submitted pull-requests approved.

Improving software performance is an important yet challenging part of the software development cycle. Today, the majority of performance inefficiencies are identified and patched by performance experts. Recent advancements in deep learning approaches and the wide-spread availability of open source data creates a great opportunity to automate the identification and patching of performance problems. In this paper, we present DeepPERF, a transformer-based approach to suggest performance improvements for C# applications. We pretrain DeepPERF on English and Source code corpora and followed by finetuning for the task of generating performance improvement patches for C# applications. Our evaluation shows that our model can generate the same performance improvement suggestion as the developer fix in ~53% of the cases, getting ~34% of them verbatim in our expert-verified dataset of performance changes made by C# developers. Additionally, we evaluate DeepPERF on 50 open source C# repositories on GitHub using both benchmark and unit tests and find that our model is able to suggest valid performance improvements that can improve both CPU usage and Memory allocations. So far we've submitted 19 pull-requests with 28 different performance optimizations and 11 of these PRs have been approved by the project owners.

Foundations

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

Your Notes