llmcompressor.modifiers.quantization.quantization.base
Classes:
-
QuantizationModifier–Enables post training quantization (PTQ) and quantization aware training (QAT) for a
QuantizationModifier
Bases: Modifier, QuantizationMixin
Enables post training quantization (PTQ) and quantization aware training (QAT) for a given module or its submodules. After calibration (PTQ) or the start epoch (QAT), the specified module(s) forward pass will emulate quantized execution and the modifier will be enabled until training is completed.
In DDP mode, activation observer statistics are all-reduced across ranks at sequential layer boundaries so all ranks share identical quantization parameters.
Parameters:
-
config_groups–dictionary specifying quantization schemes to apply to target modules. Modules not matching a scheme target will NOT be quantized.
-
targets–list of layer names to quantize if a scheme is provided. Defaults to Linear layers
-
ignore–optional list of module class names or submodule names to not quantize even if they match a target in config_groups. Defaults to empty list.
-
scheme–a single quantization scheme to apply to the model. This is a dictionary that supports all keys from QuantizationScheme except targets, which will be set to the targets parameter set at the modifier level. Can also be set to a dictionary of the format
preset_scheme_name: targetsfor example:W8A8: ['Linear']for weight and activation 8-bit. -
kv_cache_scheme–optional QuantizationArgs, that specify the quantization of the kv cache. If None, kv cache is not quantized. When applying kv cache quantization to transformer AutoModelForCausalLM, the kv_cache_scheme gets converted into a QuantizationScheme that: - targets the
q_projandk_projmodules of the model. The outputs of those modules are the keys and values that might be cached - quantizes the outputs of the aforementioned layers, so that keys and values are compressed before storing them in the cache There is an explicit assumption that the model contains modules withk_projandv_projin their names. If this is not the case and kv_cache_scheme != None, the quantization of kv cache will fail
Methods:
-
on_end–Finish calibrating by removing observers and calibration hooks
-
on_initialize–Prepare to calibrate activations and weights
-
on_start–Begin calibrating activations.
on_end
Finish calibrating by removing observers and calibration hooks
on_initialize
Prepare to calibrate activations and weights
According to the quantization config, a quantization scheme is attached to each targeted module. The module's forward call is also overwritten to perform quantization to inputs, weights, and outputs.
Then, according to the module's quantization scheme, observers and calibration hooks are added. These hooks are disabled until the modifier starts.