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
3465d7ae
Unverified
Commit
3465d7ae
authored
Jun 09, 2025
by
Sai Enduri
Committed by
GitHub
Jun 09, 2025
Browse files
Update amd nightly models CI. (#6992)
parent
e58423b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
test/srt/test_nightly_gsm8k_eval_amd.py
test/srt/test_nightly_gsm8k_eval_amd.py
+12
-2
No files found.
test/srt/test_nightly_gsm8k_eval_amd.py
View file @
3465d7ae
...
@@ -68,6 +68,8 @@ DISABLE_HF_XET_MODELS = {
...
@@ -68,6 +68,8 @@ DISABLE_HF_XET_MODELS = {
TRITON_MOE_MODELS
=
{
TRITON_MOE_MODELS
=
{
"neuralmagic/Mixtral-8x7B-Instruct-v0.1-FP8"
,
"neuralmagic/Mixtral-8x7B-Instruct-v0.1-FP8"
,
"neuralmagic/DeepSeek-Coder-V2-Lite-Instruct-FP8"
,
"neuralmagic/DeepSeek-Coder-V2-Lite-Instruct-FP8"
,
"mistralai/Mixtral-8x7B-Instruct-v0.1"
,
"mistralai/Mistral-7B-Instruct-v0.3"
,
}
}
...
@@ -184,8 +186,16 @@ class TestNightlyGsm8KEval(unittest.TestCase):
...
@@ -184,8 +186,16 @@ class TestNightlyGsm8KEval(unittest.TestCase):
num_examples
=
None
,
num_examples
=
None
,
num_threads
=
1024
,
num_threads
=
1024
,
)
)
# Allow retries, so flaky errors are avoided.
metrics
=
run_eval
(
args
)
threshold
=
MODEL_SCORE_THRESHOLDS
.
get
(
model
)
for
attempt
in
range
(
3
):
try
:
metrics
=
run_eval
(
args
)
score
=
metrics
[
"score"
]
if
score
>=
threshold
:
break
except
Exception
as
e
:
print
(
f
"Attempt
{
attempt
+
1
}
failed with error:
{
e
}
"
)
print
(
print
(
f
"
{
'='
*
42
}
\n
{
model
}
- metrics=
{
metrics
}
score=
{
metrics
[
'score'
]
}
\n
{
'='
*
42
}
\n
"
f
"
{
'='
*
42
}
\n
{
model
}
- metrics=
{
metrics
}
score=
{
metrics
[
'score'
]
}
\n
{
'='
*
42
}
\n
"
)
)
...
...
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