chore: upgrade sgl-kernel 0.1.1 (#5933)

This commit is contained in:
Yineng Zhang
2025-04-30 16:13:30 -07:00
committed by GitHub
parent d353d08b4e
commit 9a6ad8916d
7 changed files with 20 additions and 14 deletions
@@ -109,7 +109,7 @@ def get_quantization_config(quantization: str) -> Type[QuantizationConfig]:
if quantization in VLLM_QUANTIZATION_METHODS and not VLLM_AVAILABLE:
raise ValueError(
f"{quantization} quantization requires some operators from vllm. "
"Pleaes install vllm by `pip install vllm==0.7.2`"
"Pleaes install vllm by `pip install vllm==0.8.4`"
)
return QUANTIZATION_METHODS[quantization]
@@ -310,7 +310,7 @@ def monkey_patch_moe_apply(class_obj: "FusedMoEMethodBase"):
if correction_bias is not None:
if not has_correction_bias:
raise ValueError(
"Please increase the version of your vllm. Try `pip install vllm==0.7.2`"
"Please increase the version of your vllm. Try `pip install vllm==0.8.4`"
)
kwargs["e_score_correction_bias"] = correction_bias
return original_apply(**kwargs)