🤖 AI Summary
This work addresses the dilemma in multi-tenant LoRA serving, where high-rank adapters incur substantial memory and PCIe overhead, while ultra-low-rank adapters (e.g., rank ≤2) suffer from insufficient accuracy. To resolve this, the authors propose SALT, a novel framework that introduces subspace alignment regularization to jointly train a shared domain-centric adapter, followed by fine-tuning ultra-low-rank task-specific residual adapters on private data. During inference, the domain-centric adapter remains fixed while residual adapters are dynamically loaded, leveraging a GPU VRAM-resident and PCIe-swapping mechanism integrated with the vLLM engine. Evaluated on Llama-3.2-3B, SALT achieves up to an 18.5% accuracy gain over state-of-the-art compression methods, reduces per-adapter memory footprint by 16×, and improves throughput by 51% under PCIe constraints and by 28% under VRAM limitations.
📝 Abstract
Modern multi-tenant Low-Rank Adapters (LoRAs) serving systems concurrently host tens to hundreds of LoRA adapters. Though powerful, this introduces a critical system dilemma between serving efficiency and task performance: higher-rank adapters generally achieve better downstream task performance, but their GPU VRAM footprint and Host-to-Device PCIe swapping overhead severely constrain scalability. Conversely, ultra-low-rank adapters ($r \le 2$) minimize both VRAM footprint and PCIe transfer overhead, but suffer from downstream task performance degradation. To solve this problem, we propose Subspace-Aligned LoRA Training (SALT), a serving efficiency-aware hierarchical fine-tuning framework. Our solution operates in three phases. First, a provider jointly trains high-capacity domain centroids on public data within the domain using a novel alignment regularizer that coheres in-domain task subspaces into a unified basis. Next, users fine-tune ultra-low-rank task residual adapters on private data atop those frozen centroids. Finally, during inference, the provider pins the centroid in GPU VRAM and dynamically swaps in each user's task residual on demand. Across LLMs of varying scales, SALT recovers high-rank accuracy using $r \le 2$ residuals, achieving up to 18.5% absolute accuracy gains over state-of-the-art compression baselines and reducing per-adapter memory by up to 16x. When integrated into vLLM, SALT improves serving throughput by up to 51% under PCIe bandwidth pressure and 28% under GPU VRAM constraints for Llama-3.2-3B.