-
Notifications
You must be signed in to change notification settings - Fork 200
[Quantization] Support mixed-precision compression #1713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
c18a19d
2f27693
6dba8ba
a19623d
208fa17
bd18f09
2cbffd0
4c2b5bc
83385ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
from compressed_tensors.quantization import QuantizationStrategy, QuantizationType | ||
from compressed_tensors.quantization.utils import is_module_quantized | ||
|
||
__all__ = ["infer_quantization_format"] | ||
__all__ = ["infer_quantization_format", "infer_per_module_quantization"] | ||
|
||
|
||
def infer_quantization_format( | ||
|
@@ -97,6 +97,60 @@ def infer_quantization_format( | |
return None | ||
|
||
|
||
def _get_quant_method(input_args, weight_args, sparsity_structure): | ||
is_24_structure = ( | ||
SparsityStructure(sparsity_structure) == SparsityStructure.TWO_FOUR | ||
) | ||
is_weight_only = weight_args is not None and input_args is None | ||
|
||
if weight_args.num_bits == 4 and weight_args.type == QuantizationType.FLOAT.value: | ||
return CompressionFormat.nvfp4_pack_quantized | ||
|
||
if is_weight_only: # w4a16 and w8a16 | ||
is_valid_pack = ( | ||
weight_args.num_bits in [4, 8] | ||
and weight_args.type == QuantizationType.INT.value | ||
) | ||
if not is_valid_pack: # packing only valid for int4 and int 8 | ||
return CompressionFormat.naive_quantized | ||
if is_24_structure: | ||
if ( | ||
weight_args.strategy is not QuantizationStrategy.CHANNEL.value | ||
and weight_args.strategy is not QuantizationStrategy.GROUP.value | ||
): | ||
# marlin24 kernel only applicable for channel/group quantization | ||
return CompressionFormat.pack_quantized | ||
return CompressionFormat.marlin_24 | ||
return CompressionFormat.pack_quantized | ||
|
||
else: # w8a8 float and int | ||
if ( | ||
weight_args.type == QuantizationType.FLOAT.value | ||
and weight_args.num_bits == 8 | ||
): | ||
return CompressionFormat.float_quantized | ||
if weight_args.type == QuantizationType.INT.value: | ||
return CompressionFormat.int_quantized | ||
|
||
return CompressionFormat.naive_quantized | ||
|
||
|
||
def infer_per_module_quantization(model, sparsity_structure): | ||
dsikka marked this conversation as resolved.
Show resolved
Hide resolved
|
||
unique_formats = [] | ||
for submodule in model.modules(): | ||
if is_module_quantized(submodule): | ||
weight_scheme = submodule.quantization_scheme.weights | ||
input_scheme = submodule.quantization_scheme.input_activations | ||
compression_format = _get_quant_method( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are we not inferring from There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rather than waiting until the end to do inference, why not infer a format at the source? class QuantizationScheme:
format: Optional[CompressionFormat] = None
@validate_field("format")
def validate_format(self, value):
if self.weights and self.input_activations ...
inferred_format = ...
if value is not None and value != inferred_format:
logger.warn_once("Consider using inferred scheme")
return value or inferred_format There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LLM Compressor interprets the compression format at the time of the compression. This is our current lifecycle atm. We can still override using a global format. We can override in a follow-up but the goal of this PR isn't to support per-module format overriding. The goal is to support the most common pathway to start, which is where we determine the format during compresssion time. |
||
input_scheme, weight_scheme, sparsity_structure | ||
) | ||
print(compression_format) | ||
dsikka marked this conversation as resolved.
Show resolved
Hide resolved
|
||
submodule.quantization_scheme.format = compression_format.value | ||
if compression_format not in unique_formats: | ||
unique_formats.append(compression_format) | ||
return unique_formats | ||
|
||
|
||
def _get_unique_quant_args(model): | ||
""" | ||
Gets a list of all the unique quantization settings present in model | ||
|
Uh oh!
There was an error while loading. Please reload this page.