vllm.model_executor.kernels.linear.mixed_precision.triton_w4a16 ¶
Triton-based W4A16 GEMM kernel for ROCm MI300.
Implements fused int4-weight dequantization + fp16 GEMM in a single kernel, using GPTQ sequential packing (8 int4 values per int32, shifts [0,4,...,28]). Plugs into the MPLinearKernel selection system and is preferred over MarlinLinearKernel/ExllamaLinearKernel on ROCm.
Weight layout expected by this kernel (post-process_weights_after_loading): qweight: [K, N//8] int32 — rows=K (input), cols=N//8 (N is packed) scales: [K//G, N] fp16/bf16 qzeros: [K//G, N//8] int32 (optional; None for symmetric uint4b8)
Checkpoint layout from compressed_tensors_wNa16 create_weights
weight_packed: [N, K//8] int32 (output_dim=0, input_dim=1, packed_dim=1) weight_scale: [N, K//G] fp16 (output_dim=0, input_dim=1) weight_zero_point: [N//8, K//G] int32 (output_dim=0, packed_dim=0)
TritonW4A16LinearKernel ¶
Bases: MPLinearKernel
Triton-based W4A16 GEMM kernel for ROCm (MI300 and newer).
Supports GPTQ-format int4 weights (uint4b8 symmetric, uint4 asymmetric) with grouped quantization. Weight tensors are transposed from the compressed-tensors checkpoint layout to the kernel's [K, N//8] layout.
Source code in vllm/model_executor/kernels/linear/mixed_precision/triton_w4a16.py
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 | |
process_weights_after_loading ¶
process_weights_after_loading(layer: Module) -> None
Convert compressed-tensors checkpoint layout to kernel layout.
Checkpoint (from compressed_tensors_wNa16.create_weights): weight_packed: [N, K//8] int32 input_dim=1, output_dim=0, packed_dim=1 weight_scale: [N, K//G] fp16 input_dim=1, output_dim=0 weight_zero_point: [N//8, K//G] int32 output_dim=0, packed_dim=0
Kernel needs
qweight: [K, N//8] int32 (transpose weight_packed) scales: [K//G, N] fp16 (transpose weight_scale) qzeros: [K//G, N//8] int32 (transpose weight_zero_point)
Source code in vllm/model_executor/kernels/linear/mixed_precision/triton_w4a16.py
triton_w4a16_gemm ¶
triton_w4a16_gemm(
a: Tensor,
b_q: Tensor,
scales: Tensor,
qzeros: Tensor | None,
group_size: int,
zp_bias: int = 8,
) -> Tensor
Fused W4A16 GEMM using GPTQ-packed int4 weights.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
a | Tensor | Activation matrix [M, K], float16 or bfloat16. | required |
b_q | Tensor | Packed weight matrix [K, N//8], int32 (GPTQ sequential). | required |
scales | Tensor | Per-group scales [K//G, N], same dtype as a. | required |
qzeros | Tensor | None | Per-group packed zero points [K//G, N//8] int32, or None for symmetric quantization (uses zp_bias instead). | required |
group_size | int | Quantization group size (resolved from -1 to K by caller). | required |
zp_bias | int | Constant zero used when qzeros is None (default 8 for uint4b8). | 8 |
Returns:
| Type | Description |
|---|---|
Tensor | Output matrix [M, N], same dtype as a. |
Source code in vllm/model_executor/kernels/linear/mixed_precision/triton_w4a16.py
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 | |
triton_w4a16_gemm_kernel ¶
triton_w4a16_gemm_kernel(
a_ptr,
b_ptr,
scales_ptr,
zeros_ptr,
c_ptr,
M,
N,
K,
stride_am,
stride_ak,
stride_bk,
stride_bn,
stride_cm,
stride_cn,
group_size,
HAS_ZP: constexpr,
ZP_BIAS: constexpr,
BLOCK_M: constexpr,
BLOCK_N: constexpr,
BLOCK_K: constexpr,
)
Fused W4A16 GEMM: C[M,N] = A[M,K] @ dequant(B)[K,N]
B is stored as [K, N//8] int32 using GPTQ sequential packing: each int32 packs 8 consecutive N-values at bit offsets [0,4,8,12,16,20,24,28].
w_fp = (w_int4 - zero) * scale
HAS_ZP=True: zero is loaded from zeros_ptr and unpacked HAS_ZP=False: zero = ZP_BIAS constant (e.g. 8 for uint4b8 symmetric)
Source code in vllm/model_executor/kernels/linear/mixed_precision/triton_w4a16.py
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 | |