File size: 15,796 Bytes
76f9669 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | # Copyright (c) 2021 - present / Neuralmagic, Inc. 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 warnings
from enum import Enum
from typing import Any, Dict, List, Optional, Union
import torch
from compressed_tensors.utils import Aliasable
from compressed_tensors.utils.helpers import deprecated
from compressed_tensors.utils.type import TorchDtype
from pydantic import (
BaseModel,
ConfigDict,
Field,
field_serializer,
field_validator,
model_validator,
)
__all__ = [
"FP8_E4M3_DATA",
"FP4_E2M1_DATA",
"BFLOAT16_DATA",
"FloatArgs",
"QuantizationType",
"QuantizationStrategy",
"QuantizationArgs",
"round_to_quantized_type_args",
"round_to_quantized_type_dtype",
"ActivationOrdering",
"DynamicType",
]
class FloatArgs:
exponent: int
mantissa: int
bits: Optional[int] = None
max: Optional[float] = None
min: Optional[float] = None
dtype: Optional[torch.dtype] = None
class FP4_E2M1_DATA(FloatArgs):
exponent = 2
mantissa = 1
bits = 4
max = 6.0
min = -6.0
@staticmethod
@torch.compile
def cast_to_fp4(x):
sign = torch.sign(x)
x = torch.abs(x)
x[(x >= 0.0) & (x <= 0.25)] = 0.0
x[(x > 0.25) & (x < 0.75)] = 0.5
x[(x >= 0.75) & (x <= 1.25)] = 1.0
x[(x > 1.25) & (x < 1.75)] = 1.5
x[(x >= 1.75) & (x <= 2.5)] = 2.0
x[(x > 2.5) & (x < 3.5)] = 3.0
x[(x >= 3.5) & (x <= 5.0)] = 4.0
x[x > 5.0] = 6.0
return x * sign
class FP8_E4M3_DATA(FloatArgs):
exponent = 4
mantissa = 3
bits = 8
max = torch.finfo(torch.float8_e4m3fn).max
min = torch.finfo(torch.float8_e4m3fn).min
dtype = torch.float8_e4m3fn
class BFLOAT16_DATA(FloatArgs):
exponent = 8
mantissa = 7
class QuantizationType(str, Enum):
"""
Enum storing quantization type options
"""
INT = "int"
FLOAT = "float"
class QuantizationStrategy(str, Enum):
"""
Enum storing quantization strategy options
"""
TENSOR = "tensor"
CHANNEL = "channel"
GROUP = "group"
BLOCK = "block"
TOKEN = "token"
TENSOR_GROUP = "tensor_group"
ATTN_HEAD = "attn_head"
class DynamicType(str, Enum):
"""
Enum storing potential dynamic types.
1. If dynamic is True, all quantization parameters are generated on the fly.
2. If dynamic is False, all quantization parameters generated are static.
3. If "local" is provided, only local quantization parameters are dynamic.
Note: "local" is only currently supported for NVFP4.
"""
LOCAL = "local"
class ActivationOrdering(Aliasable, str, Enum):
"""
Enum storing strategies for activation ordering
Group: reorder groups and weight\n
Weight: only reorder weight, not groups. Slightly lower accuracy but also lower
latency when compared to group actorder\n
Dynamic: alias for Group\n
Static: alias for Weight\n
"""
GROUP = "group"
WEIGHT = "weight"
# aliases
DYNAMIC = "dynamic"
STATIC = "static"
@staticmethod
def get_aliases() -> Dict[str, str]:
return {
"dynamic": "group",
"static": "weight",
}
class QuantizationArgs(BaseModel, use_enum_values=True):
"""
User facing arguments used to define a quantization config for weights or
activations
:param num_bits: quantization bit depth
:param type: dtype to quantized to, either int or float
:param symmetric: whether or not quantization scale is symmetric about zero-point
:param strategy: string id determining the scope of scale/zero-point to apply
:param group_size: group length to use for the group strategy
:param block_structure: 2d block structure to use for the block strategy; must be
a list of two ints [rows, cols] like [128, 128].
:param dynamic: set True to perform dynamic quantization - values will not be
calibrated during calibration phase, instead during inference new quantization
ranges will be observed with every sample. Defaults to False for static
quantization. Note that enabling dynamic quantization will change the default
observer to a memoryless one
:param actorder: whether to apply group quantization in decreasing order of
activation. Defaults to None for arbitrary ordering
"""
num_bits: int = 8
type: QuantizationType = QuantizationType.INT
symmetric: bool = True
group_size: Optional[int] = None
strategy: Optional[QuantizationStrategy] = None
block_structure: Optional[List[int]] = None
dynamic: Union[DynamicType, bool] = False
actorder: Union[ActivationOrdering, bool, None] = None
scale_dtype: Optional[TorchDtype] = None
zp_dtype: Optional[TorchDtype] = None
observer: Optional[str] = Field(
default=None,
description=(
"Determines the method of computing quantization parameters (scales and "
"zero-points). Defaults to min-max when not using dynamic quantization"
),
)
observer_kwargs: Dict[str, Any] = Field(
default_factory=dict,
description=(
"optional dict of kwargs to be passed directly to torch quantization "
"Observers constructor excluding quantization range or symmetry"
),
)
@field_serializer("zp_dtype")
def serialize_dtype(self, dtype: torch.dtype):
if self.symmetric:
return None
return str(dtype)
@field_validator("type", mode="before")
def validate_type(cls, value) -> QuantizationType:
if isinstance(value, str):
return QuantizationType(value.lower())
return value
@field_validator("group_size", mode="before")
def validate_group(cls, value) -> Union[int, None]:
if value is None:
return value
if value < -1:
raise ValueError(
f"Invalid group size {value}. Use group_size > 0 for "
"strategy='group' and group_size = -1 for 'channel'"
)
return value
@field_validator("block_structure", mode="before")
def validate_block_structure(cls, value) -> Optional[List[int]]:
if value is None:
return value
# For backward compatibility, allow string format "2x4", "8x16", etc.
if isinstance(value, str):
try:
return [int(x) for x in value.split("x")]
except Exception:
raise ValueError(
f"Invalid block_structure '{value}'. Must be a list of ints "
"[rows, cols]."
)
if isinstance(value, (list, tuple)):
if len(value) != 2 or not all(isinstance(v, int) for v in value):
raise ValueError(
f"Invalid block_structure '{value}'. Must be a list of ints "
"[rows, cols]."
)
return list(value)
raise ValueError(
f"Invalid block_structure '{value}'. Must be a list of ints [rows, cols]."
)
@field_validator("strategy", mode="before")
def validate_strategy(cls, value) -> Union[QuantizationStrategy, None]:
if isinstance(value, str):
return QuantizationStrategy(value.lower())
return value
@field_validator("actorder", mode="before")
def validate_actorder(cls, value) -> Optional[ActivationOrdering]:
if isinstance(value, bool):
return ActivationOrdering.GROUP if value else None
if isinstance(value, str):
return ActivationOrdering(value.lower())
return value
@field_validator("dynamic", mode="before")
def validate_dynamic(cls, value) -> Union[DynamicType, bool]:
if isinstance(value, str):
return DynamicType(value.lower())
return value
@model_validator(mode="after")
def validate_model_after(model: "QuantizationArgs") -> "QuantizationArgs":
# extract user-passed values from dictionary
strategy = model.strategy
group_size = model.group_size
block_structure = model.block_structure
actorder = model.actorder
dynamic = model.dynamic
observer = model.observer
dynamic = model.dynamic
zp_dtype = model.zp_dtype
# infer strategy
if strategy is None:
if group_size is None:
strategy = QuantizationStrategy.TENSOR
elif group_size > 0:
strategy = QuantizationStrategy.GROUP
elif group_size == -1:
strategy = QuantizationStrategy.CHANNEL
else:
raise ValueError(
f"Invalid group size {group_size}. Use group_size > 0 for "
"strategy='group' and group_size = -1 for 'channel'"
)
# validate token strategy
if strategy == QuantizationStrategy.TOKEN and not dynamic:
raise ValueError(
"Cannot perform static token quantization, please use `dynamic=True`"
)
# validate group strategy
if strategy in (QuantizationStrategy.GROUP, QuantizationStrategy.TENSOR_GROUP):
if group_size is None or group_size <= 0:
raise ValueError(
f"strategy {strategy} requires group_size to be "
"set to a positive value"
)
if (
group_size is not None
and group_size > 0
and strategy
not in (QuantizationStrategy.GROUP, QuantizationStrategy.TENSOR_GROUP)
):
raise ValueError("group_size requires strategy to be set to 'group'")
# validate block strategy
has_block_strategy = strategy == QuantizationStrategy.BLOCK
has_block_structure = block_structure is not None
if has_block_strategy and not has_block_structure:
raise ValueError(f"Block strategy requires block structure\n{model}")
if has_block_structure and not has_block_strategy:
raise ValueError(f"Block structure requires block strategy\n{model}")
# validate activation ordering and strategy
if actorder is not None and strategy != QuantizationStrategy.GROUP:
raise ValueError(
"Must use group quantization strategy in order to apply "
"activation ordering"
)
# infer observer w.r.t. dynamic
if dynamic:
supported_strategies = (
QuantizationStrategy.TOKEN,
QuantizationStrategy.TENSOR,
QuantizationStrategy.TENSOR_GROUP,
QuantizationStrategy.GROUP,
)
if strategy not in supported_strategies:
raise ValueError(
f"One of {supported_strategies} must be used for dynamic quant."
)
if (
dynamic == DynamicType.LOCAL
and strategy != QuantizationStrategy.TENSOR_GROUP
):
raise ValueError("local is only supported for strategy tensor_group")
if observer is not None:
if dynamic is True: # checking if dynamic is True, not "local"
if (
observer != "memoryless"
): # avoid annoying users with old configs
warnings.warn(
"No observer is used for dynamic quant., setting to None"
)
observer = None
else:
if dynamic == DynamicType.LOCAL:
observer = "minmax"
elif observer is None:
# default to minmax for non-dynamic cases
observer = "minmax"
if zp_dtype is None:
if model.num_bits == 4 and model.type == QuantizationType.FLOAT:
zp_dtype = FP8_E4M3_DATA.dtype
else:
zp_dtype = model.pytorch_dtype()
# write back modified values
model.strategy = strategy
model.observer = observer
model.zp_dtype = zp_dtype
return model
def pytorch_dtype(self) -> torch.dtype:
if self.type == QuantizationType.FLOAT:
if self.num_bits == 8:
return FP8_E4M3_DATA.dtype
else:
raise NotImplementedError("Only num_bits in (8) are supported")
elif self.type == QuantizationType.INT:
if self.num_bits <= 8:
return torch.int8
elif self.num_bits <= 16:
return torch.int16
else:
return torch.int32
else:
raise ValueError(f"Invalid quantization type {self.type}")
@deprecated("QuantizationArgs.observer")
def get_observer(self) -> str:
return self.observer
model_config = ConfigDict(extra="forbid")
def round_to_quantized_type_dtype(
tensor: torch.Tensor,
dtype: torch.dtype,
cast_to_original_dtype: Optional[bool] = True,
) -> torch.Tensor:
"""
Rounds an input tensor to the nearest quantized representation given a dtype.
The original dtype is kept post-rounding.
:param tensor: tensor to round
:param dtype: dtype to use for rounding
:param cast_to_original_dtype: whether or not we cast the rounded tensor to
the original dtype
:return: rounded tensor
"""
original_dtype = tensor.dtype
if torch.is_floating_point(torch.tensor([], dtype=dtype)):
finfo = torch.finfo(dtype)
rounded = torch.clamp(tensor, finfo.min, finfo.max).to(dtype)
else:
iinfo = torch.iinfo(dtype)
rounded = torch.round(torch.clamp(tensor, iinfo.min, iinfo.max)).to(dtype)
if cast_to_original_dtype:
return rounded.to(original_dtype)
return rounded
def round_to_quantized_type_args(
tensor: torch.Tensor,
args: QuantizationArgs,
min: torch.Tensor,
max: torch.Tensor,
cast_to_original_dtype: Optional[bool] = True,
) -> torch.Tensor:
"""
Rounds an input tensor to the nearest quantized representation given
qunatization args. The original dtype is kept post-rounding.
:param tensor: tensor to round
:param args: quantization args to use for rounding
:param min: min value to use for clamping
:param max: max value to use for clamping
:param cast_to_original_dtype: whether or not we cast the rounded tensor to
the original dtype
:return: rounded tensor
"""
original_dtype = tensor.dtype
tensor = torch.clamp(tensor, min, max)
if args.type == QuantizationType.FLOAT:
if args.num_bits == 8:
rounded = tensor.to(FP8_E4M3_DATA.dtype)
elif args.num_bits == 4:
rounded = FP4_E2M1_DATA.cast_to_fp4(tensor)
else:
raise NotImplementedError("Only num_bits in (4, 8) are supported")
elif args.type == QuantizationType.INT:
rounded = torch.round(tensor)
else:
raise ValueError(f"Invalid quantization type {args.type}")
if cast_to_original_dtype:
return rounded.to(original_dtype)
return rounded
|