[MoE Backend] Add HPC-Ops FP8 MoE runner backend (#30541)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com> Co-authored-by: Halcyon <56064364+VAthree@users.noreply.github.com>
This commit is contained in:
co-authored by
Claude Fable 5
Halcyon
parent
4d5917e744
commit
3d91a569ce
@@ -0,0 +1,234 @@
|
||||
"""Numerical tests for the HPC-Ops FP8 MoE runner backend.
|
||||
|
||||
Compares the hpc_ops fused func (hpc.fuse_moe_blockwise) against the triton
|
||||
fused_experts reference and an fp32 exact reference on realistic blockwise
|
||||
FP8 quantized weights. Skipped when HPC-Ops (https://github.com/Tencent/hpc-ops)
|
||||
is not installed or the GPU is older than sm90.
|
||||
"""
|
||||
|
||||
import os
|
||||
import unittest
|
||||
|
||||
import torch
|
||||
|
||||
from sglang.srt.distributed.parallel_state import (
|
||||
init_distributed_environment,
|
||||
initialize_model_parallel,
|
||||
model_parallel_is_initialized,
|
||||
)
|
||||
from sglang.srt.layers.moe.moe_runner import MoeRunnerConfig
|
||||
from sglang.srt.layers.moe.moe_runner.hpc_ops import (
|
||||
HpcOpsMoeQuantInfo,
|
||||
fused_experts_none_to_hpc_ops,
|
||||
has_hpc_ops,
|
||||
pad_hpc_ops_block_scale,
|
||||
)
|
||||
from sglang.srt.layers.moe.token_dispatcher.standard import StandardDispatchOutput
|
||||
from sglang.srt.layers.moe.topk import StandardTopKOutput
|
||||
from sglang.srt.server_args import ServerArgs, set_global_server_args_for_scheduler
|
||||
from sglang.test.ci.ci_register import register_cuda_ci
|
||||
from sglang.test.test_utils import CustomTestCase
|
||||
|
||||
register_cuda_ci(est_time=60, stage="base-b", runner_config="1-gpu-large")
|
||||
|
||||
# Qwen3-30B-A3B-FP8 MoE shapes.
|
||||
E, TOPK, H, I = 128, 8, 2048, 768
|
||||
|
||||
|
||||
def _sm90_or_newer() -> bool:
|
||||
if not torch.cuda.is_available():
|
||||
return False
|
||||
major, _ = torch.cuda.get_device_capability()
|
||||
return major >= 9
|
||||
|
||||
|
||||
def _ensure_dist_initialized() -> None:
|
||||
"""Single-rank gloo distributed + model-parallel groups (TP=1, EP=1).
|
||||
|
||||
The triton fused_experts reference allocates its output under
|
||||
``use_symmetric_memory(get_tp_group(), ...)``, which requires the TP
|
||||
group even when symmetric allocation is disabled.
|
||||
"""
|
||||
os.environ.setdefault("MASTER_ADDR", "127.0.0.1")
|
||||
os.environ.setdefault("MASTER_PORT", "29633")
|
||||
os.environ.setdefault("RANK", "0")
|
||||
os.environ.setdefault("WORLD_SIZE", "1")
|
||||
os.environ.setdefault("LOCAL_RANK", "0")
|
||||
if not torch.distributed.is_initialized():
|
||||
init_distributed_environment(world_size=1, rank=0, local_rank=0, backend="gloo")
|
||||
if not model_parallel_is_initialized():
|
||||
initialize_model_parallel(
|
||||
tensor_model_parallel_size=1,
|
||||
expert_model_parallel_size=1,
|
||||
pipeline_model_parallel_size=1,
|
||||
backend="gloo",
|
||||
)
|
||||
|
||||
|
||||
def _quant_blockwise(w: torch.Tensor, block: int = 128):
|
||||
"""Proper 128x128 blockwise fp8 quantization of a fp32 weight [E, N, K]."""
|
||||
num_experts, n, k = w.shape
|
||||
wb = w.view(num_experts, n // block, block, k // block, block)
|
||||
amax = wb.abs().amax(dim=(2, 4), keepdim=True).clamp(min=1e-6)
|
||||
scale = amax / 448.0
|
||||
wq = (wb / scale).clamp(-448, 448).view(num_experts, n, k).to(torch.float8_e4m3fn)
|
||||
return wq, scale.squeeze(-1).squeeze(2)
|
||||
|
||||
|
||||
@unittest.skipUnless(
|
||||
has_hpc_ops() and _sm90_or_newer(),
|
||||
"requires HPC-Ops (install from source: https://github.com/Tencent/hpc-ops) and sm90+",
|
||||
)
|
||||
class TestHpcOpsMoeBlockwise(CustomTestCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
set_global_server_args_for_scheduler(ServerArgs(model_path="dummy"))
|
||||
_ensure_dist_initialized()
|
||||
torch.manual_seed(0)
|
||||
|
||||
def _make_case(self, num_tokens: int):
|
||||
device = "cuda"
|
||||
x = torch.randn(num_tokens, H, dtype=torch.bfloat16, device=device)
|
||||
w13_f = torch.randn(E, 2 * I, H, dtype=torch.float32, device=device) * 0.02
|
||||
w2_f = torch.randn(E, H, I, dtype=torch.float32, device=device) * 0.02
|
||||
w13, w13_scale = _quant_blockwise(w13_f)
|
||||
w2, w2_scale = _quant_blockwise(w2_f)
|
||||
logits = torch.randn(num_tokens, E, dtype=torch.float32, device=device)
|
||||
topk_weights, topk_ids = torch.topk(logits.softmax(dim=-1), TOPK, dim=-1)
|
||||
topk_weights = (topk_weights / topk_weights.sum(dim=-1, keepdim=True)).float()
|
||||
return x, w13, w2, w13_scale, w2_scale, topk_weights, topk_ids.to(torch.int32)
|
||||
|
||||
def _runner_config(self):
|
||||
return MoeRunnerConfig(
|
||||
num_experts=E,
|
||||
num_local_experts=E,
|
||||
hidden_size=H,
|
||||
intermediate_size_per_partition=I,
|
||||
layer_id=0,
|
||||
top_k=TOPK,
|
||||
num_fused_shared_experts=0,
|
||||
params_dtype=torch.bfloat16,
|
||||
activation="silu",
|
||||
is_gated=True,
|
||||
inplace=False,
|
||||
)
|
||||
|
||||
def _run_hpc_ops(self, x, w13, w2, w13_scale, w2_scale, topk_weights, topk_ids):
|
||||
dispatch_output = StandardDispatchOutput(
|
||||
hidden_states=x,
|
||||
hidden_states_scale=None,
|
||||
topk_output=StandardTopKOutput(topk_weights, topk_ids, None),
|
||||
)
|
||||
quant_info = HpcOpsMoeQuantInfo(
|
||||
w13_weight=w13,
|
||||
w2_weight=w2,
|
||||
block_quant=True,
|
||||
global_num_experts=E,
|
||||
moe_ep_rank=0,
|
||||
w13_weight_scale_inv=pad_hpc_ops_block_scale(w13_scale),
|
||||
w2_weight_scale_inv=pad_hpc_ops_block_scale(w2_scale),
|
||||
block_shape=[128, 128],
|
||||
)
|
||||
return fused_experts_none_to_hpc_ops(
|
||||
dispatch_output, quant_info, self._runner_config()
|
||||
).hidden_states
|
||||
|
||||
def _run_triton(self, x, w13, w2, w13_scale, w2_scale, topk_weights, topk_ids):
|
||||
from sglang.srt.layers.moe.moe_runner.triton_utils.fused_moe import (
|
||||
fused_experts,
|
||||
)
|
||||
|
||||
return fused_experts(
|
||||
hidden_states=x.clone(),
|
||||
w1=w13,
|
||||
w2=w2,
|
||||
topk_output=StandardTopKOutput(topk_weights, topk_ids, None),
|
||||
moe_runner_config=self._runner_config(),
|
||||
use_fp8_w8a8=True,
|
||||
w1_scale=w13_scale,
|
||||
w2_scale=w2_scale,
|
||||
block_shape=[128, 128],
|
||||
)
|
||||
|
||||
def test_blockwise_fp8_matches_triton(self):
|
||||
for num_tokens in (7, 64, 512):
|
||||
with self.subTest(num_tokens=num_tokens):
|
||||
case = self._make_case(num_tokens)
|
||||
out_hpc = self._run_hpc_ops(*case).float()
|
||||
out_triton = self._run_triton(*case).float()
|
||||
cos = torch.nn.functional.cosine_similarity(
|
||||
out_hpc.flatten(), out_triton.flatten(), dim=0
|
||||
)
|
||||
self.assertGreater(cos.item(), 0.999)
|
||||
torch.testing.assert_close(out_hpc, out_triton, rtol=0.05, atol=0.05)
|
||||
|
||||
def test_per_tensor_fp8_matches_triton(self):
|
||||
|
||||
device = "cuda"
|
||||
for num_tokens in (7, 64, 512):
|
||||
with self.subTest(num_tokens=num_tokens):
|
||||
x = torch.randn(num_tokens, H, dtype=torch.bfloat16, device=device)
|
||||
w13_f = torch.randn(E, 2 * I, H, device=device) * 0.02
|
||||
w2_f = torch.randn(E, H, I, device=device) * 0.02
|
||||
# Per-tensor per-expert weight quant.
|
||||
w13_scale = w13_f.abs().amax(dim=(1, 2)) / 448.0
|
||||
w2_scale = w2_f.abs().amax(dim=(1, 2)) / 448.0
|
||||
w13 = (w13_f / w13_scale[:, None, None]).to(torch.float8_e4m3fn)
|
||||
w2 = (w2_f / w2_scale[:, None, None]).to(torch.float8_e4m3fn)
|
||||
# Static activation scales.
|
||||
a1_scale = torch.tensor(x.float().abs().max() / 448.0, device=device)
|
||||
a2_scale = torch.tensor(0.005, device=device)
|
||||
logits = torch.randn(num_tokens, E, device=device)
|
||||
topk_weights, topk_ids = torch.topk(logits.softmax(dim=-1), TOPK, -1)
|
||||
topk_weights = (
|
||||
topk_weights / topk_weights.sum(dim=-1, keepdim=True)
|
||||
).float()
|
||||
topk_ids = topk_ids.to(torch.int32)
|
||||
|
||||
dispatch_output = StandardDispatchOutput(
|
||||
hidden_states=x,
|
||||
hidden_states_scale=None,
|
||||
topk_output=StandardTopKOutput(topk_weights, topk_ids, None),
|
||||
)
|
||||
quant_info = HpcOpsMoeQuantInfo(
|
||||
w13_weight=w13,
|
||||
w2_weight=w2,
|
||||
block_quant=False,
|
||||
global_num_experts=E,
|
||||
moe_ep_rank=0,
|
||||
gate_up_alphas=w13_scale * a1_scale,
|
||||
down_alphas=w2_scale * a2_scale,
|
||||
w13_input_scale=a1_scale,
|
||||
w2_input_scale=a2_scale,
|
||||
)
|
||||
out_hpc = fused_experts_none_to_hpc_ops(
|
||||
dispatch_output, quant_info, self._runner_config()
|
||||
).hidden_states.float()
|
||||
|
||||
from sglang.srt.layers.moe.moe_runner.triton_utils.fused_moe import (
|
||||
fused_experts,
|
||||
)
|
||||
|
||||
out_triton = fused_experts(
|
||||
hidden_states=x.clone(),
|
||||
w1=w13,
|
||||
w2=w2,
|
||||
topk_output=StandardTopKOutput(topk_weights, topk_ids, None),
|
||||
moe_runner_config=self._runner_config(),
|
||||
use_fp8_w8a8=True,
|
||||
w1_scale=w13_scale,
|
||||
w2_scale=w2_scale,
|
||||
a1_scale=a1_scale,
|
||||
a2_scale=a2_scale,
|
||||
).float()
|
||||
|
||||
cos = torch.nn.functional.cosine_similarity(
|
||||
out_hpc.flatten(), out_triton.flatten(), dim=0
|
||||
)
|
||||
self.assertGreater(cos.item(), 0.99)
|
||||
torch.testing.assert_close(out_hpc, out_triton, rtol=0.10, atol=0.10)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
@@ -0,0 +1,63 @@
|
||||
"""The hpc_ops MoE runner backend makes the standard dispatcher keep global
|
||||
expert ids, so a quant method that silently falls back to another runner
|
||||
(e.g. an unquantized MoE) would misroute tokens under EP>1. MoeRunner must
|
||||
reject that combination loudly at startup.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
||||
import pytest
|
||||
|
||||
from sglang.srt.layers.moe.moe_runner.base import MoeRunnerConfig
|
||||
from sglang.srt.layers.moe.moe_runner.runner import MoeRunner
|
||||
from sglang.srt.layers.moe.utils import MoeRunnerBackend
|
||||
from sglang.srt.runtime_context import get_flags
|
||||
from sglang.test.ci.ci_register import register_cpu_ci
|
||||
|
||||
register_cpu_ci(est_time=5, suite="base-c-test-cpu")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def _runner_backend_flag():
|
||||
moe = get_flags().moe
|
||||
saved = moe.runner_backend
|
||||
yield moe
|
||||
moe.runner_backend = saved
|
||||
|
||||
|
||||
def test_non_hpc_runner_rejected_when_hpc_ops_requested(_runner_backend_flag):
|
||||
_runner_backend_flag.runner_backend = MoeRunnerBackend.HPC_OPS
|
||||
with pytest.raises(ValueError, match="hpc_ops"):
|
||||
MoeRunner(MoeRunnerBackend.TRITON, MoeRunnerConfig())
|
||||
|
||||
|
||||
def test_triton_runner_allowed_without_hpc_ops(_runner_backend_flag):
|
||||
_runner_backend_flag.runner_backend = MoeRunnerBackend.TRITON
|
||||
runner = MoeRunner(MoeRunnerBackend.TRITON, MoeRunnerConfig())
|
||||
assert runner.runner_core is not None
|
||||
|
||||
|
||||
def test_direct_kernel_quant_method_rejected_when_hpc_ops_requested(
|
||||
_runner_backend_flag,
|
||||
):
|
||||
# W4AFp8MoEMethod never constructs a MoeRunner (apply() calls its kernel
|
||||
# directly), so it bypasses the MoeRunner-level guard; the layer-level
|
||||
# check must reject it.
|
||||
from sglang.srt.layers.moe.fused_moe_triton.layer import (
|
||||
_validate_hpc_ops_quant_method,
|
||||
)
|
||||
from sglang.srt.layers.quantization.fp8 import Fp8MoEMethod
|
||||
from sglang.srt.layers.quantization.w4afp8 import W4AFp8MoEMethod
|
||||
|
||||
_runner_backend_flag.runner_backend = MoeRunnerBackend.HPC_OPS
|
||||
with pytest.raises(ValueError, match="hpc_ops"):
|
||||
_validate_hpc_ops_quant_method(object.__new__(W4AFp8MoEMethod))
|
||||
# The FP8 method (the one the hpc_ops runner supports) passes.
|
||||
_validate_hpc_ops_quant_method(object.__new__(Fp8MoEMethod))
|
||||
# Without hpc_ops requested, any quant method passes.
|
||||
_runner_backend_flag.runner_backend = MoeRunnerBackend.TRITON
|
||||
_validate_hpc_ops_quant_method(object.__new__(W4AFp8MoEMethod))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(pytest.main([__file__, "-v"]))
|
||||
@@ -913,6 +913,7 @@ class TestModuleLevelHelpers(unittest.TestCase):
|
||||
backends.FLASHINFER_CUTLASS,
|
||||
backends.FLASHINFER_MXFP4,
|
||||
backends.FLASHINFER_CUTEDSL,
|
||||
backends.HPC_OPS,
|
||||
}
|
||||
config = types.SimpleNamespace(
|
||||
num_experts=8,
|
||||
|
||||
Reference in New Issue
Block a user