-
Notifications
You must be signed in to change notification settings - Fork 764
feat: support MoE model in SLA Planner Sglang #3185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 19 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
68714fd
rename
tedzhouhk 1c41d56
stage
tedzhouhk 4a73121
Merge branch 'main' of https://github.com/ai-dynamo/dynamo into hzhou…
tedzhouhk db737f6
stage
tedzhouhk 2a42aea
add test
tedzhouhk 5b88f60
add test
tedzhouhk 330a611
delete
tedzhouhk 684f7c9
bug fixes
tedzhouhk a895bc2
enable grove
tedzhouhk a6f70a5
bug
tedzhouhk 0b64cda
remove isl/osl in planner arg
tedzhouhk 4fb5294
update doc and plot script
tedzhouhk 18c0fae
pc
tedzhouhk bad3f5c
Merge branch 'main' of https://github.com/ai-dynamo/dynamo into hzhou…
tedzhouhk 76e77aa
pc
tedzhouhk 88105cb
doclink
tedzhouhk 44bc765
Merge branch 'main' of https://github.com/ai-dynamo/dynamo into hzhou…
tedzhouhk 23dd336
fix test
tedzhouhk 96d2978
fix conc bug
tedzhouhk b016918
fix doc, add todo
tedzhouhk 5440e91
Update benchmarks/profiler/profile_sla.py
tedzhouhk 77d2d66
Update benchmarks/profiler/profile_sla.py
tedzhouhk fe05ce5
Update benchmarks/profiler/profile_sla.py
tedzhouhk e9c9c71
Update benchmarks/profiler/profile_sla.py
tedzhouhk 2f61d82
Update benchmarks/profiler/profile_sla.py
tedzhouhk 95c718b
Update benchmarks/profiler/profile_sla.py
tedzhouhk a1ec4dc
Update benchmarks/profiler/utils/plot.py
tedzhouhk da99c64
doc
tedzhouhk 56241ae
Merge branch 'hzhou/sglang-dsr1-sweep' of https://github.com/ai-dynam…
tedzhouhk 06d9bd6
Update docs/benchmarks/pre_deployment_profiling.md
tedzhouhk b562984
pc
tedzhouhk 4f2f905
Update benchmarks/profiler/profile_sla.py
tedzhouhk fb897c1
Update benchmarks/profiler/utils/plot.py
tedzhouhk ff72609
better code
tedzhouhk 5f428dd
Merge branch 'hzhou/sglang-dsr1-sweep' of https://github.com/ai-dynam…
tedzhouhk 3acb775
pc
tedzhouhk fbac34f
add todo
tedzhouhk aead4d3
mypy
tedzhouhk 82595a9
update test
tedzhouhk 17d3349
pc
tedzhouhk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| apiVersion: batch/v1 | ||
| kind: Job | ||
| metadata: | ||
| name: profile-sla | ||
| namespace: ${NAMESPACE} | ||
| spec: | ||
| template: | ||
| spec: | ||
| serviceAccountName: dynamo-sa | ||
| containers: | ||
| - name: profile-sla | ||
| image: ${DOCKER_IMAGE} | ||
| resources: | ||
| requests: | ||
| cpu: "32" | ||
| memory: "50Gi" | ||
| env: | ||
| - name: HUGGING_FACE_HUB_TOKEN | ||
| valueFrom: | ||
| secretKeyRef: | ||
| name: hf-token-secret | ||
| key: HF_TOKEN | ||
| - name: NATS_SERVER | ||
| value: nats://${NAMESPACE}-nats:4222 | ||
| - name: ETCD_ENDPOINTS | ||
| value: ${NAMESPACE}-etcd:2379 | ||
| workingDir: /sgl-workspace/dynamo | ||
| command: ["python", "-m", "benchmarks.profiler.profile_sla"] | ||
| args: | ||
| - --config | ||
| - /sgl-workspace/dynamo/recipes/deepseek-r1/sglang-wideep/tep16p-dep16d-disagg.yaml | ||
| - --output-dir | ||
| - /data/profiling_results | ||
| - --namespace | ||
| - ${NAMESPACE} | ||
| - --backend | ||
| - sglang | ||
| - --is-moe-model | ||
| - --min-num-gpus-per-engine | ||
| - "8" | ||
| - --max-num-gpus-per-engine | ||
| - "16" | ||
| - --isl | ||
| - "3000" | ||
| - --osl | ||
| - "150" | ||
| - --ttft | ||
| - "200" | ||
| - --itl | ||
| - "20" | ||
| volumeMounts: | ||
| - name: output-volume | ||
| mountPath: /data | ||
| restartPolicy: Never | ||
| volumes: | ||
| - name: output-volume | ||
| persistentVolumeClaim: | ||
| claimName: dynamo-pvc | ||
| backoffLimit: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.