Attention Quantization in LLM Compressor
LLM Compressor supports applying static attention quantization to models
Per-Head FP8 Attention Example
For an example applying attention quantization, see
.
recipe=QuantizationModifier( config_groups={ "attention": QuantizationScheme( targets=["LlamaAttention"], input_activations=QuantizationArgs( num_bits=8, type="float", strategy="attn_head" ), ) } )Accuracy should be almost identical to the base model for FP8 attention. Note that attention quantization also implicitly applies kv cache quantization with the same quantization arguments.