Programming AMD XDNA NPUs with Open-source Compiler Tools: A FlashAttention Case Study

📅 2026-09-17
📈 Citations: 0
Influential: 0
📄 PDF
🤖 AI Summary
研究通过比较四种设计在AMD XDNA NPU上的表现,采用开源工具IRON和MLIR-AIR优化FlashAttention的执行效率与能耗比。
📝 Abstract
Spatial NPUs such as AMD XDNA place compute tiles beside small local memories and leave data movement between them to software. Mapping a multi-stage workload onto such a device is largely a question of where the intermediate tensors live. We report what we learned making those choices for FlashAttention with the open-source IRON and MLIR-AIR flows. We compare four reference designs on XDNA 1 and XDNA 2: one runs each operator separately, two stream between operators on chip, and one fuses all three attention stages into a single kernel. The fused kernel holds the $\boldsymbol{QK}^{\mathsf T}$ scores in compute-tile local memory and reduces partial results over the cascade interconnect, so the scores never return to shared MemTile memory. On XDNA 2, it reaches 3.62 TFLOP/s over complete end-to-end execution, twice the IRON design, with 5.3 to 7.2 times the energy efficiency of the integrated GPU on the same chip at 2K tokens and above. It covers twelve LLM configurations, from BERT to DeepSeek, up to 128K tokens. Roofline analysis at each memory level explains this result and shows when to stop. XDNA 1 has lower ridge points, so streaming on chip already reaches the compute-bound regime: the same fusion that doubles throughput on XDNA 2 is nearly wasted on XDNA 1. Comparing a mapping's operational intensity against each level's ridge point predicts which case applies before writing any code. Fuse until the mapping clears that ridge point, then stop. We release the reference designs as maintained open source.
Problem

Research questions and friction points this paper is trying to address.

AMD XDNA NPU
FlashAttention
multi-stage workload
intermediate tensors
energy efficiency
Innovation

Methods, ideas, or system contributions that make the work stand out.

Fused Kernel
Compute-bound Regime
Operational Intensity
Roofline Analysis
Open-source Reference Designs
🔎 Similar Papers
No similar papers found.