vllm.model_executor.layers.fused_moe.experts.trtllm_lora_moe ¶
LoRA-aware FlashInfer TRT-LLM MoE experts (BF16).
Reuses the routed API + gemm1_lora_delta path from FlashInfer PR #3153:
- The W13 (gate_up) LoRA delta is passed directly as
gemm1_lora_deltato the routed kernel, which fuses it into FC1 before SwiGLU (BiasType::Mn). - The W2 (down) LoRA cannot be fused -- we take the FC1 activation output returned by the kernel (
gemm1_activation_output, permuted) together withexpanded_idx_to_permuted_idx, unpermute it, compute the W2 delta out of kernel via punica, and add it to the already-finalized output.
Constraints (matching the PR support matrix; final gating lives in the oracle): * SM100+ (Blackwell), gated SwiGLU, shuffled weights only; * BF16 only; * routing must be computed outside the MoE (the Modular path satisfies this).
Classes:
-
TrtLlmBf16LoRAExperts–BF16 unquantized trtllm MoE + LoRA.
TrtLlmBf16LoRAExperts ¶
Bases: _TrtLlmLoRAExpertsBase
BF16 unquantized trtllm MoE + LoRA.
Source code in vllm/model_executor/layers/fused_moe/experts/trtllm_lora_moe.py
_TrtLlmLoRAExpertsBase ¶
Bases: LoRAExpertsMixin, FusedMoEExpertsModular
LoRA-aware trtllm MoE experts
Methods:
-
invoke_routed_moe–Call the dtype-specific trtllm_*_routed_moe and return list[Tensor].
-
moe_problem_size–Override the base 3D-weight assumption.
Source code in vllm/model_executor/layers/fused_moe/experts/trtllm_lora_moe.py
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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | |
_batch_has_no_lora(lora_context) staticmethod ¶
True when no token in the batch selects a LoRA adapter.
Mirrors the no-lora fast path in PunicaWrapperGPU.add_lora_fused_moe: the punica kernel metadata carries a CPU no_lora_flag computed once per forward from the token->LoRA mapping. Reading it is a host-only check (no device sync), and under CUDA graphs the branch is frozen at capture time against the graph's has_lora dispatch key, so it stays correct on replay.
Source code in vllm/model_executor/layers/fused_moe/experts/trtllm_lora_moe.py
_finalize_with_w2_lora(output, gemm2_permuted, expert_weights, idx_map, w2_delta, num_tokens, top_k, scale=1.0) staticmethod ¶
Fused base finalize + W2 LoRA reduction, written into output.
For each token: sum the routing-weighted permuted base rows over top_k (expert_weights in expanded order, idx_map < 0 dropped), scale by scale, and add the already-weighted w2_delta reduced over top_k.
Source code in vllm/model_executor/layers/fused_moe/experts/trtllm_lora_moe.py
_unpermute_activation(act_permuted, idx_map, num_tokens, top_k, intermediate_size) staticmethod ¶
Permuted FC1 activation -> (num_tokens*top_k, I).
expanded_idx = token*top_k + k; idx_map[expanded_idx] = permuted_idx or -1. Fused gather + drop-masking: each output row copies the matching permuted row, or is zeroed when idx_map < 0.
Source code in vllm/model_executor/layers/fused_moe/experts/trtllm_lora_moe.py
invoke_routed_moe(*, hidden_states, w1, w2, packed_topk_ids, gemm1_lora_delta, global_num_experts, a1q_scale, output) abstractmethod ¶
Call the dtype-specific trtllm_*_routed_moe and return list[Tensor].
The LoRA path always sets gemm1_lora_delta and runs with do_finalize=False so the base finalize can be fused with the W2 LoRA reduction (see _finalize_with_w2_lora). Return contract: gemm1_lora_delta is None -> [output] (do_finalize=True) otherwise -> [gemm2_output(permuted, unweighted), expert_weights, expanded_idx_to_permuted_idx, gemm1_activation_output(permuted)]
Source code in vllm/model_executor/layers/fused_moe/experts/trtllm_lora_moe.py
moe_problem_size(a1, w1, w2, topk_ids) ¶
Override the base 3D-weight assumption.
FusedMoEKernel._fused_experts calls moe_problem_size before apply(), but the base impl asserts len(w1.shape) == 3. The flashinfer trtllm path stores shuffled weights in 4D BlockMajorK layout, so we derive the (E, M, N, K, topk) tuple from config + inputs instead. The N/K here only feed workspace sizing, which we zero out in workspace_shapes(); the real shapes are handled inside flashinfer.