Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
da1766e4
Unverified
Commit
da1766e4
authored
Oct 26, 2025
by
Kangyan-Zhou
Committed by
GitHub
Oct 26, 2025
Browse files
Remove deprecated --enable-beta-spec argument and fix b200 test (#12167)
Co-authored-by:
Claude
<
noreply@anthropic.com
>
parent
a124b517
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
test/srt/test_deepseek_v3_fp4_4gpu.py
test/srt/test_deepseek_v3_fp4_4gpu.py
+4
-1
No files found.
test/srt/test_deepseek_v3_fp4_4gpu.py
View file @
da1766e4
import
os
import
unittest
from
types
import
SimpleNamespace
...
...
@@ -83,6 +84,7 @@ class TestDeepseekV3FP4(CustomTestCase):
class
TestDeepseekV3FP4MTP
(
CustomTestCase
):
@
classmethod
def
setUpClass
(
cls
):
os
.
environ
[
"SGLANG_ENABLE_SPEC_V2"
]
=
"1"
cls
.
model
=
FULL_DEEPSEEK_V3_FP4_MODEL_PATH
cls
.
base_url
=
DEFAULT_URL_FOR_TEST
other_args
=
[
...
...
@@ -104,7 +106,6 @@ class TestDeepseekV3FP4MTP(CustomTestCase):
"4"
,
"--kv-cache-dtype"
,
"fp8_e4m3"
,
"--enable-beta-spec"
,
]
cls
.
process
=
popen_launch_server
(
cls
.
model
,
...
...
@@ -116,6 +117,8 @@ class TestDeepseekV3FP4MTP(CustomTestCase):
@
classmethod
def
tearDownClass
(
cls
):
kill_process_tree
(
cls
.
process
.
pid
)
if
"SGLANG_ENABLE_SPEC_V2"
in
os
.
environ
:
del
os
.
environ
[
"SGLANG_ENABLE_SPEC_V2"
]
def
test_a_gsm8k
(
self
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment