From c2ec64f243d400c8b4cc97f2f48061cb95b17270 Mon Sep 17 00:00:00 2001 From: zijiexia <37504505+zijiexia@users.noreply.github.com> Date: Mon, 27 Apr 2026 00:21:26 -0700 Subject: [PATCH] docs: verify GB300 Pro DeepSeek V4 recipes (#23817) --- .../src/snippets/autoregressive/deepseek-v4-deployment.jsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs_new/src/snippets/autoregressive/deepseek-v4-deployment.jsx b/docs_new/src/snippets/autoregressive/deepseek-v4-deployment.jsx index 4a55d1762..02a617088 100644 --- a/docs_new/src/snippets/autoregressive/deepseek-v4-deployment.jsx +++ b/docs_new/src/snippets/autoregressive/deepseek-v4-deployment.jsx @@ -182,7 +182,9 @@ export const DeepSeekV4Deployment = () => { "gb300|small|low-latency", "gb300|big|low-latency", "gb300|small|balanced", + "gb300|big|balanced", "gb300|small|max-throughput", + "gb300|big|max-throughput", "h200|small|cp", "h200|small|pd-disagg", "h200|big|low-latency", @@ -365,6 +367,8 @@ export const DeepSeekV4Deployment = () => { flags.push(" --speculative-num-draft-tokens 2"); if (hardware === "h200" && isBig) { flags.push(" --mem-fraction-static 0.88"); + } else if (isBig && hardware === "gb300") { + flags.push(" --mem-fraction-static 0.9"); } else if (isBig && hardware === "gb200") { flags.push(" --mem-fraction-static 0.78"); } else if (isBig) { @@ -401,6 +405,8 @@ export const DeepSeekV4Deployment = () => { flags.push(" --moe-a2a-backend deepep"); if (hardware === "h200" && isBig) { flags.push(" --mem-fraction-static 0.88"); + } else if (isBig && hardware === "gb300") { + flags.push(" --mem-fraction-static 0.9"); } else if (isBig && hardware === "gb200") { flags.push(" --mem-fraction-static 0.78"); } else if (isBig) {