GFormer: Accelerating Large Language Models with Optimized Transformers on Gaudi Processors
Chengming Zhang, Xinheng Ding, Baixi Sun, Xiaodong Yu, Weijian Zheng, Zhen Xie, Dingwen Tao
TL;DR
Transformers on Gaudi face Softmax and heterogeneous-hardware inefficiencies. GFormer addresses this by integrating sparse windowed attention on TPC and a linear attention path mapped to the MME, coupled with an optimized outer-product kernel on the TPC; the partition algorithm balances workloads via a tau-based head split to equalize MME and TPC runtimes, all while preserving accuracy. Key contributions include the windowed Sparse Attention kernel, the efficient Outer Product kernel for causal linear attention, and the Optimal Partition Algorithm, with experimental results showing up to 2× speedups on GPT and ViT benchmarks and competitive accuracy relative to baselines. The work demonstrates hardware-aware acceleration on Gaudi for large-scale Transformer inference, offering practical gains for real-world LLM and vision tasks.
Abstract
Heterogeneous hardware like Gaudi processor has been developed to enhance computations, especially matrix operations for Transformer-based large language models (LLMs) for generative AI tasks. However, our analysis indicates that Transformers are not fully optimized on such emerging hardware, primarily due to inadequate optimizations in non-matrix computational kernels like Softmax and in heterogeneous resource utilization, particularly when processing long sequences. To address these issues, we propose an integrated approach (called GFormer) that merges sparse and linear attention mechanisms. GFormer aims to maximize the computational capabilities of the Gaudi processor's Matrix Multiplication Engine (MME) and Tensor Processing Cores (TPC) without compromising model quality. GFormer includes a windowed self-attention kernel and an efficient outer product kernel for causal linear attention, aiming to optimize LLM inference on Gaudi processors. Evaluation shows that GFormer significantly improves efficiency and model performance across various tasks on the Gaudi processor and outperforms state-of-the-art GPUs.
