SEAIPFAug 1, 2025

Interpreting Performance Profiles with Deep Learning

arXiv:2508.02729v1h-index: 2
Originality Synthesis-oriented
AI Analysis

This addresses the problem for software engineers who struggle to associate performance inefficiencies with program semantics, especially when not the code authors, though it is incremental as it builds on existing profilers and models.

The paper tackles the challenge of interpreting complex performance profiles by combining them with program semantics using deep learning, specifically integrating Async Profiler with a fine-tuned CodeBERT model to provide code summaries in a GUI, effectively assisting analysis on Java benchmarks.

Profiling tools (also known as profilers) play an important role in understanding program performance at runtime, such as hotspots, bottlenecks, and inefficiencies. While profilers have been proven to be useful, they give extra burden to software engineers. Software engineers, as the users, are responsible to interpret the complex performance data and identify actionable optimization in program source code. However, it can be challenging for users to associate inefficiencies with the program semantics, especially if the users are not the authors of the code, which limits the applicability of profilers. In this thesis, we explore a new direction to combine performance profiles and program semantics with a deep learning approach. The key idea is to glean code summary for semantic information (at a certain level) and integrate it into a profiler, which can better understand program inefficiencies for actionable optimization. To be concrete, we combine profiles generated by Async Profiler (the state-of-the-art Java profiler) with code summarization from a fine-tuned CodeBERT-based model. We demonstrate the code summaries of any selected call path in a graphic user interface. Our system can effectively assist analysis on many Java benchmarks.

Foundations

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

Your Notes