docs: prepend SGLANG_JIT_DEEPGEMM_PRECOMPILE=0 for H200 FP8 Flash max-throughput (#25152)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
zijiexia
2026-05-13 00:50:15 -07:00
committed by GitHub
co-authored by Claude Opus 4.7
parent c32f2dc1ac
commit 7d515c6d1f
@@ -391,6 +391,9 @@ export const DeepSeekV4Deployment = () => {
} }
} else if (recipe === "max-throughput") { } else if (recipe === "max-throughput") {
if (hardware === "h200") { if (hardware === "h200") {
if (!isBig) {
recipeEnv.push("SGLANG_JIT_DEEPGEMM_PRECOMPILE=0");
}
recipeEnv.push(isBig recipeEnv.push(isBig
? "SGLANG_DEEPEP_NUM_MAX_DISPATCH_TOKENS_PER_RANK=128" ? "SGLANG_DEEPEP_NUM_MAX_DISPATCH_TOKENS_PER_RANK=128"
: "SGLANG_DEEPEP_NUM_MAX_DISPATCH_TOKENS_PER_RANK=256"); : "SGLANG_DEEPEP_NUM_MAX_DISPATCH_TOKENS_PER_RANK=256");