Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark-multinode-tmpl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
${{ inputs.spec-decoding != 'none' && inputs.spec-decoding || '' }}
${{ inputs.kv-offloading != '' && inputs.kv-offloading != 'none' && format('{0} KV offload', inputs.kv-offloading) || '' }}
${{ inputs.kv-offload-backend != '' && inputs.kv-offload-backend != 'none' && inputs.kv-offload-backend != 'default' && inputs.kv-offload-backend || '' }}
c${{ inputs.conc != '' && inputs.conc || join(fromJson(inputs.conc-list), 'x') }}${{ inputs.eval-only && ' | eval-only' || (inputs.run-eval && ' | eval' || '') }}
c${{ join(fromJson(inputs.conc-list), 'x') }}${{ inputs.eval-only && ' | eval-only' || (inputs.run-eval && ' | eval' || '') }}
steps:
- name: Slurm cleanup (pre-run)
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/run-sweep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ jobs:
model-prefix: ${{ matrix.config.model-prefix }}
framework: ${{ matrix.config.framework }}
precision: ${{ matrix.config.precision }}
conc-list: '[${{ matrix.config.conc }}]'
conc-list: ${{ toJson(matrix.config.conc) }}
spec-decoding: ${{ matrix.config.spec-decoding }}
disagg: ${{ matrix.config.disagg }}
prefill-hardware: ${{ matrix.config.prefill.hardware }}
Expand All @@ -551,7 +551,7 @@ jobs:
decode-ep: ${{ matrix.config.decode.ep }}
decode-dp-attn: ${{ matrix.config.decode.dp-attn }}
decode-additional-settings: ${{ toJson(matrix.config.decode.additional-settings) }}
conc: ${{ matrix.config.conc }}
conc: ${{ matrix.config.conc[0] }}
kv-offloading: ${{ matrix.config.kv-offloading }}
kv-offload-backend: ${{ matrix.config.kv-offload-backend }}
duration: ${{ matrix.config.duration }}
Expand Down Expand Up @@ -667,7 +667,9 @@ jobs:
needs.sweep-single-node-1k1k.result != 'skipped' ||
needs.sweep-single-node-8k1k.result != 'skipped' ||
needs.sweep-multi-node-1k1k.result != 'skipped' ||
needs.sweep-multi-node-8k1k.result != 'skipped'
needs.sweep-multi-node-8k1k.result != 'skipped' ||
needs.sweep-agentic.result != 'skipped' ||
needs.sweep-multi-node-agentic.result != 'skipped'
)
}}
uses: ./.github/workflows/collect-results.yml
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
name: "agg-gb300-tp4-c1-mtp-hicache-jid2191933"

# Agentic-coding SGLang aggregated recipe for Qwen3.5-397B-A17B-NVFP4 on GB300
# (single aggregated worker, TP4, NEXTN MTP + hierarchical cache).
#
# Ported from the manually-run srtctl base:/zip_override_conc: starter to the
# flat single-variant agentic schema. Pure sglang (no dynamo): frontend.type
# sglang serves directly. Concurrency comes from the GHA matrix (exported as
# CONC into agentic_srt.sh), not the recipe. Serving tuning preserved verbatim
# from the source run; only CI scaffolding is added.

model:
path: "qwen3.5-fp4"
container: "dynamo-sglang"
precision: "fp4"

slurm:
time_limit: "8:00:00"

health_check:
max_attempts: 1440
interval_seconds: 10

resources:
gpu_type: "gb300"
gpus_per_node: 4
agg_nodes: 1
agg_workers: 1
gpus_per_agg: 4

infra:
nats_max_payload_mb: 8

frontend:
type: sglang

backend:
type: sglang
aggregated_environment:
SGLANG_SIMULATE_ACC_LEN: '3.39'
SGLANG_SIMULATE_ACC_METHOD: match-expected
SGLANG_SIMULATE_ACC_TOKEN_MODE: "real-draft-token"
TORCH_CUDA_ARCH_LIST: '10.0'
PYTHONNOUSERSITE: '1'
NCCL_NVLS_ENABLE: '1'
SGL_ENABLE_JIT_DEEPGEMM: 'false'
SGLANG_ENABLE_FLASHINFER_GEMM: 'true'
sglang_config:
aggregated:
served-model-name: nvidia/Qwen3.5-397B-A17B-NVFP4
model-path: /model/
trust-remote-code: true
tensor-parallel-size: 4
data-parallel-size: 1
expert-parallel-size: 1
enable-symm-mem: true
quantization: modelopt_fp4
kv-cache-dtype: fp8_e4m3
mamba-ssm-dtype: bfloat16
mamba-scheduler-strategy: extra_buffer
mamba-track-interval: 8192
attention-backend: trtllm_mha
moe-runner-backend: flashinfer_trtllm
speculative-algorithm: NEXTN
speculative-num-steps: 3
speculative-eagle-topk: 1
speculative-num-draft-tokens: 4

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

started about discussion about AgentX MTP +viz @kedarpotdar-nv

cuda-graph-max-bs: 256
max-running-requests: 1024
max-prefill-tokens: 16384
chunked-prefill-size: 16384
mem-fraction-static: 0.8
max-mamba-cache-size: 1024
allow-auto-truncate: true
stream-interval: 50
scheduler-recv-interval: 10
tokenizer-worker-num: 6
page-size: 64
enable-hierarchical-cache: true
hicache-ratio: 1.01
hicache-io-backend: kernel
hicache-mem-layout: page_first_direct
hicache-write-policy: write_through

sbatch_directives:
mem: "0"
cpus-per-task: "144"

