-
Notifications
You must be signed in to change notification settings - Fork 293
Update glm-5 b200 sglang image to nightly-dev-cu13-20260523-c112f762 #1567
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
Changes from all commits
d06b958
12cae11
d2263d5
e80ab6e
c23bea7
bf52ead
1469214
bd62328
b14879a
49cfc1f
5b06baf
07220de
7f01c81
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,9 +19,7 @@ nvidia-smi | |
|
|
||
| if [[ "$MODEL" != /* ]]; then hf download "$MODEL"; fi | ||
|
|
||
| pip install --no-deps "transformers==5.2.0" "huggingface-hub==1.4.1" | ||
|
|
||
| export SGL_ENABLE_JIT_DEEPGEMM=1 | ||
| export SGLANG_ENABLE_JIT_DEEPGEMM=1 | ||
|
|
||
| SERVER_LOG=/workspace/server.log | ||
|
|
||
|
|
@@ -44,7 +42,6 @@ PYTHONNOUSERSITE=1 python3 -m sglang.launch_server --model-path=$MODEL --host=0. | |
| --tool-call-parser glm47 \ | ||
| --reasoning-parser glm45 \ | ||
| --kv-cache-dtype fp8_e4m3 --quantization fp8 \ | ||
| --fp8-gemm-backend cutlass \ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. B200 DeepGemm workaround removedMedium Severity This change drops Additional Locations (1)Reviewed by Cursor Bugbot for commit c23bea7. Configure here. |
||
| --attention-backend nsa \ | ||
| --nsa-decode-backend trtllm --nsa-prefill-backend trtllm \ | ||
| --moe-runner-backend flashinfer_trtllm \ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,14 +33,7 @@ fi | |
|
|
||
| nvidia-smi | ||
|
|
||
|
|
||
| pip install --no-deps "transformers==5.2.0" "huggingface-hub==1.4.1" | ||
|
|
||
| # Workaround for sgl-project/sglang#25551: v0.5.12 DeepGemm TMA-descriptor | ||
| # regression on B300 (sm_120) crashes CUDA graph capture with | ||
| # CUDA_ERROR_ILLEGAL_ADDRESS. Disabling JIT DeepGemm bypasses the affected | ||
| # kernel path. Restore to =1 once the upstream regression is fixed. | ||
| export SGL_ENABLE_JIT_DEEPGEMM=0 | ||
| export SGLANG_ENABLE_JIT_DEEPGEMM=1 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. B300 script drops DeepGemm workaroundHigh Severity The B300 FP8 launch scripts now set Additional Locations (1)Reviewed by Cursor Bugbot for commit bd62328. Configure here. |
||
|
|
||
| SERVER_LOG=/workspace/server.log | ||
|
|
||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mem fraction ignores ISL OSL
Medium Severity
glm5_fp4_b200_mtp.shlowers--mem-fraction-staticto0.8wheneverCONCis above 128, but the perf changelog states that override applies only forISL=8192,OSL=1024, andCONC>128. High-concurrency 1k/1k points still get0.8instead of the documented default0.85.Reviewed by Cursor Bugbot for commit 5b06baf. Configure here.