Skip to content

Commit 2bc7c5e

Browse files
authored
Fix 8-gpu B200 nightly tests (#13457)
1 parent a63f433 commit 2bc7c5e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

test/srt/nightly/test_deepseek_v31_perf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def setUpClass(cls):
2525
"--trust-remote-code",
2626
"--tp",
2727
"8",
28-
"--dp",
29-
"8",
28+
"--model-loader-extra-config",
29+
'{"enable_multithread_load": true}',
3030
],
3131
},
3232
{
@@ -35,8 +35,6 @@ def setUpClass(cls):
3535
"--trust-remote-code",
3636
"--tp",
3737
"8",
38-
"--dp",
39-
"8",
4038
"--speculative-algorithm",
4139
"EAGLE",
4240
"--speculative-num-steps",
@@ -47,6 +45,8 @@ def setUpClass(cls):
4745
"4",
4846
"--mem-frac",
4947
"0.7",
48+
"--model-loader-extra-config",
49+
'{"enable_multithread_load": true}',
5050
],
5151
},
5252
]

test/srt/nightly/test_deepseek_v32_perf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def setUpClass(cls):
2525
"--trust-remote-code",
2626
"--tp",
2727
"8",
28-
"--dp",
29-
"8",
28+
"--model-loader-extra-config",
29+
'{"enable_multithread_load": true}',
3030
],
3131
},
3232
{
@@ -35,8 +35,6 @@ def setUpClass(cls):
3535
"--trust-remote-code",
3636
"--tp",
3737
"8",
38-
"--dp",
39-
"8",
4038
"--speculative-algorithm",
4139
"EAGLE",
4240
"--speculative-num-steps",
@@ -47,6 +45,8 @@ def setUpClass(cls):
4745
"4",
4846
"--mem-frac",
4947
"0.7",
48+
"--model-loader-extra-config",
49+
'{"enable_multithread_load": true}',
5050
],
5151
},
5252
{
@@ -55,14 +55,14 @@ def setUpClass(cls):
5555
"--trust-remote-code",
5656
"--tp",
5757
"8",
58-
"--dp",
59-
"8",
6058
"--attention-backend",
6159
"nsa",
6260
"--nsa-prefill-backend",
6361
"flashmla_sparse",
6462
"--nsa-decode-backend",
6563
"flashmla_kv",
64+
"--model-loader-extra-config",
65+
'{"enable_multithread_load": true}',
6666
],
6767
},
6868
]

0 commit comments

Comments
 (0)