[Misc] Fix typos in comments: explict→explicit, paramaters→parameters (#35648)

This commit is contained in:
lin-shh
2026-03-03 00:59:14 -05:00
committed by GitHub
parent 3a6cbf16e2
commit 35a6f0bfe2
3 changed files with 3 additions and 3 deletions

View File

@@ -603,7 +603,7 @@ def make_fp8_moe_kernel(
)
# NOTE(rob): we only want the mk to control the shared_expert
# if using all2all (for SBO). bnell is making this explict in
# if using all2all (for SBO). bnell is making this explicit in
# the new MoE runner class.
kernel = mk.FusedMoEModularKernel(
prepare_finalize,

View File

@@ -458,7 +458,7 @@ def make_nvfp4_moe_kernel(
)
# NOTE(rob): we only want the mk to control the shared_expert
# if using all2all (for SBO). bnell is making this explict in
# if using all2all (for SBO). bnell is making this explicit in
# the new MoE runner class.
kernel = mk.FusedMoEModularKernel(
prepare_finalize,

View File

@@ -44,7 +44,7 @@ def create_fused_moe_router(
# grouped topk + fused topk bias parameters
routed_scaling_factor: float = 1.0,
e_score_correction_bias: torch.Tensor | None = None,
# custom routing paramaters
# custom routing parameters
custom_routing_function: Callable | None = None,
# eplb parameters
enable_eplb: bool = False,