LGAICLApr 1, 2024

Prompt-prompted Adaptive Structured Pruning for Efficient LLM Generation

arXiv:2404.01365v321 citationsh-index: 7Has Code
Originality Incremental advance
AI Analysis

This addresses the problem of inefficient LLM deployment for users needing faster inference with minimal performance loss, though it is incremental as it builds on existing pruning and sparsity techniques.

The paper tackles the high computational cost of deploying large language models (LLMs) by introducing GRIFFIN, a training-free and calibration-free method that selects unique feedforward experts at the sequence level, achieving performance with little degradation while improving latency, e.g., 1.29× speed-up in Gemma 7B and 1.25× in Llama 2 13B with 50% of parameters.

With the development of transformer-based large language models (LLMs), they have been applied to many fields due to their remarkable utility, but this comes at a considerable computational cost at deployment. Fortunately, some methods such as pruning or constructing a mixture of experts (MoE) aim at exploiting sparsity in transformer feedforward (FF) blocks to gain boosts in speed and reduction in memory requirements. However, these techniques can be very costly and inflexible in practice, as they often require training or are restricted to specific types of architectures. To address this, we introduce GRIFFIN, a novel training-free and calibration-free method that selects unique FF experts at the sequence level for efficient generation across a plethora of LLMs with different non-ReLU activation functions. This is possible due to a critical observation that many trained LLMs naturally produce highly structured FF activation patterns within a sequence, which we call flocking. Despite our method's simplicity, we show with 50% of the FF parameters, GRIFFIN maintains the original model's performance with little to no degradation on a variety of classification and generation tasks, all while improving latency (e.g. 1.29$\times$ and 1.25$\times$ speed-ups in Gemma 7B and Llama 2 13B, respectively, on an NVIDIA L40). Code is available at https://github.com/hdong920/GRIFFIN.

Code Implementations1 repo
Foundations

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

Your Notes