vllm.model_executor.layers.quantization.torchao ¶
TorchAOConfig ¶
Bases: QuantizationConfig
Config class for torchao.
Source code in vllm/model_executor/layers/quantization/torchao.py
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 | |
from_config classmethod ¶
from_config(config: dict[str, Any]) -> TorchAOConfig
Create the quant config from an hf model config
Source code in vllm/model_executor/layers/quantization/torchao.py
from_config_dict_json classmethod ¶
from_config_dict_json(
config_dict_json: str,
) -> TorchAOConfig
Initialize class from a config_dict json string, got from torchao_config_object = some AOBaseConfig object json.dumps(config_to_dict(torchao_config_object))
Source code in vllm/model_executor/layers/quantization/torchao.py
from_config_file classmethod ¶
from_config_file(config_file: str) -> TorchAOConfig
Initialize class from a config file. Example:
config = Float8DynamicActivationFloat8WeightConfig(granularity=PerRow())
fn = "torchao_config.json"
with open(fn, "w") as f:
f.write(json.dumps(config_to_dict(config)))
Source code in vllm/model_executor/layers/quantization/torchao.py
get_config_filenames staticmethod ¶
torchao doesn't require additional config files, we use config.json from huggingface: model_config.hf_config
TorchAOLinearMethod ¶
Bases: LinearMethodBase
Linear method for torchao.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
quant_config | TorchAOConfig | The torchao quantization config, a string that encodes the type of quantization and all relevant arguments. | required |
Source code in vllm/model_executor/layers/quantization/torchao.py
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 | |
_check_torchao_fp8_activation_capability ¶
Check if the current GPU supports FP8 activation quantization.
FP8 activation configs (e.g., Float8DynamicActivationFloat8WeightConfig) require GPU compute capability >= 8.9 (Ada Lovelace / Hopper) on NVIDIA, or MI300+ on AMD. This check provides a clear error message before torchao's internal assertion fires with a confusing message.
Source code in vllm/model_executor/layers/quantization/torchao.py
should_skip ¶
Robust skipping logic: should_skip("model.model.layers.1.q_proj", ["model.model.layers.1.q_proj"]) # True should_skip("model.model.layers.10.o_proj", ["o_proj"]) -> True should_skip("visual.model.layers.1.q_proj", ["visual"]) -> True should_skip("model.model.layers.1.q_proj", ["layers.1"]) -> True should_skip("model.model.layers.11.q_proj", ["layers.1"]) -> False
Source code in vllm/model_executor/layers/quantization/torchao.py
torchao_quantize_param_data ¶
Quantize a Tensor with torchao quantization specified by torchao_config
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
param | Tensor | weight parameter of the linear module | required |
torchao_config | Any | type of quantization and their arguments we want to use to quantize the Tensor | required |