AutoRound
AutoRound is an advanced quantization algorithm that delivers strong accuracy, even at 2-bit precision. It leverages sign gradient descent to fine-tune both rounding values and min-max clipping thresholds in just 200 steps. Designed for broad compatibility, it seamlessly supports a wide range of LLMs and is actively expanding to cover more VLMs as well. It also supports quantization and inference across multiple hardware platforms, including CPU, XPU, and CUDA.
AutoRound also offers a variety of useful features, including mixed-bit tuning and inference, lm-head quantization, support for exporting to formats like GPTQ/AWQ/GGUF, and flexible tuning recipes. For a comprehensive overview and the latest updates, check out the AutoRound README.
AutoRound was originally developed as part of the Intel Neural Compressor, serving as a general-purpose model compression library for deep learning. It has since evolved into a standalone library focused specifically on low-precision optimization for large language models (LLMs). AutoRound remains fully integrated with the Intel Neural Compressor, and you can explore the repository for more details.
Installation
Section titled “Installation”pip install auto-roundSupported Quantization Configurations
Section titled “Supported Quantization Configurations”AutoRound supports several quantization configurations:
- Int8 Weight Only
- Int4 Weight Only
- Int3 Weight Only
- Int2 Weight Only
- Mixed bits Weight only
Hardware Compatibility
Section titled “Hardware Compatibility”CPU, XPU, and CUDA for both quantization and inference.
Quantization and Serialization (offline)
Section titled “Quantization and Serialization (offline)”Currently, only offline mode is supported to generate quantized models.
Command Line Usage
Section titled “Command Line Usage”auto-round \ --model facebook/opt-125m \ --bits 4 \ --group_size 128 \ --output_dir ./tmp_autoroundAutoRound also offer another two recipes, auto-round-best and auto-round-light, designed for optimal accuracy and improved speed, respectively.
For 2 bits, we recommend using auto-round-best or auto-round.
AutoRound API Usage
Section titled “AutoRound API Usage”This setting offers a better trade-off between accuracy and tuning cost, and is recommended in all scenarios.
from transformers import AutoModelForCausalLM, AutoTokenizerfrom auto_round import AutoRound
model_name = "facebook/opt-125m"model = AutoModelForCausalLM.from_pretrained(model_name, dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)bits, group_size, sym = 4, 128, True# mixed bits config# layer_config = {"model.decoder.layers.6.self_attn.out_proj": {"bits": 2, "group_size": 32}}autoround = AutoRound( model, tokenizer, bits=bits, group_size=group_size, sym=sym, # enable_torch_compile=True, # layer_config=layer_config,)
output_dir = "./tmp_autoround"# format= 'auto_round'(default), 'auto_gptq', 'auto_awq'autoround.quantize_and_save(output_dir, format='auto_round')AutoRoundBest recipe
Section titled “AutoRoundBest recipe”This setting provides the best accuracy in most scenarios but is 4–5× slower than the standard AutoRound recipe. It is especially recommended for 2-bit quantization and is a good choice if sufficient resources are available.
from transformers import AutoModelForCausalLM, AutoTokenizerfrom auto_round import AutoRound
model_name = "facebook/opt-125m"model = AutoModelForCausalLM.from_pretrained(model_name, dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)bits, group_size, sym = 4, 128, Trueautoround = AutoRound( model, tokenizer, bits=bits, group_size=group_size, sym=sym, nsamples=512, iters=1000, low_gpu_mem_usage=True)
output_dir = "./tmp_autoround"autoround.quantize_and_save(output_dir, format='auto_round')AutoRoundLight recipe
Section titled “AutoRoundLight recipe”This setting offers the best speed (2 - 3X faster than AutoRound), but it may cause a significant accuracy drop for small models and 2-bit quantization. It is recommended for 4-bit settings and models larger than 3B.
from transformers import AutoModelForCausalLM, AutoTokenizerfrom auto_round import AutoRound
model_name = "facebook/opt-125m"model = AutoModelForCausalLM.from_pretrained(model_name, dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)bits, group_size, sym = 4, 128, Trueautoround = AutoRound( model, tokenizer, bits=bits, group_size=group_size, sym=sym, iters=50, lr=5e-3,)
output_dir = "./tmp_autoround"autoround.quantize_and_save(output_dir, format='auto_round')W4G128 Average Accuracy of 13 tasks (mmlu-pro, if_eval, gsm8k, etc) and Time Cost Results (Testing was conducted on the Nvidia A100 80G using the version of PyTorch 2.6.0 with enable_torch_compile):
| Model | Qwen2.5-0.5B-Instruct | Falcon3-3B | Qwen2.5-7B-Instruct | Meta-Llama-3.1-8B-Instruct | Falcon3-10B | Qwen2.5-72B-Instruct |
|---|---|---|---|---|---|---|
| 16bits | 0.4192 | 0.5203 | 0.6470 | 0.6212 | 0.6151 | 0.7229 |
| Best | 0.4137(7m) | 0.5142(23m) | 0.6426(58m) | 0.6116(65m) | 0.6092(81m) | 0.7242(575m) |
| Default | 0.4129(2m) | 0.5133(6m) | 0.6441(13m) | 0.6106(13m) | 0.6080(18m) | 0.7252(118m) |
| Light | 0.4052(2m) | 0.5108(3m) | 0.6453(5m) | 0.6104(6m) | 0.6063(6m) | 0.7243(37m) |
Inference
Section titled “Inference”AutoRound automatically selects the best available backend based on the installed libraries and prompts the user to install additional libraries when a better backend is found.
Supports 2, 4, and 8 bits. We recommend using intel-extension-for-pytorch (IPEX) for 4 bits inference.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "OPEA/Qwen2.5-1.5B-Instruct-int4-sym-inc"model = AutoModelForCausalLM.from_pretrained(model_name, device_map="cpu", dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)text = "There is a girl who likes adventure,"inputs = tokenizer(text, return_tensors="pt").to(model.device)print(tokenizer.decode(model.generate(**inputs, max_new_tokens=50, do_sample=False)[0]))Supports 4 bits only. We recommend using intel-extension-for-pytorch (IPEX) for inference.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "OPEA/Qwen2.5-1.5B-Instruct-int4-sym-inc"model = AutoModelForCausalLM.from_pretrained(model_name, device_map="xpu", dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)text = "There is a girl who likes adventure,"inputs = tokenizer(text, return_tensors="pt").to(model.device)print(tokenizer.decode(model.generate(**inputs, max_new_tokens=50, do_sample=False)[0]))Supports 2, 3, 4, and 8 bits. We recommend using GPTQModel for 4 and 8 bits inference.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "OPEA/Qwen2.5-1.5B-Instruct-int4-sym-inc"model = AutoModelForCausalLM.from_pretrained(model_name, device_map="cuda", dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)text = "There is a girl who likes adventure,"inputs = tokenizer(text, return_tensors="pt").to(model.device)print(tokenizer.decode(model.generate(**inputs, max_new_tokens=50, do_sample=False)[0]))Specify Inference Backend
Section titled “Specify Inference Backend”AutoRound automatically selects the backend for each layer based on compatibility. In general, the priority order is Marlin > ExLLaMAV2 > Triton, but the final choice depends on factors such as group size, bit width, packing format, hardware device, and other implementation details. For more details, please refer to backends,
The backend may not always be the most suitable for certain devices. You can specify your preferred backend such as “ipex” for CPU, “ipex/triton” for XPU, “marlin/exllamav2/triton” for CUDA, according to your needs or hardware compatibility. Please note that additional corresponding libraries may be required.
from transformers import AutoModelForCausalLM, AutoTokenizer, AutoRoundConfig
model_name = "OPEA/Qwen2.5-1.5B-Instruct-int4-sym-inc"quantization_config = AutoRoundConfig(backend="ipex")model = AutoModelForCausalLM.from_pretrained(model_name, device_map="cpu", quantization_config=quantization_config, dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)text = "There is a girl who likes adventure,"inputs = tokenizer(text, return_tensors="pt").to(model.device)print(tokenizer.decode(model.generate(**inputs, max_new_tokens=50, do_sample=False)[0]))Convert GPTQ/AWQ to AutoRound
Section titled “Convert GPTQ/AWQ to AutoRound”Most GPTQ/AWQ models can be converted to the AutoRound format for better compatibility and support with Intel devices. Please note that the quantization config will be changed if the model is serialized.
from transformers import AutoModelForCausalLM, AutoTokenizer, AutoRoundConfig
model_name = "ybelkada/opt-125m-gptq-4bit"quantization_config = AutoRoundConfig()model = AutoModelForCausalLM.from_pretrained(model_name, device_map="cpu", quantization_config=quantization_config, dtype="auto")tokenizer = AutoTokenizer.from_pretrained(model_name)text = "There is a girl who likes adventure,"inputs = tokenizer(text, return_tensors="pt").to(model.device)print(tokenizer.decode(model.generate(**inputs, max_new_tokens=50, do_sample=False)[0]))Issues
Section titled “Issues”If you encounter any issues with the transformers integration, please open an issue on
the transformers repository.
If you encounter any issues with auto-round, please open an issue on
the AutoRound repository.
Acknowledgement
Section titled “Acknowledgement”Special thanks to open-source low precision libraries such as AutoGPTQ, AutoAWQ, GPTQModel, Triton, Marlin, and ExLLaMAV2 for providing low-precision CUDA kernels, which are leveraged in AutoRound.
Contribution
Section titled “Contribution”Contributions to AutoRound are welcome and greatly appreciated! Whether it’s fixing bugs, improving documentation, adding new features, or suggesting improvements, your help is always valued.