srun_options:
mem: "0"
# gb300-nv: pyxis maps the calling user into the container as a non-root uid;
# agentic_srt.sh's apt-get install git step needs EUID 0. Remap to uid 0 inside
# the container. srt-slurm renders empty-string values as flag-only srun args.
container-remap-root: ""

benchmark:
type: custom
command: bash /infmax-workspace/benchmarks/multi_node/agentic_srt.sh
env:
INFMAX_CONTAINER_WORKSPACE: /infmax-workspace
RESULT_DIR: /logs/agentic
PORT: "8000"
# Aggregated: one worker serves both prefill and decode, so GPU accounting is
# the single-worker form num_gpus = TP (not the disagg prefill+decode sum).
# Force the single-node post-proc path; TP must match sglang_config tp-size.
IS_MULTINODE: "false"
TP: "4"
# Match the source run's dataset (256k cc-traces-with-subagents variant).
WEKA_LOADER_OVERRIDE: semianalysis_cc_traces_weka_062126_256k
# Container-side path of the aiperf mmap dataset cache; host-side mount wired
# via launch_gb300-nv.sh srtslurm.yaml default_mounts.
AIPERF_DATASET_MMAP_CACHE_DIR: "/aiperf_mmap_cache"
# Persistent HF hub cache (also via default_mounts).
HF_HUB_CACHE: "/hf_hub_cache"
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
name: "agg-gb300-tp4-c96-mtp-hicache-jid2195211"

# Agentic-coding SGLang aggregated recipe for Qwen3.5-397B-A17B-NVFP4 on GB300
# (single aggregated worker, TP4, NEXTN MTP + hierarchical cache).
#
# Ported from the manually-run srtctl base:/zip_override_conc: starter to the
# flat single-variant agentic schema. Pure sglang (no dynamo): frontend.type
# sglang serves directly. Concurrency comes from the GHA matrix (exported as
# CONC into agentic_srt.sh), not the recipe. Serving tuning preserved verbatim
# from the source run; only CI scaffolding is added.

model:
path: "qwen3.5-fp4"
container: "dynamo-sglang"
precision: "fp4"

slurm:
time_limit: "8:00:00"

health_check:
max_attempts: 1440
interval_seconds: 10

resources:
gpu_type: "gb300"
gpus_per_node: 4
agg_nodes: 1
agg_workers: 1
gpus_per_agg: 4

infra:
nats_max_payload_mb: 8

frontend:
type: sglang

backend:
type: sglang
aggregated_environment:
SGLANG_SIMULATE_ACC_LEN: '3.39'
SGLANG_SIMULATE_ACC_METHOD: match-expected
SGLANG_SIMULATE_ACC_TOKEN_MODE: "real-draft-token"
TORCH_CUDA_ARCH_LIST: '10.0'
PYTHONNOUSERSITE: '1'
NCCL_NVLS_ENABLE: '1'
SGL_ENABLE_JIT_DEEPGEMM: 'false'
SGLANG_ENABLE_FLASHINFER_GEMM: 'true'
sglang_config:
aggregated:
served-model-name: nvidia/Qwen3.5-397B-A17B-NVFP4
model-path: /model/
trust-remote-code: true
tensor-parallel-size: 4
data-parallel-size: 1
expert-parallel-size: 1
enable-symm-mem: true
quantization: modelopt_fp4
kv-cache-dtype: fp8_e4m3
mamba-ssm-dtype: bfloat16
mamba-scheduler-strategy: extra_buffer
mamba-track-interval: 8192
attention-backend: trtllm_mha
moe-runner-backend: flashinfer_trtllm
speculative-algorithm: NEXTN
speculative-num-steps: 3
speculative-eagle-topk: 1
speculative-num-draft-tokens: 4
cuda-graph-max-bs: 256
max-running-requests: 1024
max-prefill-tokens: 16384
chunked-prefill-size: 16384
mem-fraction-static: 0.8
max-mamba-cache-size: 1024
allow-auto-truncate: true
stream-interval: 50
scheduler-recv-interval: 10
tokenizer-worker-num: 6
page-size: 64
enable-hierarchical-cache: true
hicache-ratio: 1.05
hicache-io-backend: kernel
hicache-mem-layout: page_first_direct
hicache-write-policy: write_through

sbatch_directives:
mem: "0"
cpus-per-task: "144"

srun_options:
mem: "0"
# gb300-nv: pyxis maps the calling user into the container as a non-root uid;
# agentic_srt.sh's apt-get install git step needs EUID 0. Remap to uid 0 inside
# the container. srt-slurm renders empty-string values as flag-only srun args.
container-remap-root: ""

benchmark:
type: custom
command: bash /infmax-workspace/benchmarks/multi_node/agentic_srt.sh
env:
INFMAX_CONTAINER_WORKSPACE: /infmax-workspace
RESULT_DIR: /logs/agentic
PORT: "8000"
# Aggregated: one worker serves both prefill and decode, so GPU accounting is
# the single-worker form num_gpus = TP (not the disagg prefill+decode sum).
# Force the single-node post-proc path; TP must match sglang_config tp-size.
IS_MULTINODE: "false"
TP: "4"
# Match the source run's dataset (256k cc-traces-with-subagents variant).
WEKA_LOADER_OVERRIDE: semianalysis_cc_traces_weka_062126_256k
# Container-side path of the aiperf mmap dataset cache; host-side mount wired
# via launch_gb300-nv.sh srtslurm.yaml default_mounts.
AIPERF_DATASET_MMAP_CACHE_DIR: "/aiperf_mmap_cache"
# Persistent HF hub cache (also via default_mounts).
HF_HUB_CACHE: "/hf_hub_cache"
Loading