| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- # Copyright 2025 Advanced Micro Devices, Inc. and The HuggingFace Inc. 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.
- from typing import TYPE_CHECKING
- from .base import HfQuantizer
- if TYPE_CHECKING:
- from ..modeling_utils import PreTrainedModel
- from ..utils.quantization_config import QuarkConfig
- from ..utils import is_quark_available, logging
- logger = logging.get_logger(__name__)
- CHECKPOINT_KEYS = {
- "weight_scale": "weight_quantizer.scale",
- "bias_scale": "bias_quantizer.scale",
- "input_scale": "input_quantizer.scale",
- "output_scale": "output_quantizer.scale",
- "weight_zero_point": "weight_quantizer.zero_point",
- "bias_zero_point": "bias_quantizer.zero_point",
- "input_zero_point": "input_quantizer.zero_point",
- "output_zero_point": "output_quantizer.zero_point",
- }
- class QuarkHfQuantizer(HfQuantizer):
- """
- Quark quantizer (https://quark.docs.amd.com/latest/).
- """
- requires_calibration = True # On-the-fly quantization with quark is not supported for now.
- quantization_config: "QuarkConfig"
- def __init__(self, quantization_config, **kwargs):
- super().__init__(quantization_config, **kwargs)
- self.json_export_config = quantization_config.json_export_config
- def validate_environment(self, *args, **kwargs):
- if not is_quark_available():
- raise ImportError(
- "Loading a Quark quantized model requires the `quark` library but it was not found in the environment. Please refer to https://quark.docs.amd.com/latest/install.html."
- )
- def _process_model_before_weight_loading(self, model: "PreTrainedModel", **kwargs):
- from quark.torch.export.api import _map_to_quark
- _map_to_quark(
- model,
- self.quantization_config.quant_config,
- pack_method=self.json_export_config.pack_method,
- custom_mode=self.quantization_config.custom_mode,
- )
- return model
- def param_needs_quantization(self, model: "PreTrainedModel", param_name: str, **kwargs) -> bool:
- return True
- def is_serializable(self):
- return False
- @property
- def is_trainable(self):
- return False
- def get_weight_conversions(self):
- from ..core_model_loading import WeightConverter
- from ..integrations.quark import QuarkDeserialize
- # In Quark, quantization is managed through a QParamsLinear module, which holds
- # separate quantizers for the weights, inputs, and biases (e.g. weight_quantizer
- # input_quantizer, bias_quantizer, etc.).
- #
- # The checkpoint stores keys like `weight_scale`, `input_scale`, etc.
- # but the model's state_dict() exposes `weight_quantizer.scale`, `input_quantizer.scale`, etc.
- # We rename from checkpoint format to model format, and the QuarkDeserialize operation
- # handles assigning values into the corresponding quantizer attributes.
- converters = []
- for source_key, target_key in CHECKPOINT_KEYS.items():
- converters.append(
- WeightConverter(
- source_patterns=[source_key],
- target_patterns=target_key,
- operations=[QuarkDeserialize(self)],
- )
- )
- return converters
|