vllm.model_executor.layers.fused_moe.oracle.fp8 ¶
convert_to_fp8_moe_kernel_format ¶
convert_to_fp8_moe_kernel_format(
fp8_backend: Fp8MoeBackend,
layer: Module,
w13: Tensor,
w2: Tensor,
w13_scale: Tensor,
w2_scale: Tensor,
w13_input_scale: Tensor | None,
w2_input_scale: Tensor | None,
) -> tuple[Tensor, Tensor, Tensor, Tensor]
Source code in vllm/model_executor/layers/fused_moe/oracle/fp8.py
make_fp8_moe_kernel ¶
make_fp8_moe_kernel(
layer: Module,
moe_quant_config: FusedMoEQuantConfig,
moe_config: FusedMoEConfig,
fp8_backend: Fp8MoeBackend,
) -> tuple[FusedMoEModularKernel, bool]
Source code in vllm/model_executor/layers/fused_moe/oracle/fp8.py
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 | |
make_fp8_moe_quant_config ¶
make_fp8_moe_quant_config(
fp8_backend: Fp8MoeBackend,
w1_scale: Tensor,
w2_scale: Tensor,
a1_scale: Tensor | None,
a2_scale: Tensor | None,
block_shape: list[int] | None = None,
) -> FusedMoEQuantConfig | None
Create FusedMoEQuantConfig for the specifed FP8 Backend. The FusedMoEQuantConfig holds the scales that are used at runtime by the Modular Kernel abstraction.
Note that certain kernels (e.g. Flashinfer CUTLASS) need special Quant configs to handle non-standard inputs to their kernel interfaces.
In a future PR, we will have this function should be a method of the modular kernel itself.
Source code in vllm/model_executor/layers/fused_moe/oracle/fp8.py
select_fp8_moe_backend ¶
select_fp8_moe_backend(
block_quant: bool,
tp_size: int,
with_lora_support: bool,
is_act_and_mul: bool = True,
allow_vllm_cutlass: bool = False,
) -> Fp8MoeBackend
Select the primary FP8 MoE backend Note: Shape-specific fallbacks may still occur at runtime.
Source code in vllm/model_executor/layers/fused_moe/oracle/fp8.py
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 | |