paper-with-me

홈 › Papers

SNIP: An Adaptive Mixed Precision Framework for Subbyte Large Language Model Training

2026-02-01 · Yunjie Pan, Yongyi Yang, Hanmei Yang, Scott Mahlke arxiv

Training large language models (LLMs) efficiently while preserving model quality poses significant challenges, particularly with subbyte precision supported by state-of-the-art GPUs. Current mixed-precision training approaches either apply uniform precision to all GEMM operations or rely on heuristic-based methods that fail to generalize during training, leading to suboptimal convergence and instability. To address these challenges, this paper introduces SNIP, a fine-grained adaptive mixed-precision training framework for LLM pretraining that supports subbyte precision. SNIP periodically collects statistics on activations, gradients, and optimizer states to assess the precision loss impact on model quality. We define two key metrics: loss divergence in the forward pass, caused by quantization-induced increases in training loss, and weight divergence in the backward pass, which measures error propagation through gradients affecting model updates. These metrics guide an Integer Linear Programming (ILP) problem that systematically optimizes layerwise precision to minimize overall quality loss while meeting efficiency targets. Experiments on 1B, 3B, 7B and 70B Llama-like models demonstrate that SNIP consistently outperforms existing baselines, reducing FLOPs by up to 80% while preserving model quality across different model sizes and training phases with minimal computational overhead.

📄 PDF Abstract BibTeX arXiv:2602.01410

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

ContextSniper: AntTrail's Token-Efficient Code Memory for Repository-Level Program Repair

2026-07-02 · Chiwang Luk, Matin Mohammad Najafi, Zhifeng Jia, Wei Yang 외 arxiv

Large language model agents can repair real repository issues, but they often spend large context budgets on whole-file reads, broad searches, and long terminal outputs where useful evidence is mixed with irrelevant code…

Program Repair

Adaptive quantization with mixed-precision based on low-cost proxy

2024-02-27 · Junzhe Chen, Qiao Yang, Senmao Tian, Shunli Zhang

It is critical to deploy complicated neural network models on hardware with limited resources. This paper proposes a novel model quantization method, named the Low-Cost Proxy-Based Adaptive Mixed-Precision Model Quantiza…

Neural Architecture SearchQuantization

Tri-Accel: Curvature-Aware Precision-Adaptive and Memory-Elastic Optimization for Efficient GPU Usage

2025-08-23 · Mohsen Sheibanian, Pouya Shaeri, Alimohammad Beigi, Ryan T. Woo 외 arxiv

Deep neural networks are increasingly bottlenecked by the cost of optimization, both in terms of GPU memory and compute time. Existing acceleration techniques, such as mixed precision, second-order methods, and batch siz…

MixFrag: Fragility-Guided Mixed-Precision Post-Training Quantization for Vision Transformers

2026-07-30 · Md. Mehrab Hossain Opi, Robiul Islam Ryad, Md. Umar Faruk arxiv

Post-training quantization (PTQ) has emerged as an effective solution for deploying Vision Transformers (ViTs) on resource-constrained devices. However, existing PTQ methods typically employ uniform bit-widths across tra…

Instance SegmentationObject Detection

MixQuant: Adaptive Mixed-Precision Quantization for Large Language Models

2026-07-25 · Ashitabh Misra, Madhav Agrawal, Arham Jain, Tarek Abdelzaher arxiv

Mixed-precision quantization improves the accuracy of post-training quantization by allocating higher bitwidths to sensitive layers, but existing methods solve the allocation for a single fixed memory budget. In practice…