Some checks failed
Self-hosted runner (nightly-past-ci-caller) / Get number (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.11 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.10 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.9 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.8 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.7 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.6 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.5 (push) Has been cancelled
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
Build documentation / build (push) Has been cancelled
Build documentation / build_other_lang (push) Has been cancelled
CodeQL Security Analysis / CodeQL Analysis (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
PR CI / pr-ci (push) Has been cancelled
Slow tests on important models (on Push - A10) / Get all modified files (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
Slow tests on important models (on Push - A10) / Model CI (push) Has been cancelled
Check Tiny Models / Check tiny models (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Model CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Pipeline CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Example CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / DeepSpeed CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI - Flash Attn / Setup (push) Has been cancelled
Nvidia CI - Flash Attn / Model CI (push) Has been cancelled
Nvidia CI / Setup (push) Has been cancelled
Nvidia CI / Model CI (push) Has been cancelled
Nvidia CI / Torch pipeline CI (push) Has been cancelled
Nvidia CI / Example CI (push) Has been cancelled
Nvidia CI / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI / DeepSpeed CI (push) Has been cancelled
Nvidia CI / Quantization CI (push) Has been cancelled
Nvidia CI / Kernels CI (push) Has been cancelled
Doctests / Setup (push) Has been cancelled
Doctests / Call doctest jobs (push) Has been cancelled
Doctests / Send results to webhook (push) Has been cancelled
Extras Smoke Test / Get supported Python versions (push) Has been cancelled
Extras Smoke Test / Test extras on Python ${{ matrix.python-version }} (push) Has been cancelled
Extras Smoke Test / Check Slack token availability (push) Has been cancelled
Extras Smoke Test / Notify failures to Slack (push) Has been cancelled
Self-hosted runner (AMD scheduled CI caller) / Trigger Scheduled AMD CI (push) Has been cancelled
Stale Bot / Close Stale Issues (push) Has been cancelled
208 lines
7.5 KiB
Python
208 lines
7.5 KiB
Python
# Copyright 2025 The HuggingFace Team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import gc
|
|
import tempfile
|
|
import unittest
|
|
|
|
import torch
|
|
|
|
from transformers import AutoModelForCausalLM, AutoTokenizer, FPQuantConfig
|
|
from transformers.testing_utils import (
|
|
backend_empty_cache,
|
|
require_accelerate,
|
|
require_fp_quant,
|
|
require_qutlass,
|
|
require_torch_accelerator,
|
|
require_torch_multi_accelerator,
|
|
slow,
|
|
torch_device,
|
|
)
|
|
|
|
|
|
@require_torch_accelerator
|
|
class FPQuantConfigTest(unittest.TestCase):
|
|
def test_to_dict(self):
|
|
"""
|
|
Simple test that checks if one uses a config and converts it to a dict, the dict is the same as the config object
|
|
"""
|
|
quantization_config = FPQuantConfig()
|
|
config_to_dict = quantization_config.to_dict()
|
|
|
|
for key in config_to_dict:
|
|
self.assertEqual(getattr(quantization_config, key), config_to_dict[key])
|
|
|
|
def test_from_dict(self):
|
|
"""
|
|
Simple test that checks if one uses a dict and converts it to a config object, the config object is the same as the dict
|
|
"""
|
|
dict = {"modules_to_not_convert": ["embed_tokens", "lm_head"], "quant_method": "fp_quant"}
|
|
quantization_config = FPQuantConfig.from_dict(dict)
|
|
|
|
self.assertEqual(dict["modules_to_not_convert"], quantization_config.modules_to_not_convert)
|
|
self.assertEqual(dict["quant_method"], quantization_config.quant_method)
|
|
|
|
|
|
@slow
|
|
@require_torch_accelerator
|
|
@require_fp_quant
|
|
@require_accelerate
|
|
class FPQuantBaseTest(unittest.TestCase):
|
|
model_name = "unsloth/Llama-3.2-1B"
|
|
|
|
input_text = "1 2 3 4"
|
|
max_new_tokens = 4
|
|
|
|
EXPECTED_OUTPUT = "1 2 3 4 5 6"
|
|
|
|
device_map = torch_device
|
|
|
|
@classmethod
|
|
def getQuantizationConfig(cls):
|
|
unittest.skip("Subclass must implement this method")
|
|
|
|
# called only once for all test in this class
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
"""
|
|
Setup quantized model
|
|
"""
|
|
|
|
cls.quantization_config = cls.getQuantizationConfig()
|
|
cls.tokenizer = AutoTokenizer.from_pretrained(cls.model_name)
|
|
cls.quantized_model = AutoModelForCausalLM.from_pretrained(
|
|
cls.model_name, device_map=cls.device_map, quantization_config=cls.quantization_config
|
|
)
|
|
|
|
def tearDown(self):
|
|
gc.collect()
|
|
backend_empty_cache(torch_device)
|
|
gc.collect()
|
|
|
|
def test_quantized_model(self):
|
|
"""
|
|
Simple test that checks if the quantized model is working properly
|
|
"""
|
|
input_ids = self.tokenizer(self.input_text, return_tensors="pt").to(torch_device)
|
|
|
|
output = self.quantized_model.generate(**input_ids, max_new_tokens=self.max_new_tokens)
|
|
self.assertEqual(self.tokenizer.decode(output[0], skip_special_tokens=True), self.EXPECTED_OUTPUT)
|
|
|
|
def test_save_pretrained(self):
|
|
"""
|
|
Simple test that checks if the quantized model is working properly after being saved and loaded
|
|
"""
|
|
with tempfile.TemporaryDirectory() as tmpdirname:
|
|
self.quantized_model.save_pretrained(tmpdirname)
|
|
|
|
model = AutoModelForCausalLM.from_pretrained(tmpdirname, device_map=self.device_map)
|
|
|
|
input_ids = self.tokenizer(self.input_text, return_tensors="pt").to(torch_device)
|
|
|
|
output = model.generate(**input_ids, max_new_tokens=self.max_new_tokens)
|
|
self.assertEqual(self.tokenizer.decode(output[0], skip_special_tokens=True), self.EXPECTED_OUTPUT)
|
|
|
|
@require_torch_multi_accelerator
|
|
def test_quantized_model_multi_accelerator(self):
|
|
"""
|
|
Simple test that checks if the quantized model is working properly with multiple accelerators.
|
|
Set CUDA_VISIBLE_DEVICES=0,1 if you have more than 2 CUDA GPUs. Or set ZE_AFFINITY_MASK=0,1
|
|
if you have more than 2 Intel XPUs.
|
|
"""
|
|
input_ids = self.tokenizer(self.input_text, return_tensors="pt").to(torch_device)
|
|
|
|
quantized_model = AutoModelForCausalLM.from_pretrained(
|
|
self.model_name, device_map="auto", quantization_config=self.quantization_config
|
|
)
|
|
self.assertTrue(set(quantized_model.hf_device_map.values()) == {0, 1})
|
|
|
|
output = quantized_model.generate(**input_ids, max_new_tokens=self.max_new_tokens)
|
|
self.assertEqual(self.tokenizer.decode(output[0], skip_special_tokens=True), self.EXPECTED_OUTPUT)
|
|
|
|
@require_torch_multi_accelerator
|
|
def test_save_pretrained_multi_accelerator(self):
|
|
"""
|
|
Simple test that checks if the quantized model is working properly after being saved and loaded
|
|
"""
|
|
with tempfile.TemporaryDirectory() as tmpdirname:
|
|
self.quantized_model.save_pretrained(tmpdirname)
|
|
|
|
model = AutoModelForCausalLM.from_pretrained(tmpdirname, device_map="auto")
|
|
self.assertTrue(set(model.hf_device_map.values()) == {0, 1})
|
|
|
|
input_ids = self.tokenizer(self.input_text, return_tensors="pt").to(torch_device)
|
|
|
|
output = model.generate(**input_ids, max_new_tokens=self.max_new_tokens)
|
|
self.assertEqual(self.tokenizer.decode(output[0], skip_special_tokens=True), self.EXPECTED_OUTPUT)
|
|
|
|
|
|
class FPQuantMXFP4PseudoquantTest(FPQuantBaseTest):
|
|
@classmethod
|
|
def getQuantizationConfig(cls):
|
|
return FPQuantConfig(forward_dtype="mxfp4", pseudoquantization=True)
|
|
|
|
@unittest.skip("Pseudoquant Triton kernels do not support multi-GPU")
|
|
def test_quantized_model_multi_accelerator(self):
|
|
pass
|
|
|
|
@unittest.skip("Pseudoquant Triton kernels do not support multi-GPU")
|
|
def test_save_pretrained_multi_accelerator(self):
|
|
pass
|
|
|
|
|
|
@unittest.skipUnless(
|
|
torch.cuda.is_available() and torch.cuda.get_device_capability()[0] >= 9,
|
|
"NVFP4 pseudoquantization requires compute capability >= 9.0 (Hopper or newer)",
|
|
)
|
|
class FPQuantNVFP4PseudoquantTest(FPQuantBaseTest):
|
|
@classmethod
|
|
def getQuantizationConfig(cls):
|
|
return FPQuantConfig(forward_dtype="nvfp4", pseudoquantization=True)
|
|
|
|
@unittest.skip("Pseudoquant Triton kernels do not support multi-GPU")
|
|
def test_quantized_model_multi_accelerator(self):
|
|
pass
|
|
|
|
@unittest.skip("Pseudoquant Triton kernels do not support multi-GPU")
|
|
def test_save_pretrained_multi_accelerator(self):
|
|
pass
|
|
|
|
|
|
@require_qutlass
|
|
class FPQuantMXFP4Test(FPQuantBaseTest):
|
|
@classmethod
|
|
def getQuantizationConfig(cls):
|
|
return FPQuantConfig(forward_dtype="mxfp4", pseudoquantization=False)
|
|
|
|
|
|
@require_qutlass
|
|
class FPQuantNVFP4Test(FPQuantBaseTest):
|
|
@classmethod
|
|
def getQuantizationConfig(cls):
|
|
return FPQuantConfig(forward_dtype="nvfp4", pseudoquantization=False)
|
|
|
|
|
|
@require_qutlass
|
|
class FPQuantMXFP4GS128Test(FPQuantBaseTest):
|
|
@classmethod
|
|
def getQuantizationConfig(cls):
|
|
return FPQuantConfig(forward_dtype="mxfp4", pseudoquantization=False, hadamard_group_size=128)
|
|
|
|
|
|
@require_qutlass
|
|
class FPQuantNVFP4GS128Test(FPQuantBaseTest):
|
|
@classmethod
|
|
def getQuantizationConfig(cls):
|
|
return FPQuantConfig(forward_dtype="nvfp4", pseudoquantization=False, hadamard_group_size=128)
|