Search papers, labs, and topics across Lattice.
This study addresses the gap between functional correctness and runtime efficiency in LLM-based code translation, revealing that LLM-translated programs often underperform compared to human-written code. The authors introduce SwiftTrans, a two-stage framework that employs Multi-Perspective Exploration for generating diverse translation candidates and Difference-Aware Selection for optimal candidate identification. Experimental results demonstrate that SwiftTrans significantly enhances both the correctness and runtime efficiency of translated programs across multiple benchmarks, including a newly introduced benchmark, SwiftBench.
LLM-translated code can be slower than human-written code, but SwiftTrans bridges this gap with a novel two-stage framework that boosts both correctness and efficiency.
While large language models (LLMs) have greatly advanced the functional correctness of automated code translation systems, the runtime efficiency of translated programs has received comparatively little attention. With the waning of Moore's law, runtime efficiency has become increasingly important for program quality, alongside functional correctness. Our preliminary study reveals that LLM-translated programs often run slower than human-written ones, and this issue cannot be remedied through prompt engineering alone. Therefore, our work proposes SwiftTrans, a code translation framework comprising two key stages: (1) Multi-Perspective Exploration, where MpTranslator leverages parallel in-context learning (ICL) to generate diverse translation candidates; and (2) Difference-Aware Selection, where DiffSelector identifies the optimal candidate by explicitly comparing differences between translations. We further introduce Hierarchical Guidance for MpTranslator and Ordinal Guidance for DiffSelector, enabling LLMs to better adapt to these two core components. To support the evaluation of runtime efficiency in translated programs, we extend existing benchmarks, CodeNet and F2SBench, and introduce a new benchmark, SwiftBench. Experimental results across all three benchmarks show that SwiftTrans achieves consistent improvements in both correctness and runtime efficiency.