Small Language Models as Compiler Experts: Auto-Parallelization for Heterogeneous Systems
Prathamesh Devadiga
TL;DR
This work investigates whether small, efficient LLMs can drive auto-parallelization for heterogeneous systems, addressing the limitations of brittle traditional heuristics. By a three-stage pipeline and six prompting strategies, the authors demonstrate that ~1B-parameter models can produce safe, effective parallelizations validated by static analysis and sanitizers. Across 11 kernels and 376 tests, the LLM-driven approach achieves an average speedup of 6.81x and a peak of 43.25x on convolutions, frequently outperforming or matching strong baselines like Polly, GCC, TVM, and Triton. The study highlights scalability and correctness advantages, while acknowledging latency and correctness-room for improvement, and suggests future work on latency reduction, broader hardware support, and multi-language targets.
Abstract
Traditional auto-parallelizing compilers, reliant on rigid heuristics, struggle with the complexity of modern heterogeneous systems. This paper presents a comprehensive evaluation of small (approximately 1B parameter) language-model-driven compiler auto-parallelization. We evaluate three models: gemma3, llama3.2, and qwen2.5, using six reasoning strategies across 11 real-world kernels drawn from scientific computing, graph algorithms, and machine learning. Our system is benchmarked against strong compiler baselines, including LLVM Polly, TVM, and Triton. Across 376 total evaluations, the proposed approach achieves an average speedup of 6.81x and a peak performance of 43.25x on convolution operations. We analyze scalability, verify correctness using multiple sanitizers, and confirm robustness across diverse compilers and hardware platforms. Our results demonstrate that small, efficient language models can serve as powerful reasoning engines for complex compiler optimization tasks.
