[Diffusion] Improve bit-exact fusion fallback diagnostics (#34412)

This commit is contained in:
Xiaoyu Zhang
2026-08-12 10:42:48 +08:00
committed by GitHub
parent 3f9d184833
commit 4aff4b1822
3 changed files with 147 additions and 6 deletions
@@ -10,6 +10,54 @@ import torch
T = TypeVar("T")
EqualFn = Callable[[Any, Any], bool]
DiagnosticHintFn = Callable[[], str | None]
def flashinfer_rmsnorm_diagnostic_hint() -> str:
"""Describe the live FlashInfer RMSNorm backend after an exactness miss.
Keep the imports and metadata lookups inside this function: callers pass it
as a callback, so none of this work runs on the verified steady-state path.
"""
import importlib
import importlib.metadata
import os
try:
flashinfer_norm = importlib.import_module("flashinfer.norm")
use_cuda_norm = getattr(flashinfer_norm, "_USE_CUDA_NORM", None)
except Exception:
backend = "unavailable"
else:
if use_cuda_norm is True:
backend = "CUDA JIT"
elif use_cuda_norm is False:
backend = "CuTe DSL"
else:
backend = "legacy or unknown (no _USE_CUDA_NORM flag)"
versions = []
for package in (
"flashinfer-python",
"flashinfer-cubin",
"flashinfer-jit-cache",
):
try:
package_version = importlib.metadata.version(package)
except importlib.metadata.PackageNotFoundError:
package_version = "not installed"
except Exception:
package_version = "unknown"
versions.append(f"{package}={package_version}")
env_backend = os.environ.get("FLASHINFER_USE_CUDA_NORM", "<unset>")
return (
"RMSNorm exactness can change when FlashInfer selects a different "
f"reduction backend. Detected backend={backend}, "
f"FLASHINFER_USE_CUDA_NORM={env_backend}, {', '.join(versions)}. "
"Check that the FlashInfer packages are version-aligned and that the "
"expected RMSNorm backend is selected"
)
class BitExactFusionGate:
@@ -91,6 +139,7 @@ class BitExactFusionGate:
equal: EqualFn | None = None,
logger: logging.Logger | None = None,
mismatch_msg: str | None = None,
diagnostic_hint: DiagnosticHintFn | None = None,
) -> T:
"""Return ``out`` when bit-exact; otherwise disable and return ``ref``."""
if self.is_verified(sig):
@@ -100,13 +149,23 @@ class BitExactFusionGate:
self.mark_verified(sig)
return out
if logger is not None:
logger.warning_once(
mismatch_msg
or (
f"{self.name} fast path is not bit-exact against this "
"platform's reference dispatch; falling back to eager"
)
message = mismatch_msg or (
f"{self.name} fast path is not bit-exact against this "
"platform's reference dispatch; falling back to eager"
)
details = (
"Correctness is preserved because the eager reference output "
"is used. A platform-specific reference kernel or reduction-order "
"change may have caused this fallback"
)
if diagnostic_hint is not None:
try:
diagnostic_details = diagnostic_hint()
except Exception:
diagnostic_details = None
if diagnostic_details:
details = f"{details}. {diagnostic_details.rstrip('.')}"
logger.warning_once(f"{message.rstrip('.')}. {details}.")
self.disable()
return ref
@@ -24,6 +24,7 @@ from sglang.kernels.ops.activation.activation import (
)
from sglang.kernels.ops.diffusion.bitexact_gate import (
BitExactFusionGate,
flashinfer_rmsnorm_diagnostic_hint,
tensors_equal,
)
from sglang.kernels.ops.diffusion.residual_gate_add import residual_gate_add
@@ -111,6 +112,7 @@ def _ernie_norm_scale_shift(
"ERNIE fused-norm fast path is not bit-exact against this "
"platform's rmsnorm dispatch; falling back to eager"
),
diagnostic_hint=flashinfer_rmsnorm_diagnostic_hint,
)
return _eager_norm_scale_shift(norm, x, scale, shift)
@@ -165,6 +167,7 @@ def _ernie_gated_norm_scale_shift(
"ERNIE fused gated-norm fast path is not bit-exact against "
"this platform's rmsnorm dispatch; falling back to eager"
),
diagnostic_hint=flashinfer_rmsnorm_diagnostic_hint,
)
res = residual_gate_add(residual, update, gate